Skip to content

Commit 0f93ffd

Browse files
committed
2 parents cd24f3e + e88880f commit 0f93ffd

File tree

2 files changed

+29
-1
lines changed

2 files changed

+29
-1
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,12 @@ jobs:
5757
run: msbuild .\StompboxUI.sln /t:StompboxPlugin /p:Configuration=Release
5858

5959
- name: Add Plugin Archive
60-
run: Compress-Archive -Path ${{github.workspace}}\StompboxPlugin\bin\Release\net8.0-windows\* -Destination StompboxVST3Plugin.zip
60+
working-directory: ${{github.workspace}}
61+
run: |
62+
mkdir plugin-build
63+
move StompboxPlugin\bin\Release\net8.0-windows plugin-build\StompboxPlugin
64+
cp StompboxPlugin\README.txt plugin-build
65+
Compress-Archive -Path plugin-build\* -Destination StompboxVST3Plugin.zip
6166
6267
- name: Upload Plugin Asset
6368
uses: actions/upload-release-asset@v1

StompboxPlugin/Troubleshooting.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Troubleshooting
2+
3+
## Installing
4+
5+
Make sure that the ChartPlayer folder is installed where your DAW looks for VST3 plugins. Normally this is "**C:\Program Files\Common Files\VST3**".
6+
7+
Also ensure that you have .NET 8.0 installed on your system. You can get it here:
8+
9+
https://dotnet.microsoft.com/en-us/download/dotnet/8.0
10+
11+
## Stompbox Plugin Doesn't Scan in DAW
12+
13+
If your DAW isn't loading the plugin, first make sure that you had it re-scan plugins after installing .net 8.0
14+
15+
If you are still having trouble, please check for log files here:
16+
17+
"**%appdata%\AudioPlugSharp**"
18+
19+
Error messages here can help track down the problem.
20+
21+
## Reporting Problems
22+
23+
If you are having trouble, please get in touch. The best way is through opening an issue or a discussion here on GitHub.

0 commit comments

Comments
 (0)