From 78c2fbce22e67a297b4f1512eadd1c780cd23d5a Mon Sep 17 00:00:00 2001 From: wiidev Date: Thu, 9 Jul 2020 02:11:30 +0100 Subject: [PATCH] Update meta.xml information --- HBC/meta.xml | 56 --------------------- source/prompts/PromptWindows.cpp | 6 +-- source/svnrev.c | 6 --- svnrev.sh | 85 +++++++++++++++----------------- 4 files changed, 43 insertions(+), 110 deletions(-) delete mode 100644 HBC/meta.xml delete mode 100644 source/svnrev.c diff --git a/HBC/meta.xml b/HBC/meta.xml deleted file mode 100644 index 6e4cb498..00000000 --- a/HBC/meta.xml +++ /dev/null @@ -1,56 +0,0 @@ - - - USB Loader GX - USB Loader GX Team - 3.0 r1272 - 20190615140527 - - - 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. -The interactive GUI is completely controllable with WiiMote, Classic Controller or GC Controller. -Features are automatic widescreen detection, coverdownload, parental control, theme support and many more. - -Credits: -Coding: Cyan, Dimok, nIxx, giantpune, ardi, Hungyip84, DrayX7, Lustar, r-win, WiiShizzza -Artworks: cyrex, NeoRame -Validation: Cyan and many others -Issue management: Cyan -WiiTDB / Hosting covers: Lustar -USBLoader sources: Waninkoko, Kwiirk, Hermes -cIOS maintenance: davebaol, xabby666, XFlak and Rodries -Languages files updates: Kinyo and translaters -Hosting themes: Deak Phreak - -Libwiigui: Tantric -Libogc/Devkit: Shagkur and Wintermute -FreeTypeGX: Armin Tamzarian. - -Links: -USB Loader GX Project Page -https://sourceforge.net/projects/usbloadergx/ -Support Site: -http://gbatemp.net/index.php?showtopic=149922 -Help Website: -http://usbloadergx.koureio.net/ -WiiTDB Site: -http://wiitdb.com -Themes Site: -http://wii.spiffy360.com -Languages Translaters Page: -http://gbatemp.net/index.php?showtopic=155252 - -Libwiigui Website: -http://wiibrew.org/wiki/Libwiigui/ -FreeTypeGX Project Page: -http://code.google.com/p/freetypegx/ -Gettext Official Page: -http://www.gnu.org/software/gettext/gettext.html - - diff --git a/source/prompts/PromptWindows.cpp b/source/prompts/PromptWindows.cpp index 70c862b2..c3c87643 100644 --- a/source/prompts/PromptWindows.cpp +++ b/source/prompts/PromptWindows.cpp @@ -407,14 +407,14 @@ void WindowCredits() currentTxt->SetFont(creditsFont, creditsFontSize); txt.push_back(currentTxt); - currentTxt = new GuiText("Cyan / Dimok / nIxx / giantpune / ardi"); + currentTxt = new GuiText("Cyan / Dimok / nIxx / giantpune / ardi / hungyip84"); currentTxt->SetAlignment(ALIGN_LEFT, ALIGN_TOP); currentTxt->SetPosition(160, y); currentTxt->SetFont(creditsFont, creditsFontSize); txt.push_back(currentTxt); y += 20; - currentTxt = new GuiText("hungyip84 / DrayX7 / lustar / r-win"); + currentTxt = new GuiText("DrayX7 / lustar / r-win / WiiShizzza / blackb0x"); currentTxt->SetAlignment(ALIGN_LEFT, ALIGN_TOP); currentTxt->SetPosition(160, y); currentTxt->SetFont(creditsFont, creditsFontSize); @@ -479,7 +479,7 @@ void WindowCredits() txt.push_back(currentTxt); y += 20; - sprintf(text, "Deak Phreak %s", tr( "for hosting the themes" )); + sprintf(text, "Larsenv & Wingysam %s", tr( "for hosting the themes" )); currentTxt = new GuiText(text); currentTxt->SetAlignment(ALIGN_LEFT, ALIGN_TOP); currentTxt->SetPosition(160, y); diff --git a/source/svnrev.c b/source/svnrev.c deleted file mode 100644 index 0b656497..00000000 --- a/source/svnrev.c +++ /dev/null @@ -1,6 +0,0 @@ -#define SVN_REV "1272" - -const char *GetRev() -{ - return SVN_REV; -} diff --git a/svnrev.sh b/svnrev.sh index d2b858a4..eb6ef493 100644 --- a/svnrev.sh +++ b/svnrev.sh @@ -3,7 +3,7 @@ rev_new_raw=$(svnversion -n . 2>/dev/null | tr '\n' ' ' | tr -d '\r') [ -n "$rev_new_raw" ] || rev_new_raw=$(SubWCRev . 2>/dev/null | tr '\n' ' ' | tr -d '\r') -[ -z "$rev_new_raw" ] && rev_new_raw=$(cat version.txt) +[ -z "$rev_new_raw" ] && rev_new_raw=$(cat version.txt) && skip_ver_bump="true" rev_new_raw=$(echo $rev_new_raw | sed 's/[^0-9]*\([0-9]*\)\(.*\)/\1 \2/') rev_new=0 @@ -29,73 +29,68 @@ const char *GetRev() } EOF - if [ -n "$rev_new" ]; then - echo "Changed Rev $rev_old to $rev_new" >&2 + if [ -z "$rev_old" ]; then + echo "Created svnrev.c and set the revision to $rev_new" >&2 else - echo "svnrev.c created" >&2 + echo "Changed the revision from $rev_old to $rev_new" >&2 fi - echo >&2 fi -rev_new=`expr $rev_new + 1` +[ "$skip_ver_bump" != "true" ] && rev_new=`expr $rev_new + 1` rev_date=`date -u +%Y%m%d%H%M%S` cat < ./HBC/meta.xml - - USB Loader GX - USB Loader GX Team - 3.0 r$rev_new - $rev_date - - - 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. + + USB Loader GX + USB Loader GX Team + 3.0 r$rev_new + $rev_date + + + 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. The interactive GUI is completely controllable with WiiMote, Classic Controller or GC Controller. Features are automatic widescreen detection, coverdownload, parental control, theme support and many more. Credits: -Coding: Cyan, Dimok, nIxx, giantpune, ardi, Hungyip84, DrayX7, Lustar, r-win, WiiShizzza +Coding: Cyan, Dimok, blackb0x, nIxx, giantpune, ardi, Hungyip84, DrayX7, Lustar, r-win, WiiShizzza Artworks: cyrex, NeoRame Validation: Cyan and many others Issue management: Cyan -WiiTDB / Hosting covers: Lustar +GameTDB / Hosting covers: Lustar USBLoader sources: Waninkoko, Kwiirk, Hermes cIOS maintenance: davebaol, xabby666, XFlak and Rodries Languages files updates: Kinyo and translaters -Hosting themes: Deak Phreak +Themes website: Larsenv, Wingysam Libwiigui: Tantric Libogc/Devkit: Shagkur and Wintermute FreeTypeGX: Armin Tamzarian. -Links: -USB Loader GX Project Page -https://sourceforge.net/projects/usbloadergx/ -Support Site: -http://gbatemp.net/index.php?showtopic=149922 -Help Website: -http://usbloadergx.koureio.net/ -WiiTDB Site: -http://wiitdb.com -Themes Site: -http://wii.spiffy360.com -Languages Translaters Page: -http://gbatemp.net/index.php?showtopic=155252 +USB Loader GX (enhanced): +https://github.com/wiidev/usbloadergx +USB Loader GX (official): +https://sourceforge.net/projects/usbloadergx +Support (official): +https://gbatemp.net/threads/149922 +GameTDB: +https://www.gametdb.com +Themes: +https://theme.rc24.xyz -Libwiigui Website: -http://wiibrew.org/wiki/Libwiigui/ -FreeTypeGX Project Page: -http://code.google.com/p/freetypegx/ -Gettext Official Page: -http://www.gnu.org/software/gettext/gettext.html - - +Libwiigui: +https://wiibrew.org/wiki/Libwiigui +FreeTypeGX: +https://github.com/ArminTamzarian/freetypegx +Gettext: +https://www.gnu.org/software/gettext + EOF