Skip to content

Commit 8270fa3

Browse files
committed
Package as default.3gx and update GH actions
1 parent 2d47bd8 commit 8270fa3

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/canary_release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ jobs:
2525
id: tag_name
2626

2727
- name: Publish canary release
28-
uses: softprops/action-gh-release@v1
28+
uses: softprops/action-gh-release@v2
2929
with:
3030
draft: false
3131
prerelease: true
3232
tag_name: ${{ steps.tag_name.outputs.tag_name }}
3333
name: ${{ format('Canary {0}', steps.build_timestamp.outputs.build_timestamp) }}
3434
body: ${{ github.event.head_commit.message }}
35-
files: out/pokereader.3gx
35+
files: out/default.3gx

.github/workflows/lint_test_build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ jobs:
2626
run: make
2727

2828
- name: Upload Artifacts
29-
uses: actions/upload-artifact@v2
29+
uses: actions/upload-artifact@v4
3030
with:
3131
name: PokeReader
3232
retention-days: 3
33-
path: out/pokereader.3gx
33+
path: out/default.3gx

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ all:
44
cargo +nightly build --release -Z build-std=core,alloc --target armv6k-nintendo-3ds --manifest-path reader_core/Cargo.toml
55
make -C 3gx
66
mkdir -p out
7-
cp 3gx/build/3gx.3gx out/pokereader.3gx
7+
cp 3gx/build/3gx.3gx out/default.3gx
88

99
clean:
1010
cargo clean --manifest-path reader_core/Cargo.toml

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ PokeReader is a 3gx plugin that allows viewing information about 3ds Pokemon gam
99
This information can be used to RNG shiny and high IV Pokemon, similar to lua scripts on emulators.
1010

1111
## Commands
12+
1213
- Start + Up (D-Pad): Show/Hide the plugin
1314
- X + Y: Lock/Unlock inputs to the plugin
1415
- D-Pad keys: Navigate the plugin when unlocked (right & left to get in and out of the different tabs)
@@ -19,9 +20,8 @@ This information can be used to RNG shiny and high IV Pokemon, similar to lua sc
1920
## Installing
2021

2122
1. Update to the latest [Luma](https://github.com/LumaTeam/Luma3DS/releases) or set up [Citra](https://github.com/citra-emu/citra).
22-
1. Download the [latest PokeReader release](https://github.com/zaksabeast/PokeReader/releases/latest).
23-
1. Rename the `pokereader.3gx` file to `default.3gx`, then copy it to `/luma/plugins/` on your sd card (create the directory if it doesn't exist).
24-
- Optionally, rename the `pokereader.3gx` file to `plugin.3gx`, then copy it to `/luma/plugins/<title_id>/` for every Pokemon game.
23+
1. Download and unzip the [latest PokeReader release](https://github.com/zaksabeast/PokeReader/releases/latest).
24+
1. Copy `default.3gx` to `/luma/plugins/default.3gx` on your sd card (create the directory if it doesn't exist).
2525

2626
## Building
2727

0 commit comments

Comments
 (0)