@@ -10,11 +10,11 @@ Easily manage your switch game backups
1010#### Features:
1111- Cross platform, works on Windows / Mac / Linux
1212- GUI and command line interfaces
13- - Scan your local switch backup library (NSP/NSZ)
13+ - Scan your local switch backup library (NSP/NSZ/XCI)
14+ - Read titleId/version by decrypting NSP/XCI/NSZ (requires prod.keys)
15+ - If no prod.keys present, fallback to read titleId/version by parsing file name (example: ` Super Mario Odyssey [0100000000010000][v0].nsp ` ).
1416- Lists missing update files (for games and DLC)
1517- Lists missing DLCs
16- - Read titleId/version by decrypting NSPs (requires prod.keys)
17- - Read titleId/version by parsing file name (example: ` Super Mario Odyssey [0100000000010000][v0].nsp ` ).
1818- Automatically organize games per folder
1919- Rename files based on metadata read from NSP
2020- Delete old update files (in case you have multiple update files for the same game, only the latest will remain)
@@ -37,6 +37,8 @@ You can customize the folder/file re-naming, as well as turn on/off features.
3737 "versions_etag": "",
3838 "titles_etag": "",
3939 "folder": "",
40+ "gui": true,
41+ "debug": false,
4042 "check_for_missing_updates": true,
4143 "check_for_missing_dlc": true,
4244 "organize_options": {
@@ -48,6 +50,7 @@ You can customize the folder/file re-naming, as well as turn on/off features.
4850 "file_name_template": "{TITLE_NAME} [{DLC_NAME}][{TITLE_ID}][v{VERSION}]"
4951 },
5052 "scan_recursively": true
53+ "gui_page_size": 100
5154}
5255```
5356
@@ -58,6 +61,10 @@ The following template elements are supported:
5861- {VERSION} - version id (only applicable to files)
5962- {TYPE} - impacts DLCs/updates, will appear as [ "UPD","DLC"]
6063- {DLC_NAME} - DLC name (only applicable to DLCs)
64+
65+ ## Reporting issues
66+ Please set debug mode to 'true', and attach the slm.log to allow for quicker resolution.
67+
6168## Usage
6269##### Windows
6370- Extract the zip file
0 commit comments