Add assets
1
T7x/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
/build
|
BIN
T7x/assets/banner-t7x-title.bmp
Normal file
After Width: | Height: | Size: 515 KiB |
BIN
T7x/assets/logo-cropped.bmp
Normal file
After Width: | Height: | Size: 2.8 MiB |
BIN
T7x/assets/original/banner-t7x-cropped.bmp
Normal file
After Width: | Height: | Size: 1.5 MiB |
BIN
T7x/assets/original/banner-t7x-cropped.png
Normal file
After Width: | Height: | Size: 549 KiB |
BIN
T7x/assets/original/banner-t7x-title.png
Normal file
After Width: | Height: | Size: 106 KiB |
BIN
T7x/assets/original/banner-t7x.png
Normal file
After Width: | Height: | Size: 660 KiB |
BIN
T7x/assets/original/logo-cropped.png
Normal file
After Width: | Height: | Size: 706 KiB |
BIN
T7x/assets/original/logo.png
Normal file
After Width: | Height: | Size: 124 KiB |
@ -5,7 +5,7 @@
|
|||||||
; Constants
|
; Constants
|
||||||
!define PRODUCT_NAME "t7x"
|
!define PRODUCT_NAME "t7x"
|
||||||
!define PRODUCT_DESCRIPTION "Call of Duty: Black Ops III Client"
|
!define PRODUCT_DESCRIPTION "Call of Duty: Black Ops III Client"
|
||||||
!define COPYRIGHT "Created by Rim - Open Source"
|
!define COPYRIGHT "Created by Rim - This product is free and open source"
|
||||||
!define PRODUCT_VERSION "1.0.0.0"
|
!define PRODUCT_VERSION "1.0.0.0"
|
||||||
!define SETUP_VERSION "1.0.0.0"
|
!define SETUP_VERSION "1.0.0.0"
|
||||||
|
|
||||||
@ -34,6 +34,11 @@ VIAddVersionKey "FileVersion" "${SETUP_VERSION}"
|
|||||||
!define MUI_ABORTWARNING
|
!define MUI_ABORTWARNING
|
||||||
!define MUI_UNABORTWARNING
|
!define MUI_UNABORTWARNING
|
||||||
|
|
||||||
|
; Installer Images
|
||||||
|
!define MUI_WELCOMEFINISHPAGE_BITMAP "assets\logo-cropped.bmp"
|
||||||
|
!define MUI_HEADERIMAGE_BITMAP "assets\banner-t7x-title.bmp"
|
||||||
|
!define MUI_UNWELCOMEFINISHPAGE_BITMAP "assets\logo-cropped.bmp" ; For uninstaller
|
||||||
|
|
||||||
; Pages
|
; Pages
|
||||||
!insertmacro MUI_PAGE_WELCOME
|
!insertmacro MUI_PAGE_WELCOME
|
||||||
;!insertmacro MUI_PAGE_LICENSE "Readme.txt"
|
;!insertmacro MUI_PAGE_LICENSE "Readme.txt"
|
||||||
@ -48,9 +53,23 @@ VIAddVersionKey "FileVersion" "${SETUP_VERSION}"
|
|||||||
Section "Main Application" SecMain
|
Section "Main Application" SecMain
|
||||||
SetOutPath $INSTDIR
|
SetOutPath $INSTDIR
|
||||||
File "t7x.exe"
|
File "t7x.exe"
|
||||||
|
File "base_game_dir\README.md"
|
||||||
|
File "base_game_dir\T7x_CP_Server.bat"
|
||||||
|
File "base_game_dir\T7x_MP_Server.bat"
|
||||||
|
File "base_game_dir\T7x_ZM_Server.bat"
|
||||||
WriteUninstaller "$INSTDIR\Uninstall.exe"
|
WriteUninstaller "$INSTDIR\Uninstall.exe"
|
||||||
SectionEnd
|
SectionEnd
|
||||||
|
|
||||||
|
Section "Game Directory t7x Files" SecT7xData
|
||||||
|
SetOutPath $INSTDIR\t7x
|
||||||
|
File /r "base_game_dir\t7x\*.*"
|
||||||
|
SectionEnd
|
||||||
|
|
||||||
|
Section "Game Directory zone Files" SecZoneData
|
||||||
|
SetOutPath $INSTDIR\zone
|
||||||
|
File /r "base_game_dir\zone\*.*"
|
||||||
|
SectionEnd
|
||||||
|
|
||||||
Section "LocalAppData Files" SecData
|
Section "LocalAppData Files" SecData
|
||||||
SetOutPath $LOCALAPPDATA\t7x
|
SetOutPath $LOCALAPPDATA\t7x
|
||||||
File /r "t7x\*.*"
|
File /r "t7x\*.*"
|
||||||
@ -67,7 +86,18 @@ FunctionEnd
|
|||||||
Section "Uninstall"
|
Section "Uninstall"
|
||||||
Delete $INSTDIR\t7x.exe
|
Delete $INSTDIR\t7x.exe
|
||||||
Delete "$DESKTOP\${PRODUCT_NAME}.lnk"
|
Delete "$DESKTOP\${PRODUCT_NAME}.lnk"
|
||||||
|
Delete "$INSTDIR\README.md"
|
||||||
|
Delete "$INSTDIR\T7x_CP_Server.bat"
|
||||||
|
Delete "$INSTDIR\T7x_MP_Server.bat"
|
||||||
|
Delete "$INSTDIR\T7x_ZM_Server.bat"
|
||||||
|
|
||||||
|
Delete "$INSTDIR\zone\server.cfg"
|
||||||
|
Delete "$INSTDIR\zone\server_cp.cfg"
|
||||||
|
Delete "$INSTDIR\zone\server_zm.cfg"
|
||||||
|
|
||||||
|
RMDir /r $INSTDIR\t7x
|
||||||
RMDir /r $LOCALAPPDATA\t7x
|
RMDir /r $LOCALAPPDATA\t7x
|
||||||
|
|
||||||
Delete "$INSTDIR\Uninstall.exe"
|
Delete "$INSTDIR\Uninstall.exe"
|
||||||
RMDir $INSTDIR
|
RMDir $INSTDIR
|
||||||
SectionEnd
|
SectionEnd
|
||||||
@ -78,4 +108,4 @@ Function .onInstSuccess
|
|||||||
SetOutPath "$INSTDIR"
|
SetOutPath "$INSTDIR"
|
||||||
CreateShortcut "$DESKTOP\${PRODUCT_NAME}.lnk" "$INSTDIR\t7x.exe" "" "$INSTDIR"
|
CreateShortcut "$DESKTOP\${PRODUCT_NAME}.lnk" "$INSTDIR\t7x.exe" "" "$INSTDIR"
|
||||||
${EndIf}
|
${EndIf}
|
||||||
FunctionEnd
|
FunctionEnd
|