All checks were successful
Build NRO / build (push) Successful in 1m44s
Only remove PatchExtractor.nro on exit when the Done screen was reached; early quit no longer deletes the NRO. Drop the ineffective mid-run self-delete.
32 lines
1023 B
Markdown
32 lines
1023 B
Markdown
# PatchExtractor
|
|
|
|
Nintendo Switch Homebrew App für [OmniNX OC](https://git.niklascfw.de/OmniNX/OmniNX) - entpackt SaltyNX/FPSLocker Patches automatisch auf die SD-Karte.
|
|
|
|
## Was macht die App?
|
|
|
|
1. Sucht nach `sd:/SaltySD/plugins/FPSLocker/patches.zip`
|
|
2. Entpackt alle Patches in das gleiche Verzeichnis (überschreibt existierende Dateien)
|
|
3. Löscht `patches.zip` nach erfolgreichem Entpacken
|
|
4. Löscht `sd:/switch/PatchExtractor.nro` nur beim Beenden nach erfolgreichem Entpacken (Fertig-Bildschirm)
|
|
|
|
## Nutzung
|
|
|
|
Die App ist bereits in OmniNX OC enthalten und kann direkt aus Sphaira (hbmenu) gestartet werden.
|
|
|
|
## Selber bauen
|
|
|
|
Benötigt [devkitPro](https://devkitpro.org/) mit libnx, zlib, minizip und [borealis](https://github.com/natinusala/borealis) (als Git-Submodul).
|
|
|
|
```bash
|
|
git submodule update --init --recursive
|
|
export DEVKITPRO=/opt/devkitpro
|
|
export PATH=$DEVKITPRO/devkitA64/bin:$DEVKITPRO/tools/bin:$PATH
|
|
make
|
|
```
|
|
|
|
Die Oberfläche nutzt die Borealis UI-Bibliothek (Switch-Systemdesign).
|
|
|
|
## Lizenz
|
|
|
|
MIT
|