-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/gusborg88/fnf-porter
- Loading branch information
Showing
23 changed files
with
440 additions
and
213 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,46 @@ | ||
name: Error | ||
description: You need help resolving an error/crash in the converter | ||
body: | ||
- type: checkboxes | ||
attributes: | ||
label: Issue Checklist | ||
options: | ||
- label: I have properly named the issue | ||
- label: I looked in issues/discussions, if my question was previously anwsered | ||
|
||
- type: dropdown | ||
attributes: | ||
label: What is the preset selected? | ||
options: | ||
- Charts only | ||
- Songs only | ||
- Audio only | ||
- Characters only | ||
- Stages only | ||
- Full mod | ||
- I chose | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: If you chose what to convert, what did you pick? (if applicable) | ||
|
||
- type: dropdown | ||
attributes: | ||
label: What platform? | ||
options: | ||
- Windows | ||
- Mac | ||
- Linux (Ubuntu) | ||
|
||
- type: textarea | ||
attributes: | ||
label: What are the contents of the latest .log file? (if applicable) | ||
label: What are the contents of the latest .log file? (If you don't know what the last log file was, open the ".defaults" file, where you will find the name of the log file in the third line.) | ||
|
||
- type: textarea | ||
attributes: | ||
label: What are the contents of your mod folder? (if applicable) | ||
label: What are the contents of your mod folder? | ||
|
||
- type: textarea | ||
attributes: | ||
label: Additional Context (if applicable) | ||
label: Additional Context | ||
|
||
- type: checkboxes | ||
attributes: | ||
label: Issue Checklist | ||
options: | ||
- label: I have properly named the issue | ||
- label: I looked in issues/discussions, if my question was previously anwsered | ||
|
||
# based on https://github.com/LeleDerGrasshalmi/FortniteEndpointsDocumentation/blob/main/.github/ISSUE_TEMPLATE/api_error.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
name: FNF Porter Build | ||
|
||
on: | ||
pull_request: | ||
branches: [ "main" ] | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
build: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [windows-latest, macos-latest, ubuntu-latest] | ||
include: | ||
- os: windows-latest | ||
icon: icon.ico | ||
ext: .exe | ||
- os: macos-latest | ||
icon: icon.icns | ||
ext: | ||
- os: ubuntu-latest | ||
icon: "" | ||
ext: | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python 3.12 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.12" | ||
- name: Cache pip | ||
uses: actions/cache@v4 | ||
with: | ||
path: ~/.cache/pip | ||
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} | ||
restore-keys: | | ||
${{ runner.os }}-pip- | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install pyinstaller numpy pydub luaparser pyqt6 pillow | ||
- name: Build with PyInstaller | ||
run: | | ||
pyinstaller --onefile psychtobase/main.py --icon=${{ matrix.icon }} --noconsole -n "FNF Porter pullrequest-${{ github.event.pull_request.number }}" | ||
- name: Upload build artifact | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: FNF_Porter_Build_${{ matrix.os }} | ||
path: dist/*${{ matrix.ext }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
pyinstaller --onefile --icon=icon.ico -n "FNF Porter" setup.py | ||
pyinstaller --onefile --icon=icon.ico -n "FNF Porter" psychtobase/main.py | ||
cd dist | ||
"FNF Porter.exe" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.