diff --git a/INSTALL.md b/INSTALL.md index 0da9a1b..b197bc7 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -1,9 +1,9 @@ % The Synthesis ToolKit in C++ (STK) % Perry R. Cook and Gary P. Scavone -% 1995--2016 +% 1995--2017 # The Synthesis ToolKit in C++ (STK) -By Perry R. Cook and Gary P. Scavone, 1995--2016. +By Perry R. Cook and Gary P. Scavone, 1995--2017. The Synthesis ToolKit in C++ can be used in a variety of ways, depending on your particular needs. Some people simply choose the classes they need for a particular project and copy those to their project directory. Others like to compile and link to a library of object files. STK was not designed with one particular style of use in mind. @@ -30,7 +30,7 @@ Several options can be passed to configure, including: --disable-realtime = only compile generic non-realtime classes --enable-debug = enable various debug output --with-alsa = choose native ALSA API support (default, linux only) - --with-oss = choose native OSS API support (linux only) + --with-oss = choose native OSS API support (unixes only) --with-jack = choose native JACK server API support (linux and macintosh OS-X) --with-core = choose OS-X Core Audio API (macintosh OS-X only) --with-asio = choose ASIO API support (windows only) diff --git a/LICENSE b/LICENSE index f3160e9..2c6db7b 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The Synthesis ToolKit in C++ (STK) -Copyright (c) 1995--2016 Perry R. Cook and Gary P. Scavone +Copyright (c) 1995--2017 Perry R. Cook and Gary P. Scavone Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/README.md b/README.md index 616ef6c..d99cc7e 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # The Synthesis ToolKit in C++ (STK) -By Perry R. Cook and Gary P. Scavone, 1995--2016. +By Perry R. Cook and Gary P. Scavone, 1995--2017. This distribution of the Synthesis ToolKit in C++ (STK) contains the following: diff --git a/configure.ac b/configure.ac index 4e0de16..80a8a0f 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ # Process this file with autoconf to produce a configure script. -AC_INIT(STK, 4.5.1, gary@music.mcgill.ca, stk) +AC_INIT(STK, 4.6.0, gary@music.mcgill.ca, stk) AC_CONFIG_AUX_DIR(config) AC_CONFIG_SRCDIR(src/Stk.cpp) AC_CONFIG_FILES(Makefile src/Makefile projects/demo/Makefile projects/effects/Makefile projects/ragamatic/Makefile projects/examples/Makefile projects/examples/libMakefile projects/eguitar/Makefile) @@ -143,7 +143,7 @@ api="$api -D__UNIX_JACK__" AC_CHECK_LIB(asound, snd_pcm_open, , AC_MSG_ERROR(ALSA support requires the asound library!))]) # Look for OSS flag - AC_ARG_WITH(oss, [ --with-oss = choose OSS API support (linux only)]) + AC_ARG_WITH(oss, [ --with-oss = choose OSS API support (unixes only)]) AS_IF([test "x$with_oss" == "xyes"], [ api="$api -D__LINUX_OSS__ -D__LINUX_ALSA__" AC_MSG_RESULT(using OSS) diff --git a/doc/README-Linux.txt b/doc/README-Linux.txt index c00dde8..9a060b8 100644 --- a/doc/README-Linux.txt +++ b/doc/README-Linux.txt @@ -1,6 +1,6 @@ The Synthesis ToolKit in C++ (STK) -By Perry R. Cook and Gary P. Scavone, 1995--2016. +By Perry R. Cook and Gary P. Scavone, 1995--2017. Please read the file README and INSTALL for more general STK information. diff --git a/doc/README-MacOSX.txt b/doc/README-MacOSX.txt index 6e2bb68..28588f0 100644 --- a/doc/README-MacOSX.txt +++ b/doc/README-MacOSX.txt @@ -1,6 +1,6 @@ The Synthesis ToolKit in C++ (STK) -By Perry R. Cook and Gary P. Scavone, 1995--2016. +By Perry R. Cook and Gary P. Scavone, 1995--2017. Please read the file README and INSTALL for more general STK information. diff --git a/doc/README-SGI.txt b/doc/README-SGI.txt index 679deda..b53da6e 100644 --- a/doc/README-SGI.txt +++ b/doc/README-SGI.txt @@ -1,6 +1,6 @@ The Synthesis ToolKit in C++ (STK) -By Perry R. Cook and Gary P. Scavone, 1995--2016. +By Perry R. Cook and Gary P. Scavone, 1995--2017. Please read the file README and INSTALL for more general STK information. diff --git a/doc/README-Win.txt b/doc/README-Win.txt index 174e18b..f0782b0 100644 --- a/doc/README-Win.txt +++ b/doc/README-Win.txt @@ -1,6 +1,6 @@ The Synthesis ToolKit in C++ (STK) -By Perry R. Cook and Gary P. Scavone, 1995--2016. +By Perry R. Cook and Gary P. Scavone, 1995--2017. Please read the file README for more general STK information. diff --git a/doc/ReleaseNotes.txt b/doc/ReleaseNotes.txt index d97913c..b9c0eeb 100644 --- a/doc/ReleaseNotes.txt +++ b/doc/ReleaseNotes.txt @@ -1,8 +1,16 @@ The Synthesis ToolKit in C++ (STK) -By Perry R. Cook and Gary P. Scavone, 1995--2016. +By Perry R. Cook and Gary P. Scavone, 1995--2017. -v4.5.1 (22 February 2016) +v.4.6.0 (31 August 2017) +- see github site for complete details +- various build system updates +- fixes in FileWvIn / FileLoop for normalisation and scaling, as well as file opening +- bug fix for MAT-files in FileWrite +- bug fix in MidiFileIn.cpp for timing and time-code formats +- updated versions of RtAudio and RtMidi + +v4.5.1 (22 February 2017) - fix for FileWvIn / FileLoop classes to avoid keeping files open if not necessary - miscellaneous bug fixes, documented on GitHub site (github.com/thestk/stk) - update to play.cpp example to play mono files as stereo diff --git a/doc/doxygen/Doxyfile b/doc/doxygen/Doxyfile index 6d93573..8d814be 100644 --- a/doc/doxygen/Doxyfile +++ b/doc/doxygen/Doxyfile @@ -31,7 +31,7 @@ PROJECT_NAME = STK # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 4.5.1 +PROJECT_NUMBER = 4.6.0 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. diff --git a/doc/doxygen/download.txt b/doc/doxygen/download.txt index 55cb61b..0585216 100644 --- a/doc/doxygen/download.txt +++ b/doc/doxygen/download.txt @@ -1,10 +1,18 @@ /*! \page download Download, Release Notes, and Bug Fixes -\section down Download Version 4.5.1 (22 February 2016): +\section down Download Version 4.6.0 (31 August 2017): -- Source distribution +- Source distribution \section notes Release Notes: +\subsection v4dot6dot0 Version 4.6.0 +- see github site for complete details (github.com/thestk/stk) +- various build system updates +- fixes in FileWvIn / FileLoop for normalisation and scaling, as well as file opening +- bug fix for MAT-files in FileWrite +- bug fix in MidiFileIn.cpp for timing and time-code formats +- updated versions of RtAudio and RtMidi + \subsection v4dot5dot1 Version 4.5.1 - fix for FileWvIn / FileLoop classes to avoid keeping files open if not necessary - miscellaneous bug fixes, documented on GitHub site (github.com/thestk/stk) diff --git a/doc/doxygen/faq.txt b/doc/doxygen/faq.txt index 1173126..8df784c 100644 --- a/doc/doxygen/faq.txt +++ b/doc/doxygen/faq.txt @@ -24,7 +24,7 @@ work with any standard C++ compiler. STK WWW site: http://ccrma.stanford.edu/software/stk/ The Synthesis ToolKit in C++ (STK) -Copyright (c) 1995--2016 Perry R. Cook and Gary P. Scavone +Copyright (c) 1995--2017 Perry R. Cook and Gary P. Scavone Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/doc/doxygen/footer.html b/doc/doxygen/footer.html index b95efca..0da99d3 100644 --- a/doc/doxygen/footer.html +++ b/doc/doxygen/footer.html @@ -2,7 +2,7 @@
| The Synthesis ToolKit in C++ (STK) |
| ©1995--2016 Perry R. Cook and Gary P. Scavone. All Rights Reserved. |
| ©1995--2017 Perry R. Cook and Gary P. Scavone. All Rights Reserved. |