7 Commits

Author SHA1 Message Date
Mike Oliphant 3742056b89 Bump version -> 0.2.1 2026-06-26 06:55:43 -07:00
Mike Oliphant 17e5cb826c Update NeuralAudio 2026-06-25 15:26:43 -07:00
Mike Oliphant 7b24522647 Update NeuralAudio (fix NAM A2 oversampling) 2026-06-15 09:29:57 -07:00
Mike Oliphant d2e3be5d03 Update NeuralAudio (fix composite model receptive field) 2026-06-14 13:30:12 -07:00
Mike Oliphant 7337541c5b Update release.yml 2026-06-14 09:33:33 -07:00
Mike Oliphant 1f79a13947 Visual Studio -> 2026 2026-06-14 09:33:14 -07:00
Mike Oliphant cc13dcb0e7 Merge pull request #115 from mikeoliphant/oversample
Oversampling support
2026-06-14 09:32:40 -07:00
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -51,7 +51,7 @@ jobs:
- name: Build Plugin
working-directory: ${{github.workspace}}/build
run: |
cmake.exe -G "Visual Studio 17 2022" -A x64 -DBUILD_UTILS=ON -DBUILD_INTERNAL_STATIC_WAVENET=ON -DBUILD_INTERNAL_STATIC_LSTM=ON -DBUILD_NAMCORE=ON -DBUILD_STATIC_RTNEURAL=ON -T ClangCL ..
cmake.exe -G "Visual Studio 18 2026" -A x64 -DBUILD_UTILS=ON -DBUILD_INTERNAL_STATIC_WAVENET=ON -DBUILD_INTERNAL_STATIC_LSTM=ON -DBUILD_NAMCORE=ON -DBUILD_STATIC_RTNEURAL=ON -T ClangCL ..
cmake --build . --config=release -j4
- name: Run ModelTest
+1 -1
View File
@@ -117,7 +117,7 @@ jobs:
- name: Build Plugin
working-directory: ${{github.workspace}}/build
run: |
cmake.exe -G "Visual Studio 17 2022" -A x64 -T ClangCL -DUSE_NATIVE_ARCH=${{ matrix.native_arch }} -DBUILD_NAMCORE=ON -DBUILD_INTERNAL_STATIC_WAVENET=ON -DBUILD_INTERNAL_STATIC_LSTM=ON ..
cmake.exe -G "Visual Studio 18 2026" -A x64 -T ClangCL -DUSE_NATIVE_ARCH=${{ matrix.native_arch }} -DBUILD_NAMCORE=ON -DBUILD_INTERNAL_STATIC_WAVENET=ON -DBUILD_INTERNAL_STATIC_LSTM=ON ..
cmake --build . --config=release -j4
- name: Add LV2 Archive
+1 -1
View File
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.10)
project(NeuralAmpModelerLv2 VERSION 0.2.0)
project(NeuralAmpModelerLv2 VERSION 0.2.1)
set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake")
set(LIB_INSTALL_DIR ${CMAKE_INSTALL_PREFIX}/lib CACHE PATH "The library install dir (default: lib)")