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

Firefox/Thunderbird Fixes/Updates

This commit is contained in:
heebijeebi
2016-11-13 14:14:40 +01:00
parent ba1341d9f7
commit e31cbda195
19 changed files with 9 additions and 4 deletions

View File

@@ -1,8 +1,8 @@
Changelog:
------------
16.08.XX:
- Update: elementary icon theme 4.0
16.11.XX:
- Update: elementary icon theme
- Update: AIMP3 Icons
- Update: Mozilla Firefox / Thunderbird Theme compatibility Updates
- Fix: Updater will now simply download the latest Offline-Installer from ZippyShare. No more updating of parts due to bandwith limitations of Dropbox.

View File

@@ -1,3 +1,3 @@
[Updater]
MainApp=16.06.XX
MainApp=16.11.XX
URL=http://www10.zippyshare.com/d/DIDzcPHu/3545653/WinTango-Patcher-LATEST-offline.exe

View File

@@ -318,7 +318,12 @@ Func UpdateTheme($App, $AppExePath, $TargetFolder, $FileToCopy, $ResFile)
;replace file in target folder
If FileCopy($ResFile, $TargetFolder & "\" & $FileToCopy, 1) = 0 Then
MoveEx($ResFile, $TargetFolder & "\" & $FileToCopy) ;replace locked file on reboot
;create a copy in temp to prevent missing files the next time
DirCreate(@ScriptDir & "\temp")
FileCopy($ResFile, @ScriptDir & "\temp\" & $FileToCopy, 1)
MoveEx(@ScriptDir & "\temp\" & $FileToCopy, $TargetFolder & "\" & $FileToCopy) ;replace locked file on reboot
;MoveEx($ResFile, $TargetFolder & "\" & $FileToCopy) ;replace locked file on reboot
$UpdatedFileCount = $UpdatedFileCount + 1 ;tell the patcher to reboot
EndIf