diff --git a/NUSGet.py b/NUSGet.py index 6bd963f..bc670cb 100644 --- a/NUSGet.py +++ b/NUSGet.py @@ -65,11 +65,13 @@ class MainWindow(QMainWindow, Ui_MainWindow): self.ui.dsi_title_tree.header().setSectionResizeMode(QHeaderView.ResizeToContents) # Basic intro text set to automatically show when the app loads. This may be changed in the future. libwiipy_version = "v" + version("libWiiPy") + libtwlpy_version = "v" + version("libTWLPy") self.ui.log_text_browser.setText(f"NUSGet v1.0\nDeveloped by NinjaCheetah\nPowered by libWiiPy " - f"{libwiipy_version}\n\nSelect a title from the list on the left, or enter a " - f"Title ID to begin.\n\nTitles marked with a checkmark are free and have a " - f"ticket available, and can be decrypted and packed into a WAD. Titles with an" - f" X do not have a ticket, and only their encrypted contents can be saved.") + f"{libwiipy_version}\nDSi support provided by libTWLPy {libtwlpy_version}\n\n" + f"Select a title from the list on the left, or enter a Title ID to begin.\n\n" + f"Titles marked with a checkmark are free and have a ticket available, and can" + f" be decrypted and/or packed into a WAD or TAD. Titles with an X do not have " + f"a ticket, and only their encrypted contents can be saved.") # Add console entries to dropdown and attach on change signal. self.ui.console_select_dropdown.addItem("Wii") self.ui.console_select_dropdown.addItem("vWii") diff --git a/data/dsi-database.json b/data/dsi-database.json index f9b5d8d..9432c2d 100644 --- a/data/dsi-database.json +++ b/data/dsi-database.json @@ -60,6 +60,17 @@ "TAD Name": "DS-Download-Play-NUS", "Danger": "wip" }, + { + "Name": "Flipnote Studio", + "TID": "000300044B4755XX", + "Versions": { + "USA/NTSC": [0], + "Europe/PAL": [0], + "Japan": [512] + }, + "Ticket": true, + "TAD Name": "Flipnote-Studio-NUS" + }, { "Name": "Nintendo 3DS Transfer Tool", "TID": "00030015484E4FXX", @@ -74,6 +85,17 @@ "TAD Name": "Nintendo-3DS-Transfer-Tool-NUS", "Danger": "wip" }, + { + "Name": "Nintendo DSi Browser", + "TID": "00030004484E47XX", + "Versions": { + "USA/NTSC": [768], + "Europe/PAL": [768], + "Japan": [768] + }, + "Ticket": true, + "TAD Name": "Nintendo-DSi-Browser-NUS" + }, { "Name": "Nintendo DSi Camera", "TID": "00030005484E49XX", @@ -181,28 +203,6 @@ "Europe/PAL": [1] }, "Ticket": false - }, - { - "Name": "Nintendo DSi Browser", - "TID": "00030004484E47XX", - "Versions": { - "USA/NTSC": [768], - "Europe/PAL": [768], - "Japan": [768] - }, - "Ticket": true, - "TAD Name": "Nintendo-DSi-Browser-NUS" - }, - { - "Name": "Flipnote Studio", - "TID": "000300044B4755XX", - "Versions": { - "USA/NTSC": [0], - "Europe/PAL": [0], - "Japan": [512] - }, - "Ticket": true, - "TAD Name": "Flipnote-Studio-NUS" } ] } \ No newline at end of file