Fix deprecated Nutika arguments

This commit is contained in:
Campbell 2024-06-26 20:28:47 -04:00
parent 21a636ee02
commit 1507da0d5b
Signed by: NinjaCheetah
GPG Key ID: B547958AF96ED344
2 changed files with 4 additions and 4 deletions

View File

@ -59,7 +59,7 @@ jobs:
pip install -r requirements.txt
- name: Build Package
run: |
nuitka3 --show-progress --include-data-dir=data=data --include-data-dir=resources=resources --assume-yes-for-downloads --standalone --plugin-enable=pyside6 NUSGet.py --macos-create-app-bundle --macos-app-icon=resources/icon.png --disable-console
nuitka3 --show-progress --include-data-dir=data=data --include-data-dir=resources=resources --assume-yes-for-downloads --standalone --plugin-enable=pyside6 NUSGet.py --macos-create-app-bundle --macos-app-icon=resources/icon.png
- name: Prepare Package for Upload
run: |
mv NUSGet.app ~/NUSGet.app
@ -89,7 +89,7 @@ jobs:
pip install -r requirements.txt
- name: Build Package
run: |
nuitka --show-progress --include-data-dir=data=data --include-data-dir=resources=resources --assume-yes-for-downloads --onefile --windows-icon-from-ico=resources/icon.png --plugin-enable=pyside6 NUSGet.py --disable-console
nuitka --show-progress --include-data-dir=data=data --include-data-dir=resources=resources --assume-yes-for-downloads --onefile --windows-icon-from-ico=resources/icon.png --plugin-enable=pyside6 NUSGet.py --windows-console-mode=disable
- name: Upload Package
uses: actions/upload-artifact@v4.3.0
with:

View File

@ -39,7 +39,7 @@ Then, use the command for your platform to build an executable with Nuitka:
**Windows**
```
nuitka --show-progress --include-data-dir=data=data --include-data-dir=resources=resources --assume-yes-for-downloads --onefile --windows-icon-from-ico=resources/icon.png --plugin-enable=pyside6 NUSGet.py --disable-console
nuitka --show-progress --include-data-dir=data=data --include-data-dir=resources=resources --assume-yes-for-downloads --onefile --windows-icon-from-ico=resources/icon.png --plugin-enable=pyside6 NUSGet.py --windows-console-mode=disable
```
**Linux**
@ -49,7 +49,7 @@ nuitka3 --show-progress --include-data-dir=data=data --include-data-dir=resourc
**macOS**
```
nuitka3 --show-progress --include-data-dir=data=data --include-data-dir=resources=resources --assume-yes-for-downloads --onefile --plugin-enable=pyside6 NUSGet.py --macos-create-app-bundle --macos-app-icon=resources/icon.png --disable-console
nuitka3 --show-progress --include-data-dir=data=data --include-data-dir=resources=resources --assume-yes-for-downloads --onefile --plugin-enable=pyside6 NUSGet.py --macos-create-app-bundle --macos-app-icon=resources/icon.png
```
The result will be a single binary named `NUSGet` that contains everything required to run NUSGet. No dependencies are needed on the target system.