From f8ae27c2e26c5e1efd3c44db01c993be48398c1b Mon Sep 17 00:00:00 2001 From: dimok321 <15055714+dimok789@users.noreply.github.com> Date: Wed, 29 Jun 2011 20:45:40 +0000 Subject: [PATCH] USB Loader GX Release V2.2 New: - Added game categories and filter games list by categories (Can be imported from WiiTDB). - Wiinertag support. - Supporting arguments from meta.xml on boot (--ios=xxx and --usbport=x) (Requires Homebrew Channel 1.0.7+ or UNEO Forwarder v3.0). - New ehci modules by Rodries with better drive compatibility. - Added two new video modes to force progressive video mode, 'FORCE PAL480p' and 'FORCE NTSC480p'. - Added Sneek Video Patch mode. - Added new 'Inherit' setting for game settings named "Use global". If that option is set then the main loader setting is used. - Full d2x cIOS support with it's new features (Block IOS Reload, Return To, Sector Sizes > 512). - Support for sector sizes > 512B with FAT32/NTFS (Requires d2x v6+) - Real support for simultanious use of both USB ports without switching the 2nd drive temporary off. (Requires Hermes cIOS or Rodries MOD of the Hermes cIOS (recommended)) - Added two new settings menus - Added saving of game browser position when returning to USB Loader GX Changes: - Improved several GUI controls/navigations - Changed settings menu layout and sorted the items to their correct place (HDD menu, features menu) - Set games settings to use the global setting by default, set to "use global" to use the main loader settings. - Use TinyXML instead of MXML (better XML support) - Updated to new libs (libogc, libfat, libext2fs, libntfs) Fix: - "Return to" option now work for all games, even problematic games like Prince of Persia. (Requires d2x v4+) - Xflip setting fixed. - Fix the parental lock of Individual game settings (Thanks to NJ7) - Fix Theme downloader - Fixed reset of the loader when loading game with IOS reload and disabled WiiTDB titles - Fixed timeout timer on startup to count correctly. - Fixed reversed disc image download when Custom/Original option is selected - Fixed reload of game list after a game rename - Fixed horizontal text scrolling - Fixed booting games by arguments (headless id feature) - Fixed We Dare game boot (thx oggzee) R1099 Change Log: *Added IOS225 from Rodries cIOS Installer MOD to Hermes IOS types New Forwarder V3.0 Changes: *added support for ext partitions *added support for arguments from xml *clean up of source --- HBC/META.XML | 13 +++++++++++-- source/prompts/PromptWindows.cpp | 4 ++-- source/system/IosLoader.cpp | 2 +- source/usbloader/disc.c | 2 +- svnrev.sh | 11 ++++++++++- 5 files changed, 25 insertions(+), 7 deletions(-) diff --git a/HBC/META.XML b/HBC/META.XML index 579e1b03..01e29aa6 100644 --- a/HBC/META.XML +++ b/HBC/META.XML @@ -2,8 +2,14 @@ USB Loader GX USB Loader GX Team - 2.1 r1098 - 201106271217 + 2.2 r1099 + 201106272106 + // remove this line to enable arguments Loads games from USB-devices USB Loader GX is a libwiigui based USB iso loader with a wii-like GUI. You can install games to your HDDs and boot them with shorter loading times. @@ -13,9 +19,12 @@ Features are automatic widescreen detection, coverdownload, parental control, th Credits: Coding: Dimok, nIxx, giantpune, ardi, Hungyip84, DrayX7, Lustar, r-win, WiiShizzza Artworks: cyrex, NeoRame +Validation: Cyan and many others +Issue management: Cyan / Dimok WiiTDB / Hosting covers: Lustar Hosting updates files: CorneliousJD USBLoader sources: Waninkoko, Kwiirk, Hermes +cIOS maintenance: davebaol, xabby666, XFlak and Rodries Languages files updates: Kinyo and translaters Hosting themes: Deak Phreak diff --git a/source/prompts/PromptWindows.cpp b/source/prompts/PromptWindows.cpp index 6ae41086..4fe57648 100644 --- a/source/prompts/PromptWindows.cpp +++ b/source/prompts/PromptWindows.cpp @@ -237,9 +237,9 @@ void WindowCredits() char SvnRev[80]; #ifdef FULLCHANNEL - snprintf(SvnRev, sizeof(SvnRev), "Rev%sc IOS%u (Rev %u)", GetRev(), IOS_GetVersion(), IOS_GetRevision()); + snprintf(SvnRev, sizeof(SvnRev), "V2.2c IOS%u (Rev %u)", IOS_GetVersion(), IOS_GetRevision()); #else - snprintf(SvnRev, sizeof(SvnRev), "Rev%s IOS%u (Rev %u)", GetRev(), IOS_GetVersion(), IOS_GetRevision()); + snprintf(SvnRev, sizeof(SvnRev), "V2.2 IOS%u (Rev %u)", IOS_GetVersion(), IOS_GetRevision()); #endif char IosInfo[80] = ""; diff --git a/source/system/IosLoader.cpp b/source/system/IosLoader.cpp index 1186e05d..0bb4a3d8 100644 --- a/source/system/IosLoader.cpp +++ b/source/system/IosLoader.cpp @@ -32,7 +32,7 @@ static iosinfo_t *currentIOSInfo = NULL; */ bool IosLoader::IsHermesIOS(s32 ios) { - return (ios == 222 || ios == 223 || ios == 224 || ios == 202); + return (ios == 222 || ios == 223 || ios == 224 || ios == 225 || ios == 202); } /* diff --git a/source/usbloader/disc.c b/source/usbloader/disc.c index 7d170f82..3032b051 100644 --- a/source/usbloader/disc.c +++ b/source/usbloader/disc.c @@ -46,7 +46,7 @@ void Disc_SetLowMem(void) *(vu32 *) 0xCD00643C = 0x00000000; // 32Mhz on Bus int iosVer = IOS_GetVersion(); - if(iosVer != 222 && iosVer != 223 && iosVer != 224 && IOS_GetRevision() >= 18) + if(iosVer != 222 && iosVer != 223 && iosVer != 224 && iosVer != 225 && IOS_GetRevision() >= 18) *GameID_Address = 0x80000000; // Game ID Address /* Copy disc ID */ diff --git a/svnrev.sh b/svnrev.sh index caeb7f9e..6dcd149d 100644 --- a/svnrev.sh +++ b/svnrev.sh @@ -43,8 +43,14 @@ EOF USB Loader GX USB Loader GX Team - 2.1 r$rev_new + 2.2 r$rev_new $rev_date + // remove this line to enable arguments Loads games from USB-devices USB Loader GX is a libwiigui based USB iso loader with a wii-like GUI. You can install games to your HDDs and boot them with shorter loading times. @@ -54,9 +60,12 @@ Features are automatic widescreen detection, coverdownload, parental control, th Credits: Coding: Dimok, nIxx, giantpune, ardi, Hungyip84, DrayX7, Lustar, r-win, WiiShizzza Artworks: cyrex, NeoRame +Validation: Cyan and many others +Issue management: Cyan / Dimok WiiTDB / Hosting covers: Lustar Hosting updates files: CorneliousJD USBLoader sources: Waninkoko, Kwiirk, Hermes +cIOS maintenance: davebaol, xabby666, XFlak and Rodries Languages files updates: Kinyo and translaters Hosting themes: Deak Phreak