Thank you stackoverflow
This commit is contained in:
parent
5fae4fc43a
commit
cc5ce54d43
@ -100,7 +100,7 @@ Select components to uninstall:
|
||||
# ^UnComponentsSubText2
|
||||
Or, select the optional components you wish to uninstall:
|
||||
# ^DirText
|
||||
Setup will install $(^NameDA) in the following folder. To install in a different folder, click Browse and select another folder. $_CLICK
|
||||
Setup will install $(^NameDA) in the current application directory. To install in a different folder, click Browse and select another folder. $_CLICK
|
||||
# ^DirSubText
|
||||
Destination Folder
|
||||
# ^DirBrowseText
|
||||
|
@ -81,13 +81,13 @@
|
||||
!endif
|
||||
|
||||
!ifdef MUI_FINISHPAGE
|
||||
${LangFileString} MUI_TEXT_FINISH_INFO_TITLE "Completing the $(^NameDA) Setup Wizard"
|
||||
${LangFileString} MUI_TEXT_FINISH_INFO_TITLE "Finish the $(^NameDA) Setup Wizard"
|
||||
${LangFileString} MUI_TEXT_FINISH_INFO_TEXT "$(^NameDA) has been installed on your computer. SAMPLETEXT6 $\r$\n$\r$\nClick Finish to close this wizard."
|
||||
${LangFileString} MUI_TEXT_FINISH_INFO_REBOOT "Your computer must be restarted in order to complete the installation of $(^NameDA). Do you want to reboot now?"
|
||||
!endif
|
||||
|
||||
!ifdef MUI_UNFINISHPAGE
|
||||
${LangFileString} MUI_UNTEXT_FINISH_INFO_TITLE "Completing the $(^NameDA) Uninstall Wizard"
|
||||
${LangFileString} MUI_UNTEXT_FINISH_INFO_TITLE "Finish the $(^NameDA) Uninstall Wizard"
|
||||
${LangFileString} MUI_UNTEXT_FINISH_INFO_TEXT "$(^NameDA) has been uninstalled from your computer.$\r$\n$\r$\nClick Finish to close this wizard."
|
||||
${LangFileString} MUI_UNTEXT_FINISH_INFO_REBOOT "Your computer must be restarted in order to complete the uninstallation of $(^NameDA). Do you want to reboot now?"
|
||||
!endif
|
||||
|
@ -1 +1,15 @@
|
||||
This is a test
|
||||
T7x will no longer receive updates
|
||||
|
||||
It is with deep regret that I must inform you that I have received a formal complaint from the original copyright holder of the source code. T7x is a project that utilizes source code from another defunct project called "boiii," licensed under the GPLv3.
|
||||
|
||||
I hold deep respect for the immense amount of work and time invested by the previous developer in reverse-engineering and enabling the game to be modded to the extent this client allows. Therefore, I am honoring the claim that I cannot use boiii's technology.
|
||||
|
||||
As part of the agreement, this project is to be ARCHIVED IMMEDIATELY, and it will no longer receive any updates or support.
|
||||
|
||||
It was also a agreed that this notice shall remain, informing the public that I am not discontinuing this client due to an action by a specific American video game corporation.
|
||||
|
||||
All the involved parties wish that any further attempts at creating a modded client for Black Ops 3 allocate time and effort into developing their own technology rather than utilizing boiii's source code.
|
||||
|
||||
No other services provided by AlterWare are subject to change.
|
||||
|
||||
- T7x Developer(s)
|
Binary file not shown.
Before Width: | Height: | Size: 515 KiB After Width: | Height: | Size: 2.0 MiB |
@ -29,12 +29,17 @@ VIAddVersionKey "FileVersion" "${SETUP_VERSION}"
|
||||
!define MUI_HEADERIMAGE
|
||||
!define MUI_FINISHPAGE_NOAUTOCLOSE
|
||||
; !define MUI_FINISHPAGE_RUN "$INSTDIR\t7x.exe"
|
||||
!define MUI_FINISHPAGE_TEXT "Setup has finished installing ${PRODUCT_NAME} on your computer.$\n$\nClick Finish to close this wizard.$\n$\nRun the t7x.exe application from within your Call of Duty Black Ops 3 game folder or use the shortcut created on your Desktop."
|
||||
!define MUI_FINISHPAGE_TEXT "Setup has finished installing ${PRODUCT_NAME} on your computer.$\nClick Finish to close this wizard.$\n$\nRun the t7x.exe application from within your Call of Duty Black Ops 3 game folder or use the Desktop shortcut."
|
||||
|
||||
; Modern UI Settings
|
||||
!define MUI_ABORTWARNING
|
||||
!define MUI_UNABORTWARNING
|
||||
|
||||
!define MUI_FINISHPAGE_SHOWREADME ""
|
||||
!define MUI_FINISHPAGE_SHOWREADME_CHECKED
|
||||
!define MUI_FINISHPAGE_SHOWREADME_TEXT "Create Desktop Shortcut"
|
||||
!define MUI_FINISHPAGE_SHOWREADME_FUNCTION finishpageaction
|
||||
|
||||
; Show details by default
|
||||
ShowInstDetails show
|
||||
ShowInstDetails show
|
||||
@ -46,7 +51,7 @@ ShowInstDetails show
|
||||
|
||||
; Pages
|
||||
!insertmacro MUI_PAGE_WELCOME
|
||||
;!insertmacro MUI_PAGE_LICENSE "Readme.txt"
|
||||
; !insertmacro MUI_PAGE_LICENSE "Readme.txt"
|
||||
!insertmacro MUI_PAGE_DIRECTORY
|
||||
!insertmacro MUI_PAGE_INSTFILES
|
||||
!insertmacro MUI_PAGE_FINISH
|
||||
@ -80,11 +85,8 @@ Section "LocalAppData Files" SecData
|
||||
File /r "game\localappdata\t7x\*.*"
|
||||
SectionEnd
|
||||
|
||||
Var Checkbox
|
||||
|
||||
Function .onInit
|
||||
; Initialize the checkbox value
|
||||
StrCpy $Checkbox 1
|
||||
Function finishpageaction
|
||||
CreateShortcut "$DESKTOP\${PRODUCT_NAME}.lnk" "$INSTDIR\t7x.exe" "" "$INSTDIR\t7x.exe"
|
||||
FunctionEnd
|
||||
|
||||
; Uninstaller Sections
|
||||
@ -108,9 +110,5 @@ Section "Uninstall"
|
||||
SectionEnd
|
||||
|
||||
; Create the desktop shortcut based on the checkbox state
|
||||
Function .onInstSuccess
|
||||
${If} $Checkbox == 1
|
||||
SetOutPath "$INSTDIR"
|
||||
CreateShortcut "$DESKTOP\${PRODUCT_NAME}.lnk" "$INSTDIR\t7x.exe" "" "$INSTDIR\t7x.exe"
|
||||
${EndIf}
|
||||
FunctionEnd
|
||||
; Function .onInstSuccess
|
||||
; FunctionEnd
|
Loading…
Reference in New Issue
Block a user