1
0
Fork 0
mirror of https://github.com/DarkMatterCore/nxdumptool.git synced 2024-10-18 19:31:43 +01:00
nxdumptool/README.md

61 lines
2.5 KiB
Markdown
Raw Normal View History

# gcdumptool
Nintendo Switch Game Card Dump Tool
Main features
--------------
2018-06-26 02:11:18 +01:00
* Generates XCI cartridge dumps (with optional certificate removal and optional trimming).
2018-06-24 01:48:34 +01:00
* CRC32 checksum calculation for XCI dumps.
2018-06-26 02:11:18 +01:00
* Full XCI dump verification using XML database from nswdb.com (NSWreleases.xml).
* XCI dump renaming based on the XML database from nswdb.com (NSWreleases.xml).
* Precise HFS0 raw partition dumping (using the root HFS0 header from the game card).
* Partition filesystem data dumping.
* Partition filesystem browser (with manual file dump support).
* Manual game card certificate dump.
* Free SD card space checks in place.
* File splitting support for all operations, using 2 GiB parts.
* Game card Title ID and Control.nacp retrieval support using NCM and NS services.
2018-06-26 02:11:18 +01:00
* Dump speed and ETA calculation.
Thanks to
--------------
* MCMrARM, for creating the original application.
2018-06-21 07:53:51 +01:00
* RSDuck, for their vba-next-switch port. It's UI menu code was taken as a basis for this application.
* Foen, for giving me some pretty good hints about how to use the NCM service.
* Yellows8, for helping me fix a silly bug in my implementation of some NCM service IPC calls.
2018-06-24 01:48:34 +01:00
* Bj<42>rn Samuelsson, for his public domain CRC32 checksum calculation for C (crc32_fast.c).
* The folks from ReSwitched, for working towards the creation of a good homebrew ecosystem.
2018-06-22 01:46:17 +01:00
Changelog
--------------
2018-06-26 02:11:18 +01:00
**v1.0.4:**
* exFAT mode turned on by default.
* Replaced padding option with a trim output dump option (same as XCI-Cutter).
* Added dump speed and ETA calculation.
* Added XCI dump verification using XML database from nswdb.com (NSWreleases.xml). The file must be saved to the SD card root directory. Also, keep in mind that dump verification is only performed if you choose to create a full dump (with or without cert), not a trimmed one.
* Made CRC32 checksum calculation + XCI dump verification a configurable option.
* Output XCI dumps will get renamed to their corresponding Scene release if a match is found using the XML database from nswdb.com (e.g. "sdmc:/0100000000010000_20180625-234930.xci" -> "sdmc:/Super.Mario.Odyssey.NSW-BigBlueBox.xci").
2018-06-24 01:48:34 +01:00
**v1.0.3:**
* Made the 0xFF padding feature a configurable option.
* Added CRC32 checksum calculation for XCI dumps.
2018-06-22 10:45:41 +01:00
**v1.0.2:**
* Fixed a silly bug in the file splitting code.
2018-06-22 01:46:17 +01:00
**v1.0.1:**
* Minor UI fixes and tweaks.
* Added some missing Title ID checks in uiLoop().
* All calls to uiStatusMsg() are now properly identified.
* Increased wait time to 2 seconds when a new gamecard is detected.
**v1.0.0:**
Initial release.