diff --git a/CHANGELOG.md b/CHANGELOG.md index 7eaf44f1..8459e548 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,8 +8,9 @@ All notable changes to this project will be documented in this file. - Added "Tempo Sync" options for Delay module. - Added a "Mix" parameter for Phaser4 module. - Improved DSP performance for many of the modules. -- Improved memory-efficiency for Spriong Reverb module. +- Improved memory-efficiency for Spring Reverb module. - Improved handling of NaN inputs. +- Fixed host parameter automation not working in some cases. - Fixed user presets not always showing in alphabetical order. ## [1.2.0] - 2023-08-01 diff --git a/CMakeLists.txt b/CMakeLists.txt index deec7242..e73c21a3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,7 @@ set(CMAKE_OSX_DEPLOYMENT_TARGET "10.12" CACHE STRING "Minimum OS X deployment ta if(WIN32) set(CMAKE_SYSTEM_VERSION 7.1 CACHE STRING INTERNAL FORCE) # Windows SDK for Windows 7 and up endif() -project(BYOD VERSION 1.2.2) +project(BYOD VERSION 1.2.9) set(CMAKE_CXX_STANDARD 20) # Useful for testing with address sanitizer: @@ -24,7 +24,7 @@ endif() add_subdirectory(modules) # juce_set_vst2_sdk_path(C:/SDKs/VST_SDK/VST2_SDK) -# juce_set_aax_sdk_path(NONE) +juce_set_aax_sdk_path(C:/Users/Jatin/SDKs/AAX_SDK_clang/) # set default plugin formats to build if(IOS)