From 3a21005609066479999aebce60071bc53065271c Mon Sep 17 00:00:00 2001 From: Rim Date: Sun, 9 Mar 2025 00:07:56 -0500 Subject: [PATCH] chore: change installer name --- installer/compile.bat | 2 +- installer/{iw7_Installer.nsi => iw7-installer.nsi} | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) rename installer/{iw7_Installer.nsi => iw7-installer.nsi} (98%) diff --git a/installer/compile.bat b/installer/compile.bat index 96709a9..2e5c021 100644 --- a/installer/compile.bat +++ b/installer/compile.bat @@ -4,7 +4,7 @@ cd /D "%~dp0" if not exist "build" mkdir "build" -"tools\makensis.exe" "iw7_Installer.nsi" +"tools\makensis.exe" "iw7-installer.nsi" if %ERRORLEVEL% neq 0 ( echo.s diff --git a/installer/iw7_Installer.nsi b/installer/iw7-installer.nsi similarity index 98% rename from installer/iw7_Installer.nsi rename to installer/iw7-installer.nsi index b7cb77a..6acd5ea 100644 --- a/installer/iw7_Installer.nsi +++ b/installer/iw7-installer.nsi @@ -20,7 +20,7 @@ SetCompressorDictSize 64 ; Attributes Name "${PRODUCT_NAME}" -OutFile "build\iw7Installer.exe" +OutFile "build\iw7-installer.exe" InstallDir "$EXEDIR" RequestExecutionLevel user ; Request user-level execution, not admin @@ -155,7 +155,7 @@ SectionEnd Section "Batch Files" SecBatchData SetOutPath $INSTDIR - File "..\cfg\!launch_iw7_mod.bat" + File "..\cfg\!start_client.bat" File "..\cfg\!start_mp_server.bat" File "..\cfg\!start_zm_server.bat" SectionEnd @@ -194,7 +194,7 @@ Section "Uninstall" Delete $INSTDIR\tlsdll.dll Delete $INSTDIR\main\server_mp.cfg Delete $INSTDIR\main\server_zm.cfg - Delete "$INSTDIR\!launch_iw7_mod.bat" + Delete "$INSTDIR\!start_client.bat" Delete "$INSTDIR\!start_mp_server.bat" Delete "$INSTDIR\!start_zm_server.bat"