mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-05 02:55:07 +01:00
76df2b26b6
*add loading of wii games / nand channels / emu nand channels in all combinations into one list *add button on main view for quick choice between the combinations of the three *add "Real Nand" or "Emulated Nand" text on the game window prompt when starting a channel *removed the need of a cIOS to launch the loader (if anyone uses it with IOS58 for whatever reason). The warning that a cIOS is needed is still present. *removed support for both usb ports at once on hermes cIOS. Each can still be used individually but only one at a time. This is done because of some bugs in the new ehci module which make some games unbootable. The ehcimodule is now reverted to the last working one. Need feedback if the games work fine again. *some preparations for the upcoming stealth mode feature of the d2x cIOS *isfs is now initiated once and deinitated when cleaning up only (instead of the whole init/deinit every single access) *removed choice for emulated nand channel modes. Emulated nand channels always need full emulation which is now always used on emu nand for channels. *removed unused settings for channels from the per game setting *changed default partition to 0 when starting with fresh settings (instead of -1 wtf?)
99 lines
2.8 KiB
Bash
99 lines
2.8 KiB
Bash
#! /bin/bash
|
|
#
|
|
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')
|
|
|
|
|
|
rev_new_raw=$(echo $rev_new_raw | sed 's/[^0-9]*\([0-9]*\)\(.*\)/\1 \2/')
|
|
rev_new=0
|
|
a=$(echo $rev_new_raw | sed 's/\([0-9]*\).*/\1/')
|
|
let "a+=0"
|
|
#find max rev
|
|
while [ "$a" ]; do
|
|
[ "$a" -gt "$rev_new" ] && rev_new=$a
|
|
rev_new_raw=$(echo -n $rev_new_raw | sed 's/[0-9]*[^0-9]*\([0-9]*\)\(.*\)/\1 \2/')
|
|
a=$(echo $rev_new_raw | sed 's/\([0-9]*\).*/\1/')
|
|
done
|
|
|
|
rev_old=$(cat ./source/svnrev.c 2>/dev/null | tr -d '\n' | sed 's/[^0-9]*\([0-9]*\).*/\1/')
|
|
|
|
if [ "$rev_new" != "$rev_old" ] || [ ! -f ./source/svnrev.c ]; then
|
|
|
|
cat <<EOF > ./source/svnrev.c
|
|
#define SVN_REV "$rev_new"
|
|
|
|
const char *GetRev()
|
|
{
|
|
return SVN_REV;
|
|
}
|
|
EOF
|
|
|
|
if [ -n "$rev_new" ]; then
|
|
echo "Changed Rev $rev_old to $rev_new" >&2
|
|
else
|
|
echo "svnrev.c created" >&2
|
|
fi
|
|
echo >&2
|
|
fi
|
|
|
|
|
|
rev_new=`expr $rev_new + 1`
|
|
rev_date=`date -u +%Y%m%d%H%M`
|
|
|
|
cat <<EOF > ./HBC/META.XML
|
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
<app version="1">
|
|
<name> USB Loader GX</name>
|
|
<coder>USB Loader GX Team</coder>
|
|
<version>2.3 r$rev_new</version>
|
|
<release_date>$rev_date</release_date>
|
|
<!-- // remove this line to enable arguments
|
|
<arguments>
|
|
<arg>--ios=250</arg>
|
|
<arg>--usbport=0</arg>
|
|
</arguments>
|
|
// remove this line to enable arguments -->
|
|
<no_ios_reload/>
|
|
<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: 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
|
|
|
|
Libwiigui: Tantric
|
|
Libogc/Devkit: Shagkur and Wintermute
|
|
FreeTypeGX: Armin Tamzarian.
|
|
|
|
Links:
|
|
USB Loader GX Project Page and Support Site:
|
|
http://code.google.com/p/usbloader-gui/
|
|
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>
|
|
EOF
|