Cleaned up some obsolete files.

This commit is contained in:
LoRd_MuldeR 2014-08-13 15:03:01 +02:00
parent e2ad461784
commit dd4e1132ea
5 changed files with 9 additions and 64 deletions

13
.gitignore vendored
View File

@ -4,7 +4,12 @@
/ipch/
/res/toolset/
/src/*.h.bak
/*.sdf
/*.suo
/*.user
/*.opensdf
/etc/_old_
/etc/sources/*.tar
/gui/_old_
*.sdf
*.suo
*.user
*.opensdf
*.old
*.db

View File

@ -1,38 +0,0 @@
!include "WinVer.nsh"
Function .onInit
System::Call 'kernel32::CreateMutexA(i 0, i 0, t "{79d6a7e5-35af-47b1-a7d6-f20d0e5df772}") i .r1 ?e'
Pop $0
${If} $0 <> 0
MessageBox MB_ICONSTOP|MB_TOPMOST "Sorry, the installer is already running!"
Quit
${EndIf}
; --------
${IfNot} ${IsNT}
MessageBox MB_TOPMOST|MB_ICONSTOP "Sorry, this application does NOT support Windows 9x !!!"
Quit
${EndIf}
${IfNot} ${AtLeastWinXP}
MessageBox MB_TOPMOST|MB_ICONSTOP "Sorry, this application requires Windows XP or later!"
Quit
${EndIf}
${If} ${IsWinXP}
${AndIf} ${AtMostServicePack} 1
MessageBox MB_TOPMOST|MB_ICONSTOP "Sorry, this application requires Service-Pack 2 for Windows XP or later!"
ExecShell "open" "http://www.microsoft.com/download/en/details.aspx?id=24"
Quit
${EndIf}
; --------
UserInfo::GetAccountType
Pop $0
${If} $0 != "Admin"
MessageBox MB_ICONSTOP|MB_TOPMOST "Your system requires administrative permissions in order to install this software."
Quit
${EndIf}
FunctionEnd

View File

@ -1,4 +0,0 @@
Function .onInstSuccess
ExecShell "explore" '$INSTDIR'
ExecShell "open" '$INSTDIR\ReadMe.txt'
FunctionEnd

View File

@ -1,3 +0,0 @@
#Create Shortcuts
MessageBox MB_ICONQUESTION|MB_TOPMOST|MB_YESNO "Create a desktop icon for Simple x264 Launcher?" /SD IDYES IDNO +2
CreateShortCut "$DESKTOP\Simple x264 Launcher.lnk" "$INSTDIR\x264_launcher.exe"

View File

@ -1,15 +0,0 @@
!macro X264_VERSIONINFO DATE TIME BUILDNO
!searchreplace PRODUCT_VERSION_DATE "${DATE}" "-" "."
VIProductVersion "${PRODUCT_VERSION_DATE}.${BUILDNO}"
VIAddVersionKey "Author" "LoRd_MuldeR <mulder2@gmx.de>"
VIAddVersionKey "Comments" "This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version."
VIAddVersionKey "CompanyName" "Free Software Foundation"
VIAddVersionKey "FileDescription" "Simple x264 Launcher (${DATE})"
VIAddVersionKey "FileVersion" "${DATE}, ${TIME} [Build #${BUILDNO}]"
VIAddVersionKey "LegalCopyright" "Copyright 2004-2012 LoRd_MuldeR"
VIAddVersionKey "LegalTrademarks" "GNU"
VIAddVersionKey "OriginalFilename" "x264_x64.${DATE}.exe"
VIAddVersionKey "ProductName" "Simple x264 Launcher"
VIAddVersionKey "ProductVersion" "${DATE}, ${TIME} [Build #${BUILDNO}]"
VIAddVersionKey "Website" "http://mulder.at.gg/"
!macroend