Skip to content

Releases: pongasoft/jamba

Version 7.1.4

08 Dec 19:21
Compare
Choose a tag to compare
  • Fixed class name collision with Audio Unit

Version 7.1.3

01 Dec 19:21
Compare
Choose a tag to compare
  • Use FetchContent_Populate/FetchContent_MakeAvailable with SOURCE_SUBDIR option (see CMake discussion)

Version 7.1.2

26 Nov 19:34
Compare
Choose a tag to compare
  • Fixes issues with some DAWs on Windows when using the bundle format
  • Fixes the create-plugin.py tool on Windows

Version 7.1.1

25 Nov 17:47
Compare
Choose a tag to compare
  • Fixed deprecated CMake warnings with FetchContent_Populate

Version 7.1.0

25 Nov 17:47
Compare
Choose a tag to compare

Version 7.0.1

27 May 17:41
Compare
Choose a tag to compare
  • Use download url/hash in blank plugin

Version 7.0.0

25 May 18:50
Compare
Choose a tag to compare
  • Migrated Jamba to use VST3 SDK 3.7.8 (release notes). Please check other release notes to see what has changed since 3.7.5 (last Jamba supported version).
  • As explained in issue #16, Jamba is no longer supporting VST2
  • Added a way to patch the SDK by defining the CMake cache string JAMBA_VST3SDK_PATCH_DIR (Jamba uses it on Windows/DLL build to fix an issue with win32resourcestream.cpp, but you can also use it for your own purposes): by defining this variable, 2 things happen
    • Jamba copies the SDK inside the build folder
    • Jamba copies all the files under ${JAMBA_VST3SDK_PATCH_DIR} on top of this copy while never modifying a local version of the SDK

Migration suggested

Remove the option(JAMBA_ENABLE_VST2 "Use VST2" ON) entry from your CMakeLists.txt (and you can clean up any references to vst2 if you want to).

Note that if you do not remove it (or set it to OFF), any vst2_sources will try to get compiled and this will no longer work

Version 6.3.0

14 May 17:51
Compare
Choose a tag to compare
  • Fixed NaN issue with stringToFloat by changing its return convention (0 instead of NaN) due to fast-math option which assumes that there is no NaN in the code.
  • Fixed invalid version.h file generated on Windows
  • Integrated with GitHub actions in order to do a matrix style testing (which uncovered the 2 previous issues)
    • Windows 10 Visual Studio 2019 & 2022
    • macOS 11 (Xcode 13.2) & macOS 12 (Xcode 14.2)

Version 6.2.1

27 Apr 17:52
Compare
Choose a tag to compare
  • Fixes compilation issues with XCode 14+
  • Automatically adds libraries (LINK_LIBRARIES) to the universal build (M1 builds)
  • Removed most warnings coming from the SDK/Jamba

Version 6.2.0

19 Apr 17:25
Compare
Choose a tag to compare
  • Enhanced AudioBuffer API