mirror of
https://github.com/modmii/modmii.github.io.git
synced 2024-11-13 03:45:13 +01:00
6.0.5 Changelog:
d2x v8-final is now bundled with ModMii instead of v7-final. Updated ModMii Skin Launcher (by person66). It now includes a 10ms sleep in order to maintain 0 CPU usage even on older computers. This issue was not present for most users, but person66 personally experienced the old ModMiiSkin.exe process using 20%-40% of his CPU. Updated ModMii's Syscheck Updater to consider homebrew channel installations of v1.0.0 (in addition to v1.1.0) as up to date when running off of IOS58. This change is to compensate for the latest version of syscheck which incorrectly labels HBC v1.1.0 and v1.0.0. Now when updating ModMii using ModMii Skin the ModMiiSkin process is killed in order to permit updates to ModMiiSkin.exe itself (if applicable). Fixed bug where ModMii Skin would not operate properly if the drive settings ended with a forward slash or back slash. Fixed bug where the back button on the SD Card Drive selection page sometimes crashed ModMii Skin. Other Minor Changes.
This commit is contained in:
parent
642e92e879
commit
6750f727c8
File diff suppressed because it is too large
Load Diff
@ -31,7 +31,7 @@ Exit
|
||||
|
||||
::----------------------------------------------------------
|
||||
|
||||
set currentversion=6.0.4
|
||||
set currentversion=6.0.5
|
||||
set currentversioncopy=%currentversion%
|
||||
set agreedversion=
|
||||
|
||||
@ -48,6 +48,8 @@ set UPDATENAME=ModMii
|
||||
::set UPDATENAME=ModMii_IT_
|
||||
|
||||
|
||||
if exist Updatetemp.bat attrib -h Updatetemp.bat
|
||||
if exist Updatetemp.bat del updatetemp.bat>nul
|
||||
|
||||
|
||||
::------Check for old Windows Versions-------
|
||||
@ -522,6 +524,12 @@ echo Set Drive=%DRIVE:&=^&%>>Support\settings.bat
|
||||
echo Set DriveU=%DRIVEU:&=^&%>>Support\settings.bat
|
||||
support\sfk filter -spat -quiet Support\settings.bat -rep _\x5e\x26_\x26_ -rep _\x26_\x5e\x26_ -write -yes>nul
|
||||
|
||||
support\sfk filter -spat -quiet Support\settings.bat -rep _\x5e\x26_\x26_ -rep _\x26_\x5e\x26_ -write -yes>nul
|
||||
|
||||
support\sfk filter -quiet Support\settings.bat -lerep _\__ -lerep _/__ -write -yes>nul
|
||||
|
||||
|
||||
|
||||
echo Set overwritecodes=%overwritecodes%>> Support\settings.bat
|
||||
echo Set cheatregion=%cheatregion%>> Support\settings.bat
|
||||
echo Set cheatlocation=%cheatlocation%>> Support\settings.bat
|
||||
@ -1285,7 +1293,7 @@ IF not ERRORLEVEL 1 (set UpdatesIOSQ=Y) else (set UpdatesIOSQ=N)
|
||||
if /i "%THEMEQ%" EQU "Y" goto:WPAGE20
|
||||
if /i "%USBGUIDE%" EQU "Y" goto:UPAGE1
|
||||
|
||||
et BACKB4DRIVE=WPAGE13
|
||||
set BACKB4DRIVE=WPAGE13
|
||||
goto:DRIVECHANGE
|
||||
|
||||
|
||||
@ -1470,6 +1478,7 @@ set REALDRIVE=%DRIVE:&=^&%
|
||||
support\sfk filter Support\settings.bat -!"Set Drive=" -write -yes>nul
|
||||
echo Set Drive=%DRIVE:&=^&%>>Support\settings.bat
|
||||
support\sfk filter -spat -quiet Support\settings.bat -rep _\x5e\x26_\x26_ -rep _\x26_\x5e\x26_ -write -yes>nul
|
||||
support\sfk filter -quiet Support\settings.bat -lerep _\__ -lerep _/__ -write -yes>nul
|
||||
::goto:
|
||||
|
||||
set wabmp=%wabmplast%
|
||||
@ -1560,7 +1569,7 @@ set DRIVEU=%DRIVEUTEMP:&=^&%
|
||||
support\sfk filter Support\settings.bat -!"Set DriveU=" -write -yes>nul
|
||||
echo Set DriveU=%DRIVEU:&=^&%>>Support\settings.bat
|
||||
support\sfk filter -spat -quiet Support\settings.bat -rep _\x5e\x26_\x26_ -rep _\x26_\x5e\x26_ -write -yes>nul
|
||||
|
||||
support\sfk filter -quiet Support\settings.bat -lerep _\__ -lerep _/__ -write -yes>nul
|
||||
|
||||
::goto:
|
||||
|
||||
@ -1675,6 +1684,8 @@ set watext=~Updating from v%currentversion% to v%newversion%~~Please Wait...
|
||||
start support\wizapp PB OPEN
|
||||
start support\wizapp PB UPDATE 20
|
||||
|
||||
::Kill ModMiiSkin.exe process so it can be updated
|
||||
taskkill /im ModMiiSkin.exe /f >nul
|
||||
|
||||
if not exist "%UPDATENAME%%newversion%.zip" start %ModMiimin%/wait support\wget -t 3 http://modmii.googlecode.com/files/%UPDATENAME%%newversion%.zip
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
Script Function:
|
||||
Move the ModMii skin window.
|
||||
|
||||
Script Version: 1.6
|
||||
Script Version: 1.7
|
||||
|
||||
#ce ----------------------------------------------------------------------------
|
||||
|
||||
@ -67,19 +67,20 @@ if $run = 0 then
|
||||
endif
|
||||
|
||||
While 1
|
||||
While 1
|
||||
if WinExists($run) <> 1 then
|
||||
exitloop
|
||||
else
|
||||
$WinPos = WinGetPos($run)
|
||||
if $WinPos <> 0 then
|
||||
$WinPosBak = $WinPos
|
||||
else
|
||||
$WinPos = $WinPosBak
|
||||
exitloop
|
||||
endif
|
||||
endif
|
||||
WEnd
|
||||
While 1
|
||||
if WinExists($run) <> 1 then
|
||||
exitloop
|
||||
else
|
||||
$WinPos = WinGetPos($run)
|
||||
if $WinPos <> 0 then
|
||||
$WinPosBak = $WinPos
|
||||
else
|
||||
$WinPos = $WinPosBak
|
||||
exitloop
|
||||
endif
|
||||
endif
|
||||
sleep(10)
|
||||
WEnd
|
||||
$run = WinWait("ModMii Skin", "by XFlak", $WaitTime)
|
||||
if $run = 0 then
|
||||
exit
|
||||
|
@ -11,26 +11,26 @@ echo set AdvNumber=0 >temp\DownloadQueues\d2xAll.bat
|
||||
echo if /i '?GetAdvNumberOnly?' EQU 'Y' goto:endofqueue>>temp\DownloadQueues\d2xAll.bat
|
||||
echo Set ROOTSAVE=off>>temp\DownloadQueues\d2xAll.bat
|
||||
echo Set Option1=off>>temp\DownloadQueues\d2xAll.bat
|
||||
echo Set cIOS249[37]-d2x-v7-final=*>>temp\DownloadQueues\d2xAll.bat
|
||||
echo Set cIOS249[38]-d2x-v7-final=*>>temp\DownloadQueues\d2xAll.bat
|
||||
echo Set cIOS249[56]-d2x-v7-final=*>>temp\DownloadQueues\d2xAll.bat
|
||||
echo Set cIOS249[53]-d2x-v7-final=*>>temp\DownloadQueues\d2xAll.bat
|
||||
echo Set cIOS249[55]-d2x-v7-final=*>>temp\DownloadQueues\d2xAll.bat
|
||||
echo Set cIOS249[57]-d2x-v7-final=*>>temp\DownloadQueues\d2xAll.bat
|
||||
echo Set cIOS249[58]-d2x-v7-final=*>>temp\DownloadQueues\d2xAll.bat
|
||||
echo Set cIOS249[60]-d2x-v7-final=*>>temp\DownloadQueues\d2xAll.bat
|
||||
echo Set cIOS249[70]-d2x-v7-final=*>>temp\DownloadQueues\d2xAll.bat
|
||||
echo Set cIOS249[80]-d2x-v7-final=*>>temp\DownloadQueues\d2xAll.bat
|
||||
echo Set cIOS250[37]-d2x-v7-final=*>>temp\DownloadQueues\d2xAll.bat
|
||||
echo Set cIOS250[38]-d2x-v7-final=*>>temp\DownloadQueues\d2xAll.bat
|
||||
echo Set cIOS250[53]-d2x-v7-final=*>>temp\DownloadQueues\d2xAll.bat
|
||||
echo Set cIOS250[55]-d2x-v7-final=*>>temp\DownloadQueues\d2xAll.bat
|
||||
echo Set cIOS250[56]-d2x-v7-final=*>>temp\DownloadQueues\d2xAll.bat
|
||||
echo Set cIOS250[57]-d2x-v7-final=*>>temp\DownloadQueues\d2xAll.bat
|
||||
echo Set cIOS250[58]-d2x-v7-final=*>>temp\DownloadQueues\d2xAll.bat
|
||||
echo Set cIOS250[60]-d2x-v7-final=*>>temp\DownloadQueues\d2xAll.bat
|
||||
echo Set cIOS250[70]-d2x-v7-final=*>>temp\DownloadQueues\d2xAll.bat
|
||||
echo Set cIOS250[80]-d2x-v7-final=*>>temp\DownloadQueues\d2xAll.bat
|
||||
echo Set cIOS249[37]-d2x-v8-final=*>>temp\DownloadQueues\d2xAll.bat
|
||||
echo Set cIOS249[38]-d2x-v8-final=*>>temp\DownloadQueues\d2xAll.bat
|
||||
echo Set cIOS249[56]-d2x-v8-final=*>>temp\DownloadQueues\d2xAll.bat
|
||||
echo Set cIOS249[53]-d2x-v8-final=*>>temp\DownloadQueues\d2xAll.bat
|
||||
echo Set cIOS249[55]-d2x-v8-final=*>>temp\DownloadQueues\d2xAll.bat
|
||||
echo Set cIOS249[57]-d2x-v8-final=*>>temp\DownloadQueues\d2xAll.bat
|
||||
echo Set cIOS249[58]-d2x-v8-final=*>>temp\DownloadQueues\d2xAll.bat
|
||||
echo Set cIOS249[60]-d2x-v8-final=*>>temp\DownloadQueues\d2xAll.bat
|
||||
echo Set cIOS249[70]-d2x-v8-final=*>>temp\DownloadQueues\d2xAll.bat
|
||||
echo Set cIOS249[80]-d2x-v8-final=*>>temp\DownloadQueues\d2xAll.bat
|
||||
echo Set cIOS250[37]-d2x-v8-final=*>>temp\DownloadQueues\d2xAll.bat
|
||||
echo Set cIOS250[38]-d2x-v8-final=*>>temp\DownloadQueues\d2xAll.bat
|
||||
echo Set cIOS250[53]-d2x-v8-final=*>>temp\DownloadQueues\d2xAll.bat
|
||||
echo Set cIOS250[55]-d2x-v8-final=*>>temp\DownloadQueues\d2xAll.bat
|
||||
echo Set cIOS250[56]-d2x-v8-final=*>>temp\DownloadQueues\d2xAll.bat
|
||||
echo Set cIOS250[57]-d2x-v8-final=*>>temp\DownloadQueues\d2xAll.bat
|
||||
echo Set cIOS250[58]-d2x-v8-final=*>>temp\DownloadQueues\d2xAll.bat
|
||||
echo Set cIOS250[60]-d2x-v8-final=*>>temp\DownloadQueues\d2xAll.bat
|
||||
echo Set cIOS250[70]-d2x-v8-final=*>>temp\DownloadQueues\d2xAll.bat
|
||||
echo Set cIOS250[80]-d2x-v8-final=*>>temp\DownloadQueues\d2xAll.bat
|
||||
|
||||
echo :endofqueue>>temp\DownloadQueues\d2xAll.bat
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user