Documentation updates in preparation for 5.0.0 release.

This commit is contained in:
garyscavone
2023-08-04 11:21:16 -04:00
parent fd5e37863d
commit 3675846c66
195 changed files with 2190 additions and 1320 deletions

View File

@@ -1,6 +1,6 @@
The Synthesis ToolKit in C++ (STK)
By Perry R. Cook and Gary P. Scavone, 1995--2021.
By Perry R. Cook and Gary P. Scavone, 1995--2023.
Please read the file README and INSTALL for more general STK information.

View File

@@ -1,6 +1,6 @@
The Synthesis ToolKit in C++ (STK)
By Perry R. Cook and Gary P. Scavone, 1995--2021.
By Perry R. Cook and Gary P. Scavone, 1995--2023.
Please read the file README and INSTALL for more general STK information.
@@ -10,7 +10,7 @@ It is necessary to install the OS X developer kit (or the command line tools) in
Tcl/Tk on OS X:
I think that Tcl/Tk interpreter is now included in the Xcode package, since I haven't had to download it for several years now.
The Tcl/Tk interpreter included in the Xcode package seems outdated. Try getting tcl-tk through HomeBrew for an updated version.
It appears that socket support in Tcl/Tk on OS X uses the Nagle algorithm, which produces poor response between changes made in the Tcl/Tk script and the resulting audio updates. Note that this is only a problem when using a socket connection from a Tcl/Tk script.

View File

@@ -1,6 +1,6 @@
The Synthesis ToolKit in C++ (STK)
By Perry R. Cook and Gary P. Scavone, 1995--2021.
By Perry R. Cook and Gary P. Scavone, 1995--2023.
Please read the file README and INSTALL for more general STK information.

View File

@@ -1,6 +1,6 @@
The Synthesis ToolKit in C++ (STK)
By Perry R. Cook and Gary P. Scavone, 1995--2021.
By Perry R. Cook and Gary P. Scavone, 1995--2023.
Please read the file README.md for more general STK information.

View File

@@ -1,6 +1,12 @@
The Synthesis ToolKit in C++ (STK)
By Perry R. Cook and Gary P. Scavone, 1995--2021.
By Perry R. Cook and Gary P. Scavone, 1995--2023.
v.5.0.0 (4 August 2023)
- see github site for complete details (github.com/thestk/stk)
- new filter design functionality in BiQuad (thanks to Navin Kumar!)
- update to PitShift to use a single delay line
- various updates for new RtAudio API
v.4.6.2 (17 November 2021)
- see github site for complete details (github.com/thestk/stk)

File diff suppressed because it is too large Load Diff

View File

@@ -1,10 +1,16 @@
/*! \page download Download and Release Notes
\section down Download Version 4.6.2 (17 November 2021):
\section down Download Version 5.0.0 (4 August 2023):
- <A HREF="http://ccrma.stanford.edu/software/stk/release/stk-4.6.2.tar.gz">Source distribution</A>
- <A HREF="http://ccrma.stanford.edu/software/stk/release/stk-5.0.0.tar.gz">Source distribution</A>
\section notes Release Notes:
\subsection v5dot0dot0 Version 5.0.0
- see github site for complete details (github.com/thestk/stk)
- new filter design functionality in BiQuad (thanks to Navin Kumar!)
- update to PitShift to use a single delay line
- various updates for new RtAudio API
\subsection v4dot6dot2 Version 4.6.2
- see github site for complete details (github.com/thestk/stk)
- bug fixes in LentPitShift and Granulate classes

View File

@@ -25,7 +25,7 @@ STK GitHub site: https://github.com/thestk/stk
STK WWW site: http://ccrma.stanford.edu/software/stk/
The Synthesis ToolKit in C++ (STK)
Copyright (c) 1995--2021 Perry R. Cook and Gary P. Scavone
Copyright (c) 1995--2023 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

View File

@@ -2,7 +2,7 @@
<table>
<tr><td><A HREF="http://ccrma.stanford.edu/software/stk/"><I>The Synthesis ToolKit in C++ (STK)</I></A></td></tr>
<tr><td>&copy;1995--2021 Perry R. Cook and Gary P. Scavone. All Rights Reserved.</td></tr>
<tr><td>&copy;1995--2023 Perry R. Cook and Gary P. Scavone. All Rights Reserved.</td></tr>
</table>
</BODY>

View File

@@ -30,6 +30,7 @@ platforms and should work with any standard C++ compiler.
- \ref links
- \ref faq
- \ref tutorial
- <A href="http://github.com/thestk/stk">Stk on GitHub</A>
*/

View File

@@ -1,6 +1,6 @@
STK: A ToolKit of Audio Synthesis Classes and Instruments in C++
By Perry R. Cook and Gary P. Scavone, 1995--2021.
By Perry R. Cook and Gary P. Scavone, 1995--2023.
STK Classes - See the HTML documentation in the html directory for complete information.