Skip to content

Commit

Permalink
Rename spec files
Browse files Browse the repository at this point in the history
  • Loading branch information
sam210723 committed May 5, 2024
1 parent c99acdd commit a2b8077
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 15 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:

- name: Build exe
working-directory: ${{ env.GITHUB_WORKSPACE }}
run: hatch run pyinstaller --clean wavebin/wavebin_splash.spec
run: hatch run pyinstaller --clean wavebin/wavebin_win.spec

- name: Upload wheel
uses: actions/upload-artifact@v4
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
- name: Build app
working-directory: ${{ env.GITHUB_WORKSPACE }}
run: hatch run pyinstaller --clean wavebin/wavebin.spec
run: hatch run pyinstaller --clean wavebin/wavebin_macos.spec

- name: Upload app
uses: actions/upload-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
{
"label": "Build Package (PyInstaller)",
"type": "shell",
"command": "hatch run pyinstaller --clean wavebin/wavebin.spec && dist/wavebin.exe -v",
"command": "hatch run pyinstaller --clean wavebin/wavebin_win.spec && dist/wavebin.exe -v",
"problemMatcher": []
},
{
Expand Down
File renamed without changes.
12 changes: 0 additions & 12 deletions wavebin/wavebin_splash.spec → wavebin/wavebin_win.spec
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,3 @@ exe = EXE(
icon="interface/assets/icon-multi.ico",
version="wavebin.rc" # TODO: Dynamic version number
)

app = BUNDLE(
exe,
name="wavebin.app",
icon="interface/assets/icon-multi.ico",
bundle_identifier=None,
version="3.0", # TODO: Dynamic version number
info_plist={
"NSPrincipalClass": "NSApplication",
"NSAppleScriptEnabled": False
}
)

0 comments on commit a2b8077

Please sign in to comment.