commit f79db3d1050318b39cfa50b5e1a857adb00df077
parent aabf48e60ff27da84b688fc30401094d939a8057
Author: Jatin Chowdhury <[email protected]>
Date: Tue, 10 Oct 2023 19:20:03 -0700
Mac ARM builds for AAX and update CJE submodule
Diffstat:
2 files changed, 8 insertions(+), 1 deletion(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
@@ -2,6 +2,13 @@
All notable changes to this project will be documented in
this file.
+## [UNRELEASED]
+- AAX: added support for ARM Mac.
+- Added "RK" preset pack.
+- Fixed issues with "Wow" processing at higher sample rates.
+- CLAP: Fixed UI scaling on Windows.
+- LV2: Changed channel configuration to only support stereo I/O.
+
## [2.11.1] - 2023-01-13
- Improved graphics rendering performance.
- Improved strategy for handling OpenGL option on Windows.
diff --git a/Scripts/aax_builds.sh b/Scripts/aax_builds.sh
@@ -65,7 +65,7 @@ if [[ "$OSTYPE" == "darwin"* ]]; then
cmake -Bbuild-aax -GXcode -DCMAKE_XCODE_ATTRIBUTE_CODE_SIGN_IDENTITY="Developer ID Application" \
-DCMAKE_XCODE_ATTRIBUTE_DEVELOPMENT_TEAM="$TEAM_ID" \
-DCMAKE_XCODE_ATTRIBUTE_CODE_SIGN_STYLE="Manual" \
- -D"CMAKE_OSX_ARCHITECTURES=x86_64" \
+ -D"CMAKE_OSX_ARCHITECTURES=arm64;x86_64" \
-DCMAKE_XCODE_ATTRIBUTE_CODE_SIGN_INJECT_BASE_ENTITLEMENTS=NO \
-DCMAKE_XCODE_ATTRIBUTE_OTHER_CODE_SIGN_FLAGS="--timestamp" \
-DMACOS_RELEASE=ON