From f6c472fd2c93f8ca526c672a5a0c5ad44b2981bf Mon Sep 17 00:00:00 2001 From: sfan5 Date: Tue, 9 Dec 2025 17:49:37 +0100 Subject: [PATCH] Rename launcher exe to be lowercase, and update RC file --- .github/workflows/windows.yml | 4 ++-- misc/sfx-launcher.nsi | 2 +- misc/winresource.rc | 11 +---------- 3 files changed, 4 insertions(+), 13 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index ceec2ab8ad..3d05dbd22a 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -14,7 +14,7 @@ on: - 'cmake/Modules/**' - 'po/**.po' - 'util/buildbot/**' - - 'misc/*.manifest' + - 'misc/*' - '.github/workflows/windows.yml' pull_request: paths: @@ -28,7 +28,7 @@ on: - 'cmake/Modules/**' - 'po/**.po' - 'util/buildbot/**' - - 'misc/*.manifest' + - 'misc/*' - '.github/workflows/windows.yml' jobs: diff --git a/misc/sfx-launcher.nsi b/misc/sfx-launcher.nsi index 45369c7e21..7d959f0cca 100644 --- a/misc/sfx-launcher.nsi +++ b/misc/sfx-launcher.nsi @@ -1,7 +1,7 @@ !include "meta.nsh" # useful docs: -OutFile "..\${PROJECT_NAME_C}-${VERSION_STRING}.exe" +OutFile "..\${PROJECT_NAME}-${VERSION_STRING}.exe" Name "${PROJECT_NAME_C}" Icon "${ICONPATH}" SetCompressor /SOLID lzma diff --git a/misc/winresource.rc b/misc/winresource.rc index 1988b19289..5f2dd9e495 100644 --- a/misc/winresource.rc +++ b/misc/winresource.rc @@ -9,12 +9,6 @@ #include "config.h" #undef USE_CMAKE_CONFIG_H -#if RUN_IN_PLACE - #define BUILDMODE "RUN_IN_PLACE=1" -#else - #define BUILDMODE "RUN_IN_PLACE=0" -#endif - #ifdef __MINGW32__ CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST "luanti.exe.manifest" #endif @@ -44,17 +38,14 @@ BEGIN BEGIN BLOCK "040904b0" BEGIN - VALUE "Comments", "" VALUE "CompanyName", PROJECT_NAME_C " community" VALUE "FileDescription", PROJECT_NAME_C " engine" VALUE "FileVersion", VERSION_STRING VALUE "InternalName", PROJECT_NAME - VALUE "LegalCopyright", "(c) 2010-2024 Perttu Ahola (celeron55) and contributors" VALUE "OriginalFilename", PROJECT_NAME ".exe" - VALUE "PrivateBuild", VERSION_EXTRA + VALUE "LegalCopyright", "(c) 2010-2025 Perttu Ahola (celeron55) and contributors" VALUE "ProductName", PROJECT_NAME_C VALUE "ProductVersion", PRODUCT_VERSION_STRING - VALUE "SpecialBuild", BUILDMODE END END BLOCK "VarFileInfo"