Hacking @WiiUBrew Title Database Editors

BullyWiiPlaza

Nintendo Hacking <3
OP
Member
Joined
Aug 2, 2014
Messages
1,932
Trophies
0
XP
2,477
Country
Germany
Please don't shift the order of tables in the titles database every time for unrecognizable reasons because it breaks JGecko U's title downloader causing the wrong table to be downloaded. This is the 2nd time I needed to update the tool just for the table index because of user complaints and it gets a bit old because it's not my fault that it breaks.

Below is the current selector I'm using:
Code:
String titleDatabaseURL = "http://wiiubrew.org/wiki/Title_database";
Document titleDatabaseDocument = Jsoup.connect(titleDatabaseURL).get();
Elements titlesTable = titleDatabaseDocument.select("#mw-content-text > table:nth-child(20) > tbody");
Before it was this:
Code:
Elements titlesTable = titleDatabaseDocument.select("#mw-content-text > table:nth-child(14) > tbody");
Adding one game (The Legend of Zelda™: Breath of the Wild) shouldn't cause this.

Thanks for respecting the dependency on the site's layout. Alternatively suggest a selector which is more "robust".
 
Last edited by BullyWiiPlaza,

PandaOnSmack

Well-Known Member
Member
Joined
Nov 3, 2015
Messages
349
Trophies
0
Age
43
XP
315
Country
Please don't shift the order of tables in the titles database every time for unrecognizable reasons because it breaks JGecko U's title downloader causing the wrong table to be downloaded. This is the 2nd time I needed to update the tool just for the table index because of user complaints and it gets a bit old because it's not my fault that it breaks.

Below is the current selector I'm using:
Code:
String titleDatabaseURL = "http://wiiubrew.org/wiki/Title_database";
Document titleDatabaseDocument = Jsoup.connect(titleDatabaseURL).get();
Elements titlesTable = titleDatabaseDocument.select("#mw-content-text > table:nth-child(20) > tbody");
Before it was this:
Code:
Elements titlesTable = titleDatabaseDocument.select("#mw-content-text > table:nth-child(14) > tbody");
Adding one game (The Legend of Zelda™: Breath of the Wild) shouldn't cause this.

Thanks for respecting the dependency on the site's layout. Alternatively suggest a selector which is more "robust".

Why not save a local static copy now. No more games are going to be released right?
 

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
  • No one is chatting at the moment.
    NinStar @ NinStar: It will actually make it worse