Skip to content

Commit

Permalink
Update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
jatinchowdhury18 committed Feb 5, 2024
1 parent cb6a290 commit f2fe26b
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,13 @@
All notable changes to this project will be documented in this file.

## [UNRELEASED]
- Added internal "Bypass" control.
- Added spectrum analyzers for filter-based tools.
- Added 4-band mode for Band Splitter tool.
- Added gain and frequency labels to spectrum plots.
- Added gain control text slider for Waveshaper.
- Added parameter control chyrons for Brickwall and Band-Splitter.
- Added support for CLAP preset discovery.
- Fixed overshoots when using "clipping" waveshapers.
- Fixed incorrect EQ filter type for First-Order Lowpass Filter.

Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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(ChowMultiTool VERSION 1.0.2)
project(ChowMultiTool VERSION 1.0.9)

set(CMAKE_CXX_STANDARD 20)
set(COMPANY_NAME "chowdsp")
Expand Down
12 changes: 8 additions & 4 deletions scripts/aax_builds.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
#!/bin/bash

# expand bash aliases
shopt -s expand_aliases
source ~/.bashrc

# exit on failure
set -e

Expand Down Expand Up @@ -52,8 +56,8 @@ if [[ "$OSTYPE" == "darwin"* ]]; then
else # Windows
echo "Building for WINDOWS"

AAX_PATH=C:/SDKs/AAX_SDK_clang/
ilok_pass=$(cat /d/ilok_pass)
AAX_PATH=C:/Users/Jatin/SDKs/AAX_SDK_clang/
ilok_pass=$(cat ~/ilok_pass)
aax_target_dir="/c/Program Files/Common Files/Avid/Audio/Plug-Ins"
TARGET_DIR="Win64"
fi
Expand All @@ -73,7 +77,7 @@ if [[ "$OSTYPE" == "darwin"* ]]; then
cmake --build build-aax --config $build_config -j12 --target "${TARGET_NAME}_AAX" | xcpretty

else # Windows
cmake -Bbuild-aax -G"Visual Studio 16 2019" -A x64 -T ClangCl
cmake -Bbuild-aax -G"Visual Studio 17 2022" -A x64 -T ClangCl
cmake --build build-aax --config $build_config --parallel $(nproc) --target "${TARGET_NAME}_AAX"
fi

Expand All @@ -99,7 +103,7 @@ else # Windows
--account chowdsp \
--password "$ilok_pass" \
--wcguid $wcguid \
--keyfile /c/Users/jatin/Downloads/jatin_aax_cert.p12 \
--keyfile ~/jatin_aax_cert.p12 \
--keypassword "$ilok_pass" \
--in $aax_location \
--out $aax_location
Expand Down

0 comments on commit f2fe26b

Please sign in to comment.