6.2.4 Changelog:

SysCheck download updated to v2.1.0.b19 (detects latest HBC).
Fixed recently introduced WiiFlow Download Bug.
Minor changes to ModMiiSkin.exe launcher by person66.
This commit is contained in:
xflak40 2013-01-03 17:08:51 +00:00
parent 6de7ef988e
commit 8fc33647a0
3 changed files with 50 additions and 42 deletions

View File

@ -9,7 +9,7 @@ if not exist support cd..
::::PUSHD "%~dp0" ::::PUSHD "%~dp0"
::POPD ::POPD
set currentversion=6.2.3 set currentversion=6.2.4
set currentversioncopy=%currentversion% set currentversioncopy=%currentversion%
set agreedversion= set agreedversion=
@ -19775,7 +19775,7 @@ goto:skippostloaderfilter
:WiiFlowfilter :WiiFlowfilter
support\sfk filter -quiet code.bat ++"zip" ++"WiiFlow" -!cert -rep _.zip*__ -write -yes support\sfk filter -quiet code.bat ++"zip" ++"WiiFlow" -!cert -rep _.zip*__ -write -yes
support\sfk filter -spat -quiet code.bat -rep _*v__ -write -yes support\sfk filter -spat -quiet code.bat ++"WiiFlow\x2520v" -rep _*v__ -write -yes
set /p newcode= <code.bat set /p newcode= <code.bat
del /f /q code.bat del /f /q code.bat
goto:skippostloaderfilter goto:skippostloaderfilter
@ -25238,14 +25238,14 @@ set path1=apps\IOS236-v5-Mod\
goto:downloadstart goto:downloadstart
:sysCheck :sysCheck
set name=sysCheck v2.1.0.b18 set name=sysCheck v2.1.0.b19
set code1=URL set code1=URL
set code2=http://syscheck.googlecode.com/files/syscheckb18.zip set code2=http://syscheck.googlecode.com/files/syscheckb19.zip
set version=* set version=*
set dlname=syscheckb18.zip set dlname=syscheckb19.zip
set wadname=syscheckb18.zip set wadname=syscheckb19.zip
set filename=boot.dol set filename=boot.dol
set md5=e395a33e1432b83e3e658f7d01aa2728 set md5=3b53fe8fa9e036b0885a5d1aec153d1a
set path1=apps\sysCheck\ set path1=apps\sysCheck\
goto:downloadstart goto:downloadstart

View File

@ -31,7 +31,7 @@ Exit
::---------------------------------------------------------- ::----------------------------------------------------------
set currentversion=6.2.3 set currentversion=6.2.4
set currentversioncopy=%currentversion% set currentversioncopy=%currentversion%
set agreedversion= set agreedversion=

View File

@ -1,24 +1,30 @@
#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_icon=D:\ModMii\Support\icon.ico
#AutoIt3Wrapper_outfile=ModMiiSkin.exe
#AutoIt3Wrapper_UseX64=N
#AutoIt3Wrapper_Res_Description=ModMii Skin Launcher
#AutoIt3Wrapper_Res_Fileversion=1.0.0.0
#AutoIt3Wrapper_Res_LegalCopyright=ModMii by XFlak, Launcher by person66
#AutoIt3Wrapper_Res_Field=ProductName|ModMii Skin Launcher
#AutoIt3Wrapper_Res_Field=ProductVersion|1.0.0.0
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
#cs ---------------------------------------------------------------------------- #cs ----------------------------------------------------------------------------
AutoIt Version: 3.3.8.0 AutoIt Version: 3.3.8.1
Author: person66 Author: person66
Script Function: Script Function:
Move the ModMii skin window. Move the ModMii skin window.
Script Version: 1.7 Script Version: 1.8
#ce ---------------------------------------------------------------------------- #ce ----------------------------------------------------------------------------
;REMEMBER TO COMPILE WITH AUTOIT3WRAPPER.EXE
;(http://www.autoitscript.com/autoit3/scite/download/AutoIt3Wrapper.exe)
;AND CHANGE THE LINES BELOW TO MEET YOUR NEEDS
#AutoIt3Wrapper_Autoit3Dir="C:\Program Files (x86)\AutoIt3" #AutoIt3Wrapper_Autoit3Dir="C:\Program Files (x86)\AutoIt3"
#AutoIt3Wrapper_Icon="C:\ModMii\Support\icon.ico"
#AutoIt3Wrapper_OutFile=ModMiiSkin.exe
#AutoIt3Wrapper_Res_Field=ProductName|ModMii Skin Launcher
#AutoIt3Wrapper_Res_Fileversion= 1.0.0.0
#AutoIt3Wrapper_Res_Field=ProductVersion|1.0.0.0
#AutoIt3Wrapper_Res_Description=ModMii Skin Launcher
#AutoIt3Wrapper_Res_LegalCopyright=ModMii by XFlak, Launcher by person66
#AutoIt3Wrapper_UseX64=N
#include <Process.au3> #include <Process.au3>
@ -32,9 +38,9 @@ $WaitTime = 10 ;Time to wait for next ModMii window (in seconds)
;Check for args, and run ModMii Classic if there are ;Check for args, and run ModMii Classic if there are
if $CMDLINE[0] = 0 then $HasArgs = "False" if $CMDLINE[0] = 0 then $HasArgs = "False"
if $HasArgs = "True" then if $HasArgs = "True" then
For $i = 1 To $CMDLINE[0] for $i = 1 To $CMDLINE[0]
$args = $args & $CMDLINE[$I] & " " $args = $args & $CMDLINE[$I] & " "
Next next
ShellExecuteWait(@ScriptDir & "\ModMii.exe", $args) ShellExecuteWait(@ScriptDir & "\ModMii.exe", $args)
exit exit
endif endif
@ -51,12 +57,12 @@ endif
if $AlreadyOpen = 0 then if $AlreadyOpen = 0 then
$ProcessName = _ProcessGetName(@AutoItPID) $ProcessName = _ProcessGetName(@AutoItPID)
$ProcessList = ProcessList($ProcessName) $ProcessList = ProcessList($ProcessName)
For $i = 1 To $ProcessList[0][0] for $i = 1 To $ProcessList[0][0]
if $ProcessList[$i][1] <> @AutoItPID then if $ProcessList[$i][1] <> @AutoItPID then
ProcessClose($ProcessList[$i][1]) ProcessClose($ProcessList[$i][1])
endif endif
Next next
EndIf endif
;Main part ;Main part
ShellExecute(@ComSpec, '/c call "' & @ScriptDir & '\Support\ModMiiSkin.bat"', "", "", @SW_HIDE) ShellExecute(@ComSpec, '/c call "' & @ScriptDir & '\Support\ModMiiSkin.bat"', "", "", @SW_HIDE)
@ -64,10 +70,12 @@ ShellExecute(@ComSpec, '/c call "' & @ScriptDir & '\Support\ModMiiSkin.bat"', ""
$run = WinWait("ModMii Skin", "by XFlak", $WaitTime) $run = WinWait("ModMii Skin", "by XFlak", $WaitTime)
if $run = 0 then if $run = 0 then
exit exit
else
$WinPos = WinGetPos($run)
endif endif
While 1 while 1
While 1 while 1
if WinExists($run) <> 1 then if WinExists($run) <> 1 then
exitloop exitloop
else else
@ -80,7 +88,7 @@ While 1
endif endif
endif endif
sleep(10) sleep(10)
WEnd wend
$run = WinWait("ModMii Skin", "by XFlak", $WaitTime) $run = WinWait("ModMii Skin", "by XFlak", $WaitTime)
if $run = 0 then if $run = 0 then
exit exit
@ -88,4 +96,4 @@ While 1
WinMove($run, "", $WinPos[0], $WinPos[1]) WinMove($run, "", $WinPos[0], $WinPos[1])
WinActivate($run) WinActivate($run)
endif endif
WEnd wend