-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Starmapo
committed
Aug 28, 2023
0 parents
commit 1b76aff
Showing
1,291 changed files
with
71,338 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
--- | ||
name: Bug Report | ||
about: Report a bug or critical performance issue | ||
title: 'Bug Report: ' | ||
labels: bug | ||
--- | ||
#### Please check for duplicates or similar issues, as well performing simple troubleshooting steps (such as clearing cookies, clearing AppData, trying another browser) before submitting an issue. | ||
### If you are playing the game in a browser, what site are you playing it from? | ||
[Newgrounds](https://www.newgrounds.com/portal/view/770371) or [Itch.io](https://ninja-muffin24.itch.io/funkin)? Specify below. | ||
|
||
### If you are playing the game in a browser, what browser are you using? | ||
Chrome (or a Chromium based browser, i.e. Edge, Opera, etc.), Firefox, or Safari? Specify blow. | ||
|
||
### If you are playing a downloaded version of the game, what operating system are you using? | ||
Windows (`x86`), Windows (`x86_64`), Linux, or macOS? Specify below. | ||
|
||
## What version of the game are you using? Look in the bottom left corner of the main menu. | ||
|
||
## Have you identified any steps to reproduce the bug? If so, please describe them below. Use images if possible. | ||
|
||
## Please describe your issue. Provide extensive detail and images if possible. |
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,8 @@ | ||
--- | ||
name: Enhancement | ||
about: Suggest a new feature | ||
title: 'Enhancement: ' | ||
labels: enhancement | ||
--- | ||
#### Please check for duplicates or similar issues before creating this issue. | ||
## What is your suggestion, and why should it be implemented? |
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,8 @@ | ||
--- | ||
name: Question | ||
about: Ask a general question | ||
title: 'Question: ' | ||
labels: question | ||
--- | ||
#### Please check for duplicates or similar issues before asking your question. | ||
## What is your question? |
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,10 @@ | ||
--- | ||
name: Bug Fix | ||
about: Fix a bug or critical performance issue | ||
title: 'Bug Fix: ' | ||
labels: bug | ||
--- | ||
#### Please check for duplicates or similar PRs before creating this issue. | ||
## Does this PR close any issue(s)? If so, link them below. | ||
|
||
## Briefly describe the issue(s) fixed. |
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,10 @@ | ||
--- | ||
name: Enhancement | ||
about: Add a new feature | ||
title: 'Enhancement: ' | ||
labels: enhancement | ||
--- | ||
#### Please check for duplicates or similar PRs before creating this issue. | ||
## Does this PR close any issue(s)? If so, link them below. | ||
|
||
## What do your change(s) add, and why should they be implemented? |
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,170 @@ | ||
# This is a basic workflow to help you get started with Actions | ||
|
||
name: Build | ||
|
||
# Controls when the action will run. | ||
on: | ||
# Triggers the workflow on push or pull request events but only for the master branch | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
|
||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | ||
jobs: | ||
# This workflow contains a single job called "build" | ||
buildLinux: | ||
# The type of runner that the job will run on | ||
runs-on: ubuntu-latest | ||
|
||
# Steps represent a sequence of tasks that will be executed as part of the job | ||
steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- uses: actions/checkout@v2 | ||
|
||
- uses: krdlab/setup-haxe@master | ||
with: | ||
haxe-version: 4.2.4 | ||
# Runs a set of commands using the runners shell | ||
- name: Install Haxelib | ||
run: | | ||
haxelib setup ~/haxelib | ||
haxelib install hxcpp > /dev/null | ||
haxelib install lime | ||
haxelib install openfl | ||
haxelib --never install flixel | ||
haxelib run lime setup flixel | ||
haxelib run lime setup | ||
haxelib install flixel-tools | ||
haxelib install flixel-ui | ||
haxelib install flixel-addons | ||
haxelib git linc_luajit https://github.com/AndreiRudenko/linc_luajit | ||
haxelib install hscript | ||
haxelib install polymod 1.5.2 | ||
haxelib git discord_rpc https://github.com/Aidan63/linc_discord-rpc | ||
haxelib install hxcpp-debug-server | ||
haxelib list | ||
- name: Create Version Tag | ||
run: echo "${{github.run_id}}" > VERSION | ||
- name: Compile Linux | ||
run: haxelib run lime build Project.xml linux --app-version="4.0.0-${{ github.run_id}}" | ||
- name: Publish Linux Artifact | ||
uses: actions/upload-artifact@v2.2.4 | ||
with: | ||
name: linuxBuild | ||
path: 'export/release/linux/bin' | ||
|
||
buildHTML5: | ||
# The type of runner that the job will run on | ||
runs-on: ubuntu-latest | ||
|
||
# Steps represent a sequence of tasks that will be executed as part of the job | ||
steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- uses: actions/checkout@v2 | ||
|
||
- uses: krdlab/setup-haxe@master | ||
with: | ||
haxe-version: 4.2.4 | ||
# Runs a set of commands using the runners shell | ||
- name: Install Haxelib | ||
run: | | ||
haxelib setup ~/haxelib | ||
haxelib install hxcpp > /dev/null | ||
haxelib install lime | ||
haxelib install openfl | ||
haxelib --never install flixel | ||
haxelib run lime setup flixel | ||
haxelib run lime setup | ||
haxelib install flixel-tools | ||
haxelib install flixel-ui | ||
haxelib install flixel-addons | ||
haxelib install polymod 1.5.2 | ||
haxelib list | ||
- name: Create Version Tag | ||
run: echo "${{github.run_id}}" > VERSION | ||
- name: Compile HTML5 | ||
run: haxelib run lime build Project.xml html5 --app-version="4.0.0-${{ github.run_id}}" | ||
- name: Publish HTMl5 Artifact | ||
uses: actions/upload-artifact@v2.2.4 | ||
with: | ||
name: html5Build | ||
path: 'export/release/html5/bin' | ||
|
||
buildWindows: | ||
runs-on: windows-latest | ||
|
||
steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- uses: actions/checkout@v2.3.0 | ||
|
||
- uses: krdlab/setup-haxe@master | ||
with: | ||
haxe-version: 4.2.4 | ||
# Runs a set of commands using the runners shell | ||
- name: Install Haxelib | ||
run: | | ||
haxelib setup C:/haxelib | ||
haxelib install hxcpp > nul | ||
haxelib install lime | ||
haxelib install openfl | ||
haxelib --never install flixel | ||
haxelib run lime setup flixel | ||
haxelib run lime setup | ||
haxelib install flixel-tools | ||
haxelib install flixel-ui | ||
haxelib install flixel-addons | ||
haxelib git linc_luajit https://github.com/AndreiRudenko/linc_luajit | ||
haxelib install hscript | ||
haxelib install polymod 1.5.2 | ||
haxelib git discord_rpc https://github.com/Aidan63/linc_discord-rpc | ||
haxelib install hxcpp-debug-server | ||
haxelib list | ||
shell: cmd | ||
- name: Create Version Tag | ||
run: echo "${{github.run_id}}" > VERSION | ||
- name: Compile | ||
run: haxelib run lime build windows --app-version="4.0.0-${{ github.run_id}}" | ||
- name: Publish Artifact | ||
uses: actions/upload-artifact@v2.2.4 | ||
with: | ||
name: windowsBuild | ||
path: export/release/windows/bin | ||
buildMac: | ||
runs-on: macos-latest | ||
|
||
steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- uses: actions/checkout@v2 | ||
|
||
- uses: krdlab/setup-haxe@master | ||
with: | ||
haxe-version: 4.2.4 | ||
# Runs a set of commands using the runners shell | ||
- name: Install Haxelib | ||
run: | | ||
haxelib setup ~/haxelib | ||
haxelib install hxcpp > /dev/null | ||
haxelib install lime | ||
haxelib install openfl | ||
haxelib --never install flixel | ||
haxelib run lime setup flixel | ||
haxelib run lime setup | ||
haxelib install flixel-tools | ||
haxelib install flixel-ui | ||
haxelib install flixel-addons | ||
haxelib git linc_luajit https://github.com/AndreiRudenko/linc_luajit | ||
haxelib install hscript | ||
haxelib install polymod 1.5.2 | ||
haxelib git discord_rpc https://github.com/Aidan63/linc_discord-rpc | ||
haxelib install hxcpp-debug-server | ||
haxelib list | ||
- name: Create Version Tag | ||
run: echo "${{github.run_id}}" > VERSION | ||
- name: Compile | ||
run: haxelib run lime build mac --app-version="4.0.0-${{ github.run_id}}" | ||
- name: Publish Artifact | ||
uses: actions/upload-artifact@v2.2.4 | ||
with: | ||
name: macBuild | ||
path: export/release/macos/bin |
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,3 @@ | ||
/export/ | ||
/art/newFlash/Hurt Notes that i can never release lmao/ | ||
/.haxelib/ |
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,6 @@ | ||
{ | ||
"recommendations": [ | ||
"openfl.lime-vscode-extension", | ||
"redhat.vscode-xml" | ||
] | ||
} |
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,21 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Build + Debug", | ||
"type": "lime", | ||
"request": "launch" | ||
}, | ||
{ | ||
"name": "Debug", | ||
"type": "lime", | ||
"request": "launch", | ||
"preLaunchTask": null | ||
}, | ||
{ | ||
"name": "Macro", | ||
"type": "haxe-eval", | ||
"request": "launch" | ||
} | ||
] | ||
} |
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,16 @@ | ||
{ | ||
"haxecheckstyle.sourceFolders": [ | ||
"source" | ||
], | ||
"search.exclude": { | ||
"export/**/*.hx": true | ||
}, | ||
"[haxe]": { | ||
"editor.formatOnSave": true, | ||
"editor.formatOnPaste": true, | ||
"editor.codeActionsOnSave": { | ||
"source.sortImports": true | ||
} | ||
}, | ||
"haxe.enableExtendedIndentation": true | ||
} |
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,13 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"type": "lime", | ||
"command": "test", | ||
"group": { | ||
"kind": "build", | ||
"isDefault": true | ||
} | ||
} | ||
] | ||
} |
Oops, something went wrong.