1
0
mirror of https://github.com/heebijeebi/WinTango-Patcher.git synced 2024-06-22 05:21:56 +02:00

Release 16-12-24

This commit is contained in:
heebijeebi
2016-12-24 12:59:25 +01:00
parent 7b34cbb682
commit 4c1a24e0d1
2 changed files with 45 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
[Updater]
MainApp=16.01.07
URL=Zippyshare
URL2=https://github.com/heebijeebi/WinTango-Patcher/releases/download/v16.01.07/WinTango-Patcher-16.01.07-offline.exe
MainApp=16.12.24
URL=http://www73.zippyshare.com/d/swSe3xxr/2685622/WinTango-Patcher-16.12.24-offline.exe
URL2=https://github.com/heebijeebi/WinTango-Patcher/releases/download/v16.12.24/WinTango-Patcher-16.12.24-offline.exe

42
project/_TEST DL.au3 Normal file
View File

@@ -0,0 +1,42 @@
#Include <File.au3>
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <ProgressConstants.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
;custom
#include <_UDFs\CommonFunctions.au3>
#include <FuncMisc.au3>
#include <FuncUpdatecheck.au3>
#include <PatcherStrings.au3>
#NoTrayIcon
#AutoIt3Wrapper_Res_requestedExecutionLevel=requireAdministrator ;Permissions
Defines() ;Global Standards
$AppTitle = $AppName & " Updater"
$AppVersionInst = RegRead($AppRegKey, "Version")
$AppVersionLatest = ""
_Strings_Updater() ;localized Strings
;Create GUI
$MainGUI = GUICreate($AppTitle, 491, 163, -1, -1)
$icoLogo = GUICtrlCreateIcon($IconsDir & "\header_480x80.ico", -1, 5, 5, 480, 80)
$lblCurrent = GUICtrlCreateLabel("", 12, 88, 466, 17)
Global $prgbarUpdate = GUICtrlCreateProgress(12, 112, 466, 17)
$lblOverall = GUICtrlCreateLabel("", 12, 136, 466, 17, $SS_RIGHT)
GUISetState(@SW_SHOW)
;Download
GUICtrlSetData($lblCurrent, $string_msgDownloading)
$sUrl = "http://www73.zippyshare.com/d/swSe3xxr/2685622/WinTango-Patcher-16.12.24-offline.exe"
$sDest = @TempDir & "\" & StringReplace($AppName, " ", "-") & "-LATEST.exe"
_DownloadLatestVersion($sUrl, $sDest)
GUICtrlSetData($lblOverall, $string_msgDownloadDone)