Upped version number. Reverse order of version history in readme.

This commit is contained in:
xenakios 2018-02-02 14:19:48 +02:00
parent c9b287dc13
commit 185cd27bef
2 changed files with 26 additions and 27 deletions

View File

@ -27,7 +27,7 @@ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#undef max #undef max
#endif #endif
String g_plugintitle{ "PaulXStretch 1.0.0 preview 5" }; String g_plugintitle{ "PaulXStretch 1.0.0 preview 6" };
std::set<PaulstretchpluginAudioProcessor*> g_activeprocessors; std::set<PaulstretchpluginAudioProcessor*> g_activeprocessors;

View File

@ -17,14 +17,23 @@ Requirements for building from source code :
History : History :
12-15-2017 1.0.0 preview 1 02-02-2018 1.0.0 preview 5
-Very early public release. Various issues present. -Added buttons to enable/disable spectral processing modules
12-17-2017 1.0.0 preview 2 -Restored ability to set capture buffer length (via the settings menu)
-Report only 2 input channels to host -Seek to play range beginning when audio file imported
-Fixes for using potentially invalid sample rates in internal initializations and calculations -No longer seeks to beginning of play range when changing FFT size
-File import dialog allows importing file formats supported by JUCE, not just .wav -Fixes to waveform display issues
12-17-2017 1.0.0 preview 2b -Double click on waveform selects whole waveform
-Fix buffer channel count issue, seems to make AU validation pass consistently -Double click on slider resets parameter to default value
-Show prebuffering ready amount graphically instead of text
-Highlight related parameters when spectral processing module clicked in the module chain
01-05-2018 1.0.0 preview 4
-Added reset parameters (except main volume and input pass through) command to settings menu
-Added option to settings menu to ignore loading imported audio file when recalling state
-Added support for dropping audio files to GUI (available functionality depends on host, many will simply
provide the file name of the source of audio file, so audio clip/event/item specific audio won't be imported)
-Removed an unnecessary level of buffering (doesn't reduce latency but should help a bit with CPU usage)
-Added About window
12-23-2017 1.0.0 preview 3 12-23-2017 1.0.0 preview 3
-Added parameter to set audio input capture buffer length (up to 120 seconds) -Added parameter to set audio input capture buffer length (up to 120 seconds)
-Added parameter allow passing through audio from plugin input -Added parameter allow passing through audio from plugin input
@ -37,21 +46,11 @@ History :
-Slightly better GUI layout but still mostly just 2 columns of sliders -Slightly better GUI layout but still mostly just 2 columns of sliders
-Remember last file import folder -Remember last file import folder
-Added detection of invalid audio output sample values (infinities, NaN) -Added detection of invalid audio output sample values (infinities, NaN)
01-05-2018 1.0.0 preview 4 12-17-2017 1.0.0 preview 2b
-Added reset parameters (except main volume and input pass through) command to settings menu -Fix buffer channel count issue, seems to make AU validation pass consistently
-Added option to settings menu to ignore loading imported audio file when recalling state 12-17-2017 1.0.0 preview 2
-Added support for dropping audio files to GUI (available functionality depends on host, many will simply -Report only 2 input channels to host
provide the file name of the source of audio file, so audio clip/event/item specific audio won't be imported) -Fixes for using potentially invalid sample rates in internal initializations and calculations
-Removed an unnecessary level of buffering (doesn't reduce latency but should help a bit with CPU usage) -File import dialog allows importing file formats supported by JUCE, not just .wav
-Added About window 12-15-2017 1.0.0 preview 1
02-02-2018 1.0.0 preview 5 -Very early public release. Various issues present.
-Added buttons to enable/disable spectral processing modules
-Restored ability to set capture buffer length (via the settings menu)
-Seek to play range beginning when audio file imported
-No longer seeks to beginning of play range when changing FFT size
-Fixes to waveform display issues
-Double click on waveform selects whole waveform
-Double click on slider resets parameter to default value
-Show prebuffering ready amount graphically instead of text
-Highlight related parameters when spectral processing module clicked in the module chain