diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2022-10-24 11:23:02 +0200 |
---|---|---|
committer | Sefa Eyeoglu <contact@scrumplex.net> | 2022-10-24 12:43:13 +0200 |
commit | 74b98af8e5573da4ca5a311fd13cb3f455bc1b9c (patch) | |
tree | 42105a06c6f4ee64f1ecc1db479f28399e32ffc4 /program_info | |
parent | 224304813a82815ace76b89d2bfd96668df6795c (diff) | |
download | PrismLauncher-74b98af8e5573da4ca5a311fd13cb3f455bc1b9c.tar.gz PrismLauncher-74b98af8e5573da4ca5a311fd13cb3f455bc1b9c.tar.bz2 PrismLauncher-74b98af8e5573da4ca5a311fd13cb3f455bc1b9c.zip |
fix: use display name in NSIS
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
Diffstat (limited to 'program_info')
-rw-r--r-- | program_info/win_install.nsi.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program_info/win_install.nsi.in b/program_info/win_install.nsi.in index 1c1f29da..0cd7ea11 100644 --- a/program_info/win_install.nsi.in +++ b/program_info/win_install.nsi.in @@ -4,7 +4,7 @@ Unicode true -Name "@Launcher_CommonName@" +Name "@Launcher_DisplayName@" InstallDir "$LOCALAPPDATA\Programs\@Launcher_CommonName@" InstallDirRegKey HKCU "Software\@Launcher_CommonName@" "InstallDir" RequestExecutionLevel user @@ -113,7 +113,7 @@ VIAddVersionKey /LANG=${LANG_ENGLISH} "ProductVersion" "@Launcher_VERSION_NAME4@ ;-------------------------------- ; The stuff to install -Section "@Launcher_CommonName@" +Section "@Launcher_DisplayName@" SectionIn RO |