mirror of
https://github.com/NinjaCheetah/NUSGet.git
synced 2025-04-25 07:01:01 -04:00
Generate WAD name from title name rather than requiring dedicated key
This commit is contained in:
parent
dcb1cdebca
commit
e96d8932d0
25
NUSGet.py
25
NUSGet.py
@ -147,7 +147,7 @@ class MainWindow(QMainWindow, Ui_MainWindow):
|
||||
title = source_index.internalPointer().metadata
|
||||
if title is not None:
|
||||
self.ui.console_select_dropdown.setCurrentIndex(self.ui.platform_tabs.currentIndex())
|
||||
selected_title = TitleData(title.tid, title.name, title.archive_name, title.version, title.ticket,
|
||||
selected_title = TitleData(title.tid, title.name, title.version, title.ticket,
|
||||
title.region, title.category, title.danger)
|
||||
self.load_title_data(selected_title)
|
||||
|
||||
@ -212,23 +212,22 @@ class MainWindow(QMainWindow, Ui_MainWindow):
|
||||
# Load the TID and version into the entry boxes.
|
||||
self.ui.tid_entry.setText(tid)
|
||||
self.ui.version_entry.setText(str(selected_title.version))
|
||||
# Load the WAD name, assuming it exists. This shouldn't ever be able to fail as the database has a WAD name
|
||||
# for every single title, regardless of whether it can be packed or not.
|
||||
archive_name = selected_title.archive_name
|
||||
if selected_title.category != "System" and selected_title.category != "IOS":
|
||||
# Create the WAD name by deriving it from the title name (basically just replace " " with "-").
|
||||
archive_name = selected_title.name.replace(" ", "-")
|
||||
if selected_title.category not in ["System", "IOS"]:
|
||||
archive_name += f"-{str(bytes.fromhex(tid).decode())[-4:]}"
|
||||
archive_name += f"-v{selected_title.version}"
|
||||
if selected_title.region != "World":
|
||||
archive_name += f"-{selected_title.region.split('/')[0]}"
|
||||
if self.ui.console_select_dropdown.currentText() == "DSi":
|
||||
archive_name += ".tad"
|
||||
elif self.ui.console_select_dropdown.currentText() == "vWii":
|
||||
if selected_title.category.find("System") != -1 or selected_title.category == "IOS":
|
||||
archive_name += "-vWii"
|
||||
archive_name += ".wad"
|
||||
else:
|
||||
if selected_title.category.find("System") != -1 or selected_title.category == "IOS":
|
||||
archive_name += "-Wii"
|
||||
if self.ui.console_select_dropdown.currentText() == "vWii":
|
||||
if selected_title.category.find("System") != -1 or selected_title.category == "IOS":
|
||||
archive_name += "-vWii"
|
||||
else:
|
||||
if selected_title.category.find("System") != -1 or selected_title.category == "IOS":
|
||||
archive_name += "-Wii"
|
||||
archive_name += ".wad"
|
||||
self.ui.archive_file_entry.setText(archive_name)
|
||||
danger_text = selected_title.danger
|
||||
@ -449,7 +448,7 @@ class MainWindow(QMainWindow, Ui_MainWindow):
|
||||
for r in regions:
|
||||
if f"{t['TID'][:-2]}{regions[r][0]}" == tid:
|
||||
try:
|
||||
archive_name = t["Archive Name"]
|
||||
archive_name = t["Name"].replace(" ", "-")
|
||||
break
|
||||
except KeyError:
|
||||
archive_name = ""
|
||||
@ -457,7 +456,7 @@ class MainWindow(QMainWindow, Ui_MainWindow):
|
||||
else:
|
||||
if t["TID"] == tid:
|
||||
try:
|
||||
archive_name = t["Archive Name"]
|
||||
archive_name = t["Name"].replace(" ", "-")
|
||||
break
|
||||
except KeyError:
|
||||
archive_name = ""
|
||||
|
@ -6,11 +6,10 @@
|
||||
"Versions": {
|
||||
"World": [256, 512]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "Nintendo-DS-Cartridge-Whitelist"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "Launcher (System Menu)",
|
||||
"Name": "Launcher",
|
||||
"TID": "00030017484E41XX",
|
||||
"Versions": {
|
||||
"USA/NTSC": [512, 768, 1024, 1280, 1536, 1792],
|
||||
@ -21,7 +20,6 @@
|
||||
"Australia/NZ": [512, 768, 1024, 1280, 1536, 1792]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "Launcher",
|
||||
"Danger": "The Launcher (DSi Menu) is a critical part of the DSi's operation, and should not be modified unless you have Unlaunch installed."
|
||||
},
|
||||
{
|
||||
@ -35,8 +33,7 @@
|
||||
"China": [4, 5, 6, 7, 8, 9],
|
||||
"Australia/NZ": [3, 4, 5, 6, 7, 8, 9]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "Version-Data"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "WiFi Firmware",
|
||||
@ -45,7 +42,6 @@
|
||||
"World": [256, 512]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "WiFi-Firmware",
|
||||
"Danger": "The WiFi Firmware is the firmware that runs on the DSi's WiFi chip, and should not be modified. Your console WILL be bricked if this title is damaged or missing."
|
||||
}
|
||||
],
|
||||
@ -56,8 +52,7 @@
|
||||
"Versions": {
|
||||
"World": [256]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "DS-Download-Play"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "Flipnote Studio",
|
||||
@ -67,8 +62,7 @@
|
||||
"Europe/PAL": [0],
|
||||
"Japan": [512]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "Flipnote-Studio"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "Nintendo 3DS Transfer Tool",
|
||||
@ -80,8 +74,7 @@
|
||||
"Korea": [256],
|
||||
"Australia/NZ": [512, 768]
|
||||
},
|
||||
"Ticket": false,
|
||||
"Archive Name": "Nintendo-3DS-Transfer-Tool"
|
||||
"Ticket": false
|
||||
},
|
||||
{
|
||||
"Name": "Nintendo DSi Browser",
|
||||
@ -91,8 +84,7 @@
|
||||
"Europe/PAL": [768],
|
||||
"Japan": [768]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "Nintendo-DSi-Browser"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "Nintendo DSi Camera",
|
||||
@ -103,8 +95,7 @@
|
||||
"Japan": [256, 768, 1024],
|
||||
"Australia/NZ": [768, 1024]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "Nintendo-DSi-Camera"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "Nintendo DSi Shop",
|
||||
@ -117,8 +108,7 @@
|
||||
"China": [768],
|
||||
"Australia/NZ": [1536, 1792, 2048, 2304, 2560, 2816, 3072]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "Nintendo-DSi-Shop"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "Nintendo DSi Sound",
|
||||
@ -129,8 +119,7 @@
|
||||
"Japan": [256, 512],
|
||||
"Australia/NZ": [256, 512]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "Nintendo-DSi-Sound"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "Nintendo Zone",
|
||||
@ -141,8 +130,7 @@
|
||||
"Japan": [512, 768],
|
||||
"Australia/NZ": [512, 768]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "Nintendo-DSi-Sound"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "System Settings",
|
||||
@ -155,8 +143,7 @@
|
||||
"China": [768],
|
||||
"Australia/NZ": [512, 768]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "System-Settings"
|
||||
"Ticket": true
|
||||
}
|
||||
],
|
||||
"DSiWare": [
|
||||
|
@ -7,7 +7,6 @@
|
||||
"World": [6, 7]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "BC-NAND",
|
||||
"Danger": "BC-NAND is required for the Wii U to boot Wii titles. DO NOT modify it, or your Wii U will no longer be able to enter Wii mode."
|
||||
},
|
||||
{
|
||||
@ -17,7 +16,6 @@
|
||||
"World": [1]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "BC-WFS",
|
||||
"Danger": "BC-WFS is required for the Wii U to be able to boot Dragon Quest X Online. Do NOT modify it, or your Wii U may experience issues with Wii mode."
|
||||
},
|
||||
{
|
||||
@ -29,7 +27,6 @@
|
||||
"Japan": [512, 544, 608]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "System-Menu",
|
||||
"Danger": "The System Menu is a critical part of the vWii's operation, and should not be modified. If you intend to modify it, you should have Preloader installed, or else you may not be able to use the vWii.",
|
||||
"Public Versions": {
|
||||
"512": "4.3J - Wii U v1.0.0J",
|
||||
@ -51,8 +48,7 @@
|
||||
"Versions": {
|
||||
"World": [6]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "Mii-Channel"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "Shopping Channel",
|
||||
@ -60,8 +56,7 @@
|
||||
"Versions": {
|
||||
"World": [21]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "Shopping-Channel"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "Return to Wii U Menu",
|
||||
@ -70,7 +65,6 @@
|
||||
"World": [0]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "Return-to-Wii-U-Menu",
|
||||
"Danger": "\"Return to Wii U Menu\" is the channel launched from the vWii menu to reboot your console back into Wii U mode. While it generally should not be modified, modifying or removing it will not prevent the vWii from working."
|
||||
},
|
||||
{
|
||||
@ -81,8 +75,7 @@
|
||||
"Europe/PAL": [0, 1, 2, 3, 4, 5],
|
||||
"Japan": [0, 1, 2, 3, 5]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "Wii-Electronic-Manual"
|
||||
"Ticket": true
|
||||
}
|
||||
],
|
||||
"Hidden Channels": [
|
||||
@ -95,7 +88,6 @@
|
||||
"Japan": [2]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "Region-Select",
|
||||
"Danger": "\"Region Select\" is a hidden channel used during the Wii's initial setup. If this title is damaged or missing, you will not be able to set up your Wii again after a factory reset."
|
||||
},
|
||||
{
|
||||
@ -107,7 +99,6 @@
|
||||
"Japan": [29, 31]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "Wii-System-Transfer-WC",
|
||||
"Danger": "Note: It is currently unknown how this channel works, but it is involved somehow in the Wii to vWii transfer process. It is recommended to not modify it. Also note that this is separate from the normal, non-hidden channel \"Wii System Transfer Tool\" that works alongside \"Wii U Transfer Tool\" on a source Wii."
|
||||
}
|
||||
],
|
||||
@ -120,8 +111,7 @@
|
||||
"Europe/PAL": [516],
|
||||
"Japan": [516]
|
||||
},
|
||||
"Ticket": false,
|
||||
"Archive Name": "Wii-System-Transfer-Tool-WNP"
|
||||
"Ticket": false
|
||||
}
|
||||
],
|
||||
"IOS": [
|
||||
@ -131,8 +121,7 @@
|
||||
"Versions": {
|
||||
"World": [1290]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS9"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 12",
|
||||
@ -140,8 +129,7 @@
|
||||
"Versions": {
|
||||
"World": [782]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS12"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 13",
|
||||
@ -149,8 +137,7 @@
|
||||
"Versions": {
|
||||
"World": [1288]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS13"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 14",
|
||||
@ -158,8 +145,7 @@
|
||||
"Versions": {
|
||||
"World": [1288]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS14"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 15",
|
||||
@ -167,8 +153,7 @@
|
||||
"Versions": {
|
||||
"World": [1288]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS15"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 17",
|
||||
@ -176,8 +161,7 @@
|
||||
"Versions": {
|
||||
"World": [1288]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS17"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 21",
|
||||
@ -185,8 +169,7 @@
|
||||
"Versions": {
|
||||
"World": [1295]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS21"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 22",
|
||||
@ -194,8 +177,7 @@
|
||||
"Versions": {
|
||||
"World": [1550]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS22"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 28",
|
||||
@ -203,8 +185,7 @@
|
||||
"Versions": {
|
||||
"World": [2063]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS28"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 31",
|
||||
@ -212,8 +193,7 @@
|
||||
"Versions": {
|
||||
"World": [3864]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS31"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 33",
|
||||
@ -221,8 +201,7 @@
|
||||
"Versions": {
|
||||
"World": [3864]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS33"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 34",
|
||||
@ -230,8 +209,7 @@
|
||||
"Versions": {
|
||||
"World": [3864]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS34"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 35",
|
||||
@ -239,8 +217,7 @@
|
||||
"Versions": {
|
||||
"World": [3864]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS35"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 36",
|
||||
@ -248,8 +225,7 @@
|
||||
"Versions": {
|
||||
"World": [3864]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS36"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 37",
|
||||
@ -257,8 +233,7 @@
|
||||
"Versions": {
|
||||
"World": [5919]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS37"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 38",
|
||||
@ -266,8 +241,7 @@
|
||||
"Versions": {
|
||||
"World": [4380]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS38"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 41",
|
||||
@ -275,8 +249,7 @@
|
||||
"Versions": {
|
||||
"World": [3863]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS41"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 43",
|
||||
@ -284,8 +257,7 @@
|
||||
"Versions": {
|
||||
"World": [3863]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS43"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 45",
|
||||
@ -293,8 +265,7 @@
|
||||
"Versions": {
|
||||
"World": [3863]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS45"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 46",
|
||||
@ -302,8 +273,7 @@
|
||||
"Versions": {
|
||||
"World": [3863]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS46"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 48",
|
||||
@ -311,8 +281,7 @@
|
||||
"Versions": {
|
||||
"World": [4380]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS48"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 53",
|
||||
@ -320,8 +289,7 @@
|
||||
"Versions": {
|
||||
"World": [5919]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS53"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 55",
|
||||
@ -329,8 +297,7 @@
|
||||
"Versions": {
|
||||
"World": [5919]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS55"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 56",
|
||||
@ -338,8 +305,7 @@
|
||||
"Versions": {
|
||||
"World": [5918]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS56"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 57",
|
||||
@ -347,8 +313,7 @@
|
||||
"Versions": {
|
||||
"World": [6175]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS57"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 58",
|
||||
@ -356,8 +321,7 @@
|
||||
"Versions": {
|
||||
"World": [6432]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS58"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 59",
|
||||
@ -365,8 +329,7 @@
|
||||
"Versions": {
|
||||
"World": [7201, 8737, 9249]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS59"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 62",
|
||||
@ -374,8 +337,7 @@
|
||||
"Versions": {
|
||||
"World": [6430, 6686, 6942]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS62"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 80",
|
||||
@ -383,8 +345,7 @@
|
||||
"Versions": {
|
||||
"World": [7200]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS80"
|
||||
"Ticket": true
|
||||
}
|
||||
]
|
||||
}
|
@ -7,7 +7,6 @@
|
||||
"World": [2, 4, 5, 6]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "BC",
|
||||
"Danger": "BC is required for the Wii's backwards compatibility with the GameCube. GameCube games will not run properly if BC is damaged or missing."
|
||||
},
|
||||
{
|
||||
@ -17,7 +16,6 @@
|
||||
"World": [4]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "boot2",
|
||||
"Danger": "boot2 is a critical part of the Wii's boot process, and should not be modified. Most updated Wiis will already be running boot2v4, which is the only version of boot2 available on the NUS."
|
||||
},
|
||||
{
|
||||
@ -27,7 +25,6 @@
|
||||
"World": [4, 5, 8, 9, 10]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "MIOS",
|
||||
"Danger": "MIOS is required for the Wii's backwards compatibility with the GameCube. GameCube games will not run properly if MIOS is damaged or missing."
|
||||
},
|
||||
{
|
||||
@ -80,7 +77,6 @@
|
||||
"518": "4.3K"
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "System-Menu",
|
||||
"Danger": "The System Menu is a critical part of the Wii's operation, and should not be modified without proper brick prevention in place. You should have BootMii installed as boot2 if possible, and if not, Priiloader installed before making changes to the System Menu."
|
||||
}
|
||||
],
|
||||
@ -94,8 +90,7 @@
|
||||
"Europe/PAL": [6, 7],
|
||||
"Japan": [6, 7]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "Forecast-Channel"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "Mii Channel",
|
||||
@ -103,8 +98,7 @@
|
||||
"Versions": {
|
||||
"World": [2, 3, 4, 5, 6]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "Mii-Channel"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "News Channel",
|
||||
@ -115,8 +109,7 @@
|
||||
"Europe/PAL": [6, 7],
|
||||
"Japan": [6, 7]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "News-Channel"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "Photo Channel",
|
||||
@ -124,8 +117,7 @@
|
||||
"Versions": {
|
||||
"World": [1, 2]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "Photo-Channel"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "Photo Channel 1.1",
|
||||
@ -134,8 +126,7 @@
|
||||
"World": [1, 2, 3],
|
||||
"Korea": [3]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "Photo-Channel-1.1"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "Shopping Channel",
|
||||
@ -144,8 +135,7 @@
|
||||
"World": [3, 4, 5, 6, 7, 8, 10, 13, 16, 17, 18, 19, 20, 21],
|
||||
"Korea": [3, 4, 5, 6, 7, 8, 10, 13, 14, 16, 17, 18, 19, 20, 21]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "Shopping-Channel"
|
||||
"Ticket": true
|
||||
}
|
||||
],
|
||||
"Hidden Channels": [
|
||||
@ -159,7 +149,6 @@
|
||||
"Korea": [1, 2, 3]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "EULA",
|
||||
"Danger": "\"EULA\" is a hidden channel used to display the End User License Agreement that must be accepted to connect to WiiConnect24. Online services may not work correctly if this channel is damaged or missing."
|
||||
},
|
||||
{
|
||||
@ -172,7 +161,6 @@
|
||||
"Korea": [2]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "Region-Select",
|
||||
"Danger": "\"Region Select\" is a hidden channel used during the Wii's initial setup. If this title is damaged or missing, you will not be able to set up your Wii again after a factory reset. This title will need to be reinstalled to fix your console."
|
||||
},
|
||||
{
|
||||
@ -181,8 +169,7 @@
|
||||
"Versions": {
|
||||
"Japan": [0, 1, 2]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "Set-Personal-Data-Channel"
|
||||
"Ticket": true
|
||||
}
|
||||
],
|
||||
"Downloadable Channels": [
|
||||
@ -192,8 +179,7 @@
|
||||
"Versions": {
|
||||
"USA/NTSC": [1280]
|
||||
},
|
||||
"Ticket": false,
|
||||
"Archive Name": "Amazon-Instant-Video"
|
||||
"Ticket": false
|
||||
},
|
||||
{
|
||||
"Name": "BBC iPlayer Channel",
|
||||
@ -201,8 +187,7 @@
|
||||
"Versions": {
|
||||
"Europe/PAL": [768]
|
||||
},
|
||||
"Ticket": false,
|
||||
"Archive Name": "BBC-iPlayer-Channel"
|
||||
"Ticket": false
|
||||
},
|
||||
{
|
||||
"Name": "Check Mii Out Channel",
|
||||
@ -212,8 +197,7 @@
|
||||
"Europe/PAL": [1, 3, 512],
|
||||
"Japan": [1, 3, 512]
|
||||
},
|
||||
"Ticket": false,
|
||||
"Archive Name": "Check-Mii-Out-Channel"
|
||||
"Ticket": false
|
||||
},
|
||||
{
|
||||
"Name": "Demae Channel",
|
||||
@ -221,8 +205,7 @@
|
||||
"Versions": {
|
||||
"Japan": [512]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "Demae-Channel"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "Digicam Print Channel",
|
||||
@ -230,8 +213,7 @@
|
||||
"Versions": {
|
||||
"Japan": [1024]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "Digicam-Print-Channel"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "Everybody Votes Channel",
|
||||
@ -241,8 +223,7 @@
|
||||
"Europe/PAL": [1, 2, 3, 512],
|
||||
"Japan": [1, 2, 3, 512]
|
||||
},
|
||||
"Ticket": false,
|
||||
"Archive Name": "Everybody-Votes-Channel"
|
||||
"Ticket": false
|
||||
},
|
||||
{
|
||||
"Name": "Hulu Plus",
|
||||
@ -251,8 +232,7 @@
|
||||
"USA/NTSC": [1283],
|
||||
"Japan": [1024]
|
||||
},
|
||||
"Ticket": false,
|
||||
"Archive Name": "Hulu-Plus"
|
||||
"Ticket": false
|
||||
},
|
||||
{
|
||||
"Name": "Internet Channel",
|
||||
@ -262,8 +242,7 @@
|
||||
"Europe/PAL": [1, 3, 257, 512, 1024],
|
||||
"Japan": [1, 3, 257, 512, 1024]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "Internet-Channel"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "Jam With The Band Live Channel",
|
||||
@ -272,8 +251,7 @@
|
||||
"Europe/PAL": [2],
|
||||
"Japan": [2]
|
||||
},
|
||||
"Ticket": false,
|
||||
"Archive Name": "Jam-With-The-Band-Live-Channel"
|
||||
"Ticket": false
|
||||
},
|
||||
{
|
||||
"Name": "Kirby TV Channel",
|
||||
@ -281,8 +259,7 @@
|
||||
"Versions": {
|
||||
"Europe/PAL": [257]
|
||||
},
|
||||
"Ticket": false,
|
||||
"Archive Name": "Kirby-TV-Channel"
|
||||
"Ticket": false
|
||||
},
|
||||
{
|
||||
"Name": "Metroid Prime 3 Preview",
|
||||
@ -291,8 +268,7 @@
|
||||
"Europe/PAL": [1, 2],
|
||||
"Japan": [1, 2]
|
||||
},
|
||||
"Ticket": false,
|
||||
"Archive Name": "Metroid-Prime-3-Preview"
|
||||
"Ticket": false
|
||||
},
|
||||
{
|
||||
"Name": "Netflix Channel",
|
||||
@ -301,8 +277,7 @@
|
||||
"USA/NTSC": [2049],
|
||||
"Europe/PAL": [2049]
|
||||
},
|
||||
"Ticket": false,
|
||||
"Archive Name": "Netflix-Channel"
|
||||
"Ticket": false
|
||||
},
|
||||
{
|
||||
"Name": "Nintendo Channel",
|
||||
@ -312,8 +287,7 @@
|
||||
"Europe/PAL": [1792],
|
||||
"Japan": [1792]
|
||||
},
|
||||
"Ticket": false,
|
||||
"Archive Name": "Nintendo-Channel"
|
||||
"Ticket": false
|
||||
},
|
||||
{
|
||||
"Name": "Photo Channel 1.0 Restore Program",
|
||||
@ -321,8 +295,7 @@
|
||||
"Versions": {
|
||||
"Japan": [0]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "Photo-Channel-1.0-Restore-Program"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "The Legend of Zelda: Skyward Sword Save Data Update Channel",
|
||||
@ -332,8 +305,7 @@
|
||||
"Europe/PAL": [0],
|
||||
"Japan": [1]
|
||||
},
|
||||
"Ticket": false,
|
||||
"Archive Name": "Skyward-Sword-Save-Data-Update-Channel"
|
||||
"Ticket": false
|
||||
},
|
||||
{
|
||||
"Name": "Today and Tomorrow Channel",
|
||||
@ -342,17 +314,15 @@
|
||||
"Europe/PAL": [1],
|
||||
"Japan": [1]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "Today-and-Tomorrow-Channel"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "TV Friend Channel / G-Guide for Wii",
|
||||
"Name": "TV Friend Channel/G-Guide for Wii",
|
||||
"TID": "0001000148424EXX",
|
||||
"Versions": {
|
||||
"Japan": [1]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "TV-Friend-Channel"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "USB Memory Repair Program",
|
||||
@ -360,17 +330,15 @@
|
||||
"Versions": {
|
||||
"Japan": [12]
|
||||
},
|
||||
"Ticket": false,
|
||||
"Archive Name": "USB-Repair-Program"
|
||||
"Ticket": false
|
||||
},
|
||||
{
|
||||
"Name": "Wii no Ma Channel",
|
||||
"Name": "Wii Room",
|
||||
"TID": "00010001484349XX",
|
||||
"Versions": {
|
||||
"Japan": [0]
|
||||
"Japan": [0, 512, 770, 1025]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "Wii-no-Ma-Channel"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "Wii Speak Channel",
|
||||
@ -381,8 +349,7 @@
|
||||
"Japan": [1, 256, 512],
|
||||
"Korea": [512]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "Wii-Speak-Channel"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "Wii U Transfer Tool",
|
||||
@ -392,8 +359,7 @@
|
||||
"Europe/PAL": [516],
|
||||
"Japan": [516]
|
||||
},
|
||||
"Ticket": false,
|
||||
"Archive Name": "Wii-U-Transfer-Tool"
|
||||
"Ticket": false
|
||||
},
|
||||
{
|
||||
"Name": "YouTube",
|
||||
@ -402,8 +368,7 @@
|
||||
"USA/NTSC": [1536],
|
||||
"Japan": [768]
|
||||
},
|
||||
"Ticket": false,
|
||||
"Archive Name": "YouTube"
|
||||
"Ticket": false
|
||||
}
|
||||
],
|
||||
"IOS": [
|
||||
@ -414,7 +379,6 @@
|
||||
"World": [65280]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS4",
|
||||
"Danger": "This IOS is a stub, and no longer offers any functionality. It cannot be used to run any code."
|
||||
},
|
||||
{
|
||||
@ -423,8 +387,7 @@
|
||||
"Versions": {
|
||||
"World": [520, 521, 778, 1034]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS9"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 10",
|
||||
@ -432,8 +395,7 @@
|
||||
"Versions": {
|
||||
"World": [768]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS10"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 11",
|
||||
@ -442,7 +404,6 @@
|
||||
"World": [10, 256]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS11",
|
||||
"Danger": "Version 256 of IOS 11 is a stub, and no longer offers any functionality. It cannot be used to run any code. If you're using System Menu 2.0-2.1, DO NOT install version 256, as the System Menu relies on IOS 11."
|
||||
},
|
||||
{
|
||||
@ -451,8 +412,7 @@
|
||||
"Versions": {
|
||||
"World": [6, 11, 12, 269, 525, 526]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS12"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 13",
|
||||
@ -460,8 +420,7 @@
|
||||
"Versions": {
|
||||
"World": [10, 15, 16, 273, 1031, 1032]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS13"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 14",
|
||||
@ -469,8 +428,7 @@
|
||||
"Versions": {
|
||||
"World": [262, 263, 520, 1031, 1032]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS14"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 15",
|
||||
@ -478,8 +436,7 @@
|
||||
"Versions": {
|
||||
"World": [257, 258, 259, 260, 265, 266, 523, 1031, 1032]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS15"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 16",
|
||||
@ -488,7 +445,6 @@
|
||||
"World": [512]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS16",
|
||||
"Danger": "This IOS is a stub, and no longer offers any functionality. It cannot be used to run any code."
|
||||
},
|
||||
{
|
||||
@ -497,8 +453,7 @@
|
||||
"Versions": {
|
||||
"World": [512, 517, 518, 775, 1031, 1032]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS17"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 20",
|
||||
@ -507,7 +462,6 @@
|
||||
"World": [12, 256]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS20",
|
||||
"Danger": "Version 256 of IOS 20 is a stub, and no longer offers any functionality. It cannot be used to run any code. If you're using System Menu 2.2, DO NOT install version 256, as the System Menu relies on IOS 20."
|
||||
},
|
||||
{
|
||||
@ -516,8 +470,7 @@
|
||||
"Versions": {
|
||||
"World": [514, 515, 516, 517, 522, 525, 782, 1038, 1039]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS21"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 22",
|
||||
@ -525,8 +478,7 @@
|
||||
"Versions": {
|
||||
"World": [777, 780, 1037, 1293, 1294]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS22"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 28",
|
||||
@ -534,8 +486,7 @@
|
||||
"Versions": {
|
||||
"World": [1292, 1293, 1550, 1806, 1807]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS28"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 30",
|
||||
@ -544,7 +495,6 @@
|
||||
"World": [1037, 1039, 1040, 2576, 2816]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS30",
|
||||
"Danger": "Version 2816 of IOS 30 is a stub, and no longer offers any functionality. It cannot be used to run any code. If you're using System Menu 3.0-3.3, DO NOT install version 2816, as the System Menu relies on IOS 30."
|
||||
},
|
||||
{
|
||||
@ -553,8 +503,7 @@
|
||||
"Versions": {
|
||||
"World": [1037, 1039, 1040, 2576, 3088, 3092, 3349, 3607, 3608]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS31"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 33",
|
||||
@ -562,8 +511,7 @@
|
||||
"Versions": {
|
||||
"World": [1040, 2832, 2834, 3091, 3607, 3608]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS33"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 34",
|
||||
@ -571,8 +519,7 @@
|
||||
"Versions": {
|
||||
"World": [1039, 3087, 3091, 3348, 3607, 3608]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS34"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 35",
|
||||
@ -580,8 +527,7 @@
|
||||
"Versions": {
|
||||
"World": [1040, 3088, 3092, 3349, 3607, 3608]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS35"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 36",
|
||||
@ -589,8 +535,7 @@
|
||||
"Versions": {
|
||||
"World": [1042, 3090, 3094, 3351, 3607, 3608]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS36"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 37",
|
||||
@ -598,8 +543,7 @@
|
||||
"Versions": {
|
||||
"World": [2070, 3609, 3612, 3869, 5662, 5663]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS37"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 38",
|
||||
@ -607,8 +551,7 @@
|
||||
"Versions": {
|
||||
"World": [3610, 3867, 4123, 4124]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS38"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 40",
|
||||
@ -617,7 +560,6 @@
|
||||
"World": [3072]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS40",
|
||||
"Danger": "Version 3072 of IOS 40 is a stub, and no longer offers any functionality. It cannot be used to run any code. If you're using System Menu 3.3K, DO NOT install version 3072, as the System Menu relies on IOS 40."
|
||||
},
|
||||
{
|
||||
@ -626,8 +568,7 @@
|
||||
"Versions": {
|
||||
"World": [2835, 3091, 3348, 3606, 3607]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS41"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 43",
|
||||
@ -635,8 +576,7 @@
|
||||
"Versions": {
|
||||
"World": [2835, 3091, 3348, 3606, 3607]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS43"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 45",
|
||||
@ -644,8 +584,7 @@
|
||||
"Versions": {
|
||||
"World": [2835, 3091, 3348, 3606, 3607]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS45"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 46",
|
||||
@ -653,8 +592,7 @@
|
||||
"Versions": {
|
||||
"World": [2837, 3093, 3350, 3606, 3607]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS46"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 48",
|
||||
@ -662,8 +600,7 @@
|
||||
"Versions": {
|
||||
"World": [4123, 4124]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS48"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 50",
|
||||
@ -672,7 +609,6 @@
|
||||
"World": [4889, 5120]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS50",
|
||||
"Danger": "Version 5120 of IOS 50 is a stub, and no longer offers any functionality. It cannot be used to run any code. If you're using System Menu 3.3K, DO NOT install version 5120, as the System Menu relies on IOS 50."
|
||||
},
|
||||
{
|
||||
@ -682,7 +618,6 @@
|
||||
"World": [4633, 4864]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS51",
|
||||
"Danger": "Version 4864 of IOS 51 is a stub, and no longer offers any functionality. It cannot be used to run any code."
|
||||
},
|
||||
{
|
||||
@ -692,7 +627,6 @@
|
||||
"World": [5661, 5888]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS52",
|
||||
"Danger": "Version 5888 of IOS 50 is a stub, and no longer offers any functionality. It cannot be used to run any code. If you're using System Menu 3.5, DO NOT install version 5888, as the System Menu relies on IOS 50."
|
||||
},
|
||||
{
|
||||
@ -701,8 +635,7 @@
|
||||
"Versions": {
|
||||
"World": [4113, 5149, 5406, 5662, 5663]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS53"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 55",
|
||||
@ -710,8 +643,7 @@
|
||||
"Versions": {
|
||||
"World": [4633, 5149, 5406, 5662, 5663]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS55"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 56",
|
||||
@ -719,8 +651,7 @@
|
||||
"Versions": {
|
||||
"World": [4890, 5405, 5661, 5662]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS56"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 57",
|
||||
@ -728,8 +659,7 @@
|
||||
"Versions": {
|
||||
"World": [5404, 5661, 5918, 5919]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS57"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 58",
|
||||
@ -737,8 +667,7 @@
|
||||
"Versions": {
|
||||
"World": [6175, 6176]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS58"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 59",
|
||||
@ -746,8 +675,7 @@
|
||||
"Versions": {
|
||||
"World": [8737, 9249]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS59"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 60",
|
||||
@ -756,7 +684,6 @@
|
||||
"World": [6174, 6400]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS60",
|
||||
"Danger": "Version 6400 of IOS 60 is a stub, and no longer offers any functionality. It cannot be used to run any code. If you're using System Menu 4.0 or 4.1, DO NOT install version 6400, as the System Menu relies on IOS 60."
|
||||
},
|
||||
{
|
||||
@ -765,8 +692,7 @@
|
||||
"Versions": {
|
||||
"World": [4890, 5405, 5661, 5662]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS61"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 62",
|
||||
@ -774,8 +700,7 @@
|
||||
"Versions": {
|
||||
"World": [6430]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS62"
|
||||
"Ticket": true
|
||||
},
|
||||
{
|
||||
"Name": "IOS 70",
|
||||
@ -784,7 +709,6 @@
|
||||
"World": [6687,6912]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS70",
|
||||
"Danger": "Version 6912 of IOS 70 is a stub, and no longer offers any functionality. It cannot be used to run any code. If you're using System Menu 4.2, DO NOT install version 6912, as the System Menu relies on IOS 70."
|
||||
},
|
||||
{
|
||||
@ -794,7 +718,6 @@
|
||||
"World": [6943, 6944]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS80",
|
||||
"Danger": "IOS 80 is the IOS that the final System Menu, 4.3, relies on, and is required to load the System Menu. Do not modify or remove this IOS unless you have BootMii installed as boot2 to recover from a brick."
|
||||
},
|
||||
{
|
||||
@ -804,7 +727,6 @@
|
||||
"World": [65280]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS222",
|
||||
"Danger": "This IOS is a stub, and offers no functionality. It cannot be used to run any code."
|
||||
},
|
||||
{
|
||||
@ -814,7 +736,6 @@
|
||||
"World": [65280]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS223",
|
||||
"Danger": "This IOS is a stub, and offers no functionality. It cannot be used to run any code."
|
||||
},
|
||||
{
|
||||
@ -824,7 +745,6 @@
|
||||
"World": [65280]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS249",
|
||||
"Danger": "This IOS is a stub, and offers no functionality. It cannot be used to run any code."
|
||||
},
|
||||
{
|
||||
@ -834,7 +754,6 @@
|
||||
"World": [65280]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS250",
|
||||
"Danger": "This IOS is a stub, and offers no functionality. It cannot be used to run any code."
|
||||
},
|
||||
{
|
||||
@ -844,7 +763,6 @@
|
||||
"World": [2, 3, 260, 65280]
|
||||
},
|
||||
"Ticket": true,
|
||||
"Archive Name": "IOS254",
|
||||
"Danger": "This IOS is a stub, and offers no functionality. It cannot be used to run any code."
|
||||
}
|
||||
],
|
||||
|
@ -13,7 +13,6 @@ class TitleData:
|
||||
# Class to store all data for a Title.
|
||||
tid: str
|
||||
name: str
|
||||
archive_name: str
|
||||
version: str
|
||||
ticket: bool
|
||||
region: str
|
||||
|
@ -60,10 +60,8 @@ class NUSGetTreeModel(QAbstractItemModel):
|
||||
tid_item.add_child(region_item)
|
||||
for version in version_list:
|
||||
danger = entry.get("Danger") if entry.get("Danger") is not None else ""
|
||||
archive_name = (entry.get("Archive Name") if entry.get("Archive Name") is not None
|
||||
else entry.get("Name").replace(" ", "-"))
|
||||
metadata = TitleData(entry.get("TID"), entry.get("Name"), archive_name,
|
||||
version, entry.get("Ticket"), region, key, danger)
|
||||
metadata = TitleData(entry.get("TID"), entry.get("Name"), version,
|
||||
entry.get("Ticket"), region, key, danger)
|
||||
public_versions = entry.get("Public Versions")
|
||||
if public_versions is not None:
|
||||
try:
|
||||
|
Loading…
x
Reference in New Issue
Block a user