-
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.
fix patches url, add sys-patch updating, re-license from GPL to MIT
- Loading branch information
1 parent
3bb4925
commit 6cf118c
Showing
12 changed files
with
278 additions
and
810 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,19 @@ | ||
name: build | ||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
container: devkitpro/devkita64:latest | ||
|
||
steps: | ||
- name: Checkout 🛎️ | ||
uses: actions/checkout@master | ||
|
||
- name: Build | ||
run: make dist -j2 | ||
|
||
- uses: actions/upload-artifact@master | ||
with: | ||
name: sigpatch-updater | ||
path: sigpatch-updater.zip |
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,6 +1,7 @@ | ||
/old_romfs* | ||
/.vscode* | ||
/build* | ||
build | ||
*.elf | ||
*.nacp | ||
*.nro | ||
!.vscode/c_cpp_properties.json | ||
*.zip | ||
out |
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,18 @@ | ||
{ | ||
"configurations": [ | ||
{ | ||
"name": "switch", | ||
"includePath": [ | ||
"${default}", | ||
"${workspaceFolder}/**", | ||
"${DEVKITPRO}/libnx/include/", | ||
"${DEVKITPRO}/portlibs/switch/include/" | ||
], | ||
"defines": [], | ||
"cStandard": "c17", | ||
"cppStandard": "c++23", | ||
"compilerPath": "${DEVKITPRO}/devkitA64/bin/aarch64-none-elf-gcc" | ||
} | ||
], | ||
"version": 4 | ||
} |
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,25 +1,35 @@ | ||
# Sigpatch-Updater | ||
|
||
This is a updater for you sigpatches! Currently it has the option to: | ||
This is a updater for you sigpatches! | ||
|
||
* Download patches needed for Atmosphere | ||
Currently it has the option to: | ||
|
||
- Update patches needed for Atmosphere | ||
- Update sys-patch and auto run the sysmod | ||
- Update the app | ||
|
||
--- | ||
|
||
![Img](images/example.jpg) | ||
|
||
---- | ||
|
||
## Where does it download the patches from? | ||
|
||
The patches are download from my [patches repo](https://github.com/ITotalJustice/patches). | ||
The patches are download from [a new host](https://sigmapatches.coomer.party). Huge thanks to them! | ||
|
||
---- | ||
--- | ||
|
||
## Special Thanks! | ||
## What is sys-patch? | ||
|
||
[toph](https://github.com/sudot0ph) for the design of the app icon! | ||
you can read more about it [here](https://github.com/ITotalJustice/sys-patch). | ||
|
||
The-4n for continuing to update the sigpatch thread of gbatemp! | ||
---- | ||
|
||
Joonie for their help with hekate patches in the past! | ||
## Special Thanks! | ||
|
||
TeJay for maintaining the patches repo! | ||
- [toph](https://github.com/sudot0ph) for the design of the app icon | ||
- The-4n for previously updating the sigpatch thread on gbatemp | ||
- Joonie for their help with hekate patches in the past | ||
- TeJay for previously maintaining the patches repo | ||
- Archbox for being very helpful as always |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,9 +1,6 @@ | ||
#ifndef _UNZIP_H_ | ||
#define _UNZIP_H_ | ||
|
||
#define UP_SIGS 0 | ||
#define UP_APP 1 | ||
|
||
int unzip(const char *output); | ||
bool unzip(const char *output); | ||
|
||
#endif |
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.