-
Notifications
You must be signed in to change notification settings - Fork 7
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
1 parent
cd674d8
commit ed341d9
Showing
4 changed files
with
39 additions
and
2 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,14 @@ | ||
# P3R-Save-EnDecryptor | ||
Programs to decrypt/encrypt Persona 3 reload saves | ||
|
||
## Usage | ||
|
||
Decrypt save (steam to gamepass) | ||
``` | ||
p3r-save decrypt <file> | ||
``` | ||
|
||
Encrypt save (gamepass to steam) | ||
``` | ||
p3r-save encrypt <file> | ||
``` |
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,24 @@ | ||
name: Build | ||
|
||
on: [ push, pull_request, workflow_dispatch ] | ||
|
||
jobs: | ||
build: | ||
runs-on: windows-latest | ||
permissions: | ||
contents: write | ||
steps: | ||
- uses: actions/checkout@main | ||
- run: clang-cl main.c -D_CRT_SECURE_NO_WARNINGS -o p3r-save.exe | ||
- name: Push artifact | ||
if: false | ||
uses: actions/upload-artifact@main | ||
with: | ||
name: p3r-save | ||
path: p3r-save.exe | ||
- name: Push release | ||
if: github.event_name == 'workflow_dispatch' | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: gh release create build-${{ github.run_number }} p3r-save.exe --target ${{ GITHUB.SHA }} -t "Build ${{ github.run_number }}" -F ".github/README.md" | ||
|
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