1
0
mirror of https://github.com/luanti-org/luanti.git synced 2025-12-12 10:15:26 +01:00

Rename launcher exe to be lowercase, and update RC file

This commit is contained in:
sfan5
2025-12-09 17:49:37 +01:00
parent ac7fb75ea3
commit f6c472fd2c
3 changed files with 4 additions and 13 deletions

View File

@@ -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:

View File

@@ -1,7 +1,7 @@
!include "meta.nsh"
# useful docs: <https://nsis.sourceforge.io/Docs/Chapter4.html>
OutFile "..\${PROJECT_NAME_C}-${VERSION_STRING}.exe"
OutFile "..\${PROJECT_NAME}-${VERSION_STRING}.exe"
Name "${PROJECT_NAME_C}"
Icon "${ICONPATH}"
SetCompressor /SOLID lzma

View File

@@ -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"