diff --git a/T7x/Contrib/Language files/English.nlf b/T7x/Contrib/Language files/English.nlf index d325f03..aba7647 100644 --- a/T7x/Contrib/Language files/English.nlf +++ b/T7x/Contrib/Language files/English.nlf @@ -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 diff --git a/T7x/Contrib/Language files/English.nsh b/T7x/Contrib/Language files/English.nsh index 3151ae3..2ad2593 100644 --- a/T7x/Contrib/Language files/English.nsh +++ b/T7x/Contrib/Language files/English.nsh @@ -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 diff --git a/T7x/Readme.txt b/T7x/Readme.txt index 793aa68..0a8d96e 100644 --- a/T7x/Readme.txt +++ b/T7x/Readme.txt @@ -1 +1,15 @@ -This is a test \ No newline at end of file +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) \ No newline at end of file diff --git a/T7x/assets/banner-t7x-title.bmp b/T7x/assets/banner-t7x-title.bmp index 40ad965..3f07977 100644 Binary files a/T7x/assets/banner-t7x-title.bmp and b/T7x/assets/banner-t7x-title.bmp differ diff --git a/T7x/t7x_Installer.nsi b/T7x/t7x_Installer.nsi index 0f8062c..f0cc42b 100644 --- a/T7x/t7x_Installer.nsi +++ b/T7x/t7x_Installer.nsi @@ -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 \ No newline at end of file +; Function .onInstSuccess +; FunctionEnd \ No newline at end of file