Skip to content

Commit

Permalink
+samples.txt and .part file support for the kits
Browse files Browse the repository at this point in the history
  • Loading branch information
psemiletov committed Nov 1, 2024
1 parent 8c154ad commit 63e82a7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cmake-art-thin-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Archive artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: drumlabooh.vst3
path: build\drumlabooh_artefacts\Release\VST3\
4 changes: 2 additions & 2 deletions .github/workflows/cmake-art-vst-lv2-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ jobs:
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}

- name: Archive artifacts VST3
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: drumlabooh.vst3
path: ${{github.workspace}}/build/drumlabooh_artefacts/Release/VST3

- name: Archive artifacts LV2
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: drumlabooh.lv2
path: ${{github.workspace}}/build/drumlabooh_artefacts/Release/LV2
2 changes: 1 addition & 1 deletion Source/kits.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ void CDrumKit::load_txt (const std::string &data)
bool check_for_random_noice = false;
bool check_for_txt = false;

if (fname.find ("samples.txt") != string::npos)
if (fname.find ("samples.txt") != string::npos || fname.find (".part") != string::npos)
check_for_txt = true;

if (sample_name.rfind ("*", 0) == 0)
Expand Down

0 comments on commit 63e82a7

Please sign in to comment.