mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-21 18:59:15 +01:00
Update meta.xml information
This commit is contained in:
parent
bf8b13807a
commit
78c2fbce22
56
HBC/meta.xml
56
HBC/meta.xml
@ -1,56 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
||||||
<app version="1">
|
|
||||||
<name> USB Loader GX</name>
|
|
||||||
<coder>USB Loader GX Team</coder>
|
|
||||||
<version>3.0 r1272</version>
|
|
||||||
<release_date>20190615140527</release_date>
|
|
||||||
<!-- // remove this line to enable arguments
|
|
||||||
<arguments>
|
|
||||||
<arg>--ios=250</arg>
|
|
||||||
<arg>--usbport=0</arg>
|
|
||||||
<arg>--mountusb=1</arg>
|
|
||||||
</arguments>
|
|
||||||
// remove this line to enable arguments -->
|
|
||||||
<ahb_access/>
|
|
||||||
<short_description>Loads games from USB-devices</short_description>
|
|
||||||
<long_description>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
|
|
||||||
</long_description>
|
|
||||||
</app>
|
|
@ -407,14 +407,14 @@ void WindowCredits()
|
|||||||
currentTxt->SetFont(creditsFont, creditsFontSize);
|
currentTxt->SetFont(creditsFont, creditsFontSize);
|
||||||
txt.push_back(currentTxt);
|
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->SetAlignment(ALIGN_LEFT, ALIGN_TOP);
|
||||||
currentTxt->SetPosition(160, y);
|
currentTxt->SetPosition(160, y);
|
||||||
currentTxt->SetFont(creditsFont, creditsFontSize);
|
currentTxt->SetFont(creditsFont, creditsFontSize);
|
||||||
txt.push_back(currentTxt);
|
txt.push_back(currentTxt);
|
||||||
y += 20;
|
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->SetAlignment(ALIGN_LEFT, ALIGN_TOP);
|
||||||
currentTxt->SetPosition(160, y);
|
currentTxt->SetPosition(160, y);
|
||||||
currentTxt->SetFont(creditsFont, creditsFontSize);
|
currentTxt->SetFont(creditsFont, creditsFontSize);
|
||||||
@ -479,7 +479,7 @@ void WindowCredits()
|
|||||||
txt.push_back(currentTxt);
|
txt.push_back(currentTxt);
|
||||||
y += 20;
|
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 = new GuiText(text);
|
||||||
currentTxt->SetAlignment(ALIGN_LEFT, ALIGN_TOP);
|
currentTxt->SetAlignment(ALIGN_LEFT, ALIGN_TOP);
|
||||||
currentTxt->SetPosition(160, y);
|
currentTxt->SetPosition(160, y);
|
||||||
|
@ -1,6 +0,0 @@
|
|||||||
#define SVN_REV "1272"
|
|
||||||
|
|
||||||
const char *GetRev()
|
|
||||||
{
|
|
||||||
return SVN_REV;
|
|
||||||
}
|
|
85
svnrev.sh
85
svnrev.sh
@ -3,7 +3,7 @@
|
|||||||
rev_new_raw=$(svnversion -n . 2>/dev/null | tr '\n' ' ' | tr -d '\r')
|
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')
|
[ -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_raw=$(echo $rev_new_raw | sed 's/[^0-9]*\([0-9]*\)\(.*\)/\1 \2/')
|
||||||
rev_new=0
|
rev_new=0
|
||||||
@ -29,73 +29,68 @@ const char *GetRev()
|
|||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
if [ -n "$rev_new" ]; then
|
if [ -z "$rev_old" ]; then
|
||||||
echo "Changed Rev $rev_old to $rev_new" >&2
|
echo "Created svnrev.c and set the revision to $rev_new" >&2
|
||||||
else
|
else
|
||||||
echo "svnrev.c created" >&2
|
echo "Changed the revision from $rev_old to $rev_new" >&2
|
||||||
fi
|
fi
|
||||||
echo >&2
|
|
||||||
fi
|
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`
|
rev_date=`date -u +%Y%m%d%H%M%S`
|
||||||
|
|
||||||
cat <<EOF > ./HBC/meta.xml
|
cat <<EOF > ./HBC/meta.xml
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||||
<app version="1">
|
<app version="1">
|
||||||
<name> USB Loader GX</name>
|
<name> USB Loader GX</name>
|
||||||
<coder>USB Loader GX Team</coder>
|
<coder>USB Loader GX Team</coder>
|
||||||
<version>3.0 r$rev_new</version>
|
<version>3.0 r$rev_new</version>
|
||||||
<release_date>$rev_date</release_date>
|
<release_date>$rev_date</release_date>
|
||||||
<!-- // remove this line to enable arguments
|
<!-- remove this line to enable arguments
|
||||||
<arguments>
|
<arguments>
|
||||||
<arg>--ios=250</arg>
|
<arg>--ios=250</arg>
|
||||||
<arg>--usbport=0</arg>
|
<arg>--usbport=0</arg>
|
||||||
<arg>--mountusb=1</arg>
|
<arg>--mountusb=1</arg>
|
||||||
</arguments>
|
</arguments>
|
||||||
// remove this line to enable arguments -->
|
remove this line to enable arguments -->
|
||||||
<ahb_access/>
|
<ahb_access/>
|
||||||
<short_description>Loads games from USB-devices</short_description>
|
<short_description>Loads games from USB-devices</short_description>
|
||||||
<long_description>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.
|
<long_description>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.
|
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.
|
Features are automatic widescreen detection, coverdownload, parental control, theme support and many more.
|
||||||
|
|
||||||
Credits:
|
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
|
Artworks: cyrex, NeoRame
|
||||||
Validation: Cyan and many others
|
Validation: Cyan and many others
|
||||||
Issue management: Cyan
|
Issue management: Cyan
|
||||||
WiiTDB / Hosting covers: Lustar
|
GameTDB / Hosting covers: Lustar
|
||||||
USBLoader sources: Waninkoko, Kwiirk, Hermes
|
USBLoader sources: Waninkoko, Kwiirk, Hermes
|
||||||
cIOS maintenance: davebaol, xabby666, XFlak and Rodries
|
cIOS maintenance: davebaol, xabby666, XFlak and Rodries
|
||||||
Languages files updates: Kinyo and translaters
|
Languages files updates: Kinyo and translaters
|
||||||
Hosting themes: Deak Phreak
|
Themes website: Larsenv, Wingysam
|
||||||
|
|
||||||
Libwiigui: Tantric
|
Libwiigui: Tantric
|
||||||
Libogc/Devkit: Shagkur and Wintermute
|
Libogc/Devkit: Shagkur and Wintermute
|
||||||
FreeTypeGX: Armin Tamzarian.
|
FreeTypeGX: Armin Tamzarian.
|
||||||
|
|
||||||
Links:
|
USB Loader GX (enhanced):
|
||||||
USB Loader GX Project Page
|
https://github.com/wiidev/usbloadergx
|
||||||
https://sourceforge.net/projects/usbloadergx/
|
USB Loader GX (official):
|
||||||
Support Site:
|
https://sourceforge.net/projects/usbloadergx
|
||||||
http://gbatemp.net/index.php?showtopic=149922
|
Support (official):
|
||||||
Help Website:
|
https://gbatemp.net/threads/149922
|
||||||
http://usbloadergx.koureio.net/
|
GameTDB:
|
||||||
WiiTDB Site:
|
https://www.gametdb.com
|
||||||
http://wiitdb.com
|
Themes:
|
||||||
Themes Site:
|
https://theme.rc24.xyz
|
||||||
http://wii.spiffy360.com
|
|
||||||
Languages Translaters Page:
|
|
||||||
http://gbatemp.net/index.php?showtopic=155252
|
|
||||||
|
|
||||||
Libwiigui Website:
|
Libwiigui:
|
||||||
http://wiibrew.org/wiki/Libwiigui/
|
https://wiibrew.org/wiki/Libwiigui
|
||||||
FreeTypeGX Project Page:
|
FreeTypeGX:
|
||||||
http://code.google.com/p/freetypegx/
|
https://github.com/ArminTamzarian/freetypegx
|
||||||
Gettext Official Page:
|
Gettext:
|
||||||
http://www.gnu.org/software/gettext/gettext.html
|
https://www.gnu.org/software/gettext</long_description>
|
||||||
</long_description>
|
</app>
|
||||||
</app>
|
|
||||||
EOF
|
EOF
|
||||||
|
Loading…
Reference in New Issue
Block a user