5.5.0 Changelog

Abstinence Wizard added to ModMii's main menu. You can use this Wizard to prepare the necessary files to load NEEK on any Wii even if it has not been modifed. In short, to avoid voiding your warranty (or for other reasons) if you choose to abstain from softmodding your Wii, you can still play your games off a USB HDD by using the Abstinence Wizard. The recent release of giantpune's 'Casper' (available on ModMii's Download Page 2) is what made this wizard possible. Thanks giantpune!

Updated WiiFlow on ModMii's Download Page 2. It is now an autoupdating download that will grab the most recent release of FIX94's feature rich and very stable and Mod of WiiFlow.

Other minor changes.
This commit is contained in:
xflak40 2012-01-25 01:11:25 +00:00
parent 7686c9a1a7
commit 7d466e10a4
3 changed files with 731 additions and 209 deletions

View File

@ -198,7 +198,7 @@ What can I say about THE "DeadlyFoez" on a personal level. He's always getting m
<li><b><font size="4">All My Beta Testers!</font></b><br>
It's because of you guys that ModMii is as stable as it is. Considering that ModMii is developed entirely in notepad without any kind of debugger or developer tools; it's pretty remarkable that ModMii has always been bug-free (albeit with a couple minor exceptions). Thanks for your never-ending devotion to quality control!<br>
Here's a list of ModMii's current beta testing group (in no particular order): scooby74029, DeadlyFoez, redia, Etheboss, JoostinOnline, person66, brausm08, geovalley, undeadsquirrel, mauifrog and FIX94.
Here's a list of ModMii's current beta testing group (in no particular order): scooby74029, DeadlyFoez, redia, Etheboss, JoostinOnline, person66, brausm08, geovalley, undeadsquirrel, mauifrog, FIX94 and wolf.
</li><br>

File diff suppressed because it is too large Load Diff

View File

@ -1,10 +1,17 @@
;Small autoit script by person66 to make ModMii.bat open with an icon
IF FileExists(@WorkingDir & "\Support\ModMii.lnk") Then FileDelete(@WorkingDir & "\Support\ModMii.lnk")
AutoItSetOption("TrayIconHide", 1)
If FileExists(@WorkingDir & "\Support\ModMii.lnk") Then FileDelete(@WorkingDir & "\Support\ModMii.lnk")
$ARGS = ""
$I = 1
While $I <= $CMDLINE[0]
$ARGS = $ARGS & $CMDLINE[$I] & " "
$I = $I + 1
$ARGS = $ARGS & $CMDLINE[$I] & " "
$I = $I + 1
WEnd
$HasArgs = "True"
If $CMDLINE[0] = 0 Then $HasArgs = "False"
FileCreateShortcut(@ComSpec, @ScriptDir & "\Support\ModMii.lnk", @ScriptDir, '/c call "' & @ScriptDir & '\Support\ModMii.bat" ' & $ARGS, "", @ScriptDir & "\Support\icon.ico")
ShellExecuteWait(@ScriptDir & "\Support\ModMii.lnk")
If $HasArgs = "True" Then
ShellExecuteWait(@ScriptDir & "\Support\ModMii.lnk")
Else
ShellExecute(@ScriptDir & "\Support\ModMii.lnk")
EndIf