Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
base-devel
mingw-w64-x86_64-toolchain
mingw64/mingw-w64-x86_64-qt5-static
mingw-w64-x86_64-openssl
- name: build
shell: msys2 {0}
run: |
Expand All @@ -28,7 +29,7 @@ jobs:
mkdir -p $GITHUB_WORKSPACE/bin
cp release/NxNandManager.exe $GITHUB_WORKSPACE/bin
cp ../virtual_fs/dokan/x64/dokan1.dll $GITHUB_WORKSPACE/bin
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: NxNandManager
path: bin/*
2 changes: 2 additions & 0 deletions NxNandManager/NxStorage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ static NxStorageType NxTypesArr[] =

// Title ID 0100000000000809 (SystemVersion)
static NxSystemTitles systemTitlesArr[] = {
{ "20.1.5", "5e67272eb312e5801f055fdbf9f12e39.nca"},
{ "20.1.1", "5cb1ecaa7a31fe7ba1c37836a030ccb0.nca"},
{ "20.1.0", "f58f9b84fba8df8227600d98cf326b5e.nca"},
{ "20.0.1", "85872c8fc9e2d971b3848e454b408d1f.nca"},
Expand Down Expand Up @@ -142,6 +143,7 @@ static NxSystemTitles systemTitlesArr[] = {

// Title ID 010000000000081B (BootImagePackageExFat)
static NxSystemTitles exFatTitlesArr[] = {
{ "20.1.5", "793b767dc1ded58a9d1922df07bc0cd4.nca"},
{ "20.1.1", "793b767dc1ded58a9d1922df07bc0cd4.nca"},
{ "20.1.0", "793b767dc1ded58a9d1922df07bc0cd4.nca"},
{ "20.0.1", "9b1fe442efce8f3207088d1254fab1e5.nca"},
Expand Down
Loading