Releases: pongasoft/jamba
Releases · pongasoft/jamba
Version 7.1.4
Version 7.1.3
- Use
FetchContent_Populate
/FetchContent_MakeAvailable
withSOURCE_SUBDIR
option (see CMake discussion)
Version 7.1.2
- Fixes issues with some DAWs on Windows when using the bundle format
- Fixes the
create-plugin.py
tool on Windows
Version 7.1.1
- Fixed deprecated CMake warnings with
FetchContent_Populate
Version 7.1.0
- Migrated Jamba to use VST3 SDK 3.7.12 (release notes)
Version 7.0.1
- Use download url/hash in blank plugin
Version 7.0.0
- 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 withwin32resourcestream.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 yourCMakeLists.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
), anyvst2_sources
will try to get compiled and this will no longer work
Version 6.3.0
- Fixed NaN issue with
stringToFloat
by changing its return convention (0
instead ofNaN
) due tofast-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
- 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
- Enhanced
AudioBuffer
API