diff --git a/.gitmodules b/.gitmodules index 1d45d927..98acebe0 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,6 +1,6 @@ [submodule "modules/JUCE"] path = modules/JUCE - url = https://github.com/juce-framework/JUCE.git + url = https://github.com/jatinchowdhury18/JUCE.git [submodule "modules/chowdsp_utils"] path = modules/chowdsp_utils url = https://github.com/Chowdhury-DSP/chowdsp_utils.git diff --git a/CHANGELOG.md b/CHANGELOG.md index 0270a6d2..354aa06c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,14 +2,14 @@ All notable changes to this project will be documented in this file. -## [UNRELEASED] +## [1.1.3] - 2023-01-13 - Added "Muff Clipper" module. - Added "Smoothing" parameter for "Muff Drive" module. - Added new factory presets. - Added option to skip parameter tree refreshes for AUv3 hosts. - Fixed parameter name changes not showing up in some CLAP hosts. -## [1.1.0] 2022-11-21 +## [1.1.0] - 2022-11-21 - Added support for the CLAP plugin format (with parameter modulation). - Added modulation ports so modules with internal modulation can share modulation signals. - Added "Rotary" module. @@ -38,7 +38,7 @@ All notable changes to this project will be documented in this file. - Fixed gain normalization across sample-rates for IR modules. - Fixed undo/redo not restoring preset name. -## [1.0.1] 2022-03-15 +## [1.0.1] - 2022-03-15 - Changed UI rendering to use OpenGL by default on Windows/Linux, unless OpenGL 2.0+ is not available on the host system. - Fixed YenDrive giving NaN output when Gain parameter set to zero. - Fixed Spring Reverb "pop" when switching from mono to stereo input. @@ -46,5 +46,5 @@ All notable changes to this project will be documented in this file. - Fixed plugin state not saving/loading correctly in VST2. - Fixed noise spikes in King Of Tone, RONN, and Muff Drive processors. -## [1.0.0] 2022-03-11 +## [1.0.0] - 2022-03-11 - Initial release. diff --git a/CMakeLists.txt b/CMakeLists.txt index ec1e4bde..758b5bdc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.15) set(CMAKE_OSX_DEPLOYMENT_TARGET "10.12" CACHE STRING "Minimum OS X deployment target") -project(BYOD VERSION 1.1.2) +project(BYOD VERSION 1.1.3) if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU") set(CMAKE_CXX_STANDARD 17)