diff options
author | marha <marha@users.sourceforge.net> | 2014-08-30 13:34:18 +0200 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2014-08-30 13:35:10 +0200 |
commit | 0a9ab140bb01b96888e313466a73e26e5156f22d (patch) | |
tree | be730e50ef36bbbf06cbfc7a6086e13e18a9d8ce /xorg-server/installer/vcxsrv-debug.nsi | |
parent | 4469aefef31cd682683944aa91e0b3edc0042fa4 (diff) | |
download | vcxsrv-0a9ab140bb01b96888e313466a73e26e5156f22d.tar.gz vcxsrv-0a9ab140bb01b96888e313466a73e26e5156f22d.tar.bz2 vcxsrv-0a9ab140bb01b96888e313466a73e26e5156f22d.zip |
Also show version information in the list of installed programs
Diffstat (limited to 'xorg-server/installer/vcxsrv-debug.nsi')
-rw-r--r-- | xorg-server/installer/vcxsrv-debug.nsi | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/xorg-server/installer/vcxsrv-debug.nsi b/xorg-server/installer/vcxsrv-debug.nsi index 00319b949..46e2564a4 100644 --- a/xorg-server/installer/vcxsrv-debug.nsi +++ b/xorg-server/installer/vcxsrv-debug.nsi @@ -1,6 +1,6 @@ /* This file is part of vcxsrv.
*
- * Copyright (C) 2009 Marc Haesen
+ * Copyright (C) 2014 marha@users.sourceforge.net
*
* vcxsrv is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -30,6 +30,14 @@ InstallDir $PROGRAMFILES32\VcXsrv ; overwrite the old one automatically)
InstallDirRegKey HKLM SOFTWARE\VcXsrv "Install_Dir"
+LoadLanguageFile "${NSISDIR}\Contrib\Language files\English.nlf"
+
+VIProductVersion "1.15.2.0"
+VIAddVersionKey /LANG=${LANG_ENGLISH} "ProductName" "VcXsrv"
+VIAddVersionKey /LANG=${LANG_ENGLISH} "FileDescription" "VcXsrv windows xserver"
+VIAddVersionKey /LANG=${LANG_ENGLISH} "FileVersion" "1.15.2.0"
+VIAddVersionKey /LANG=${LANG_ENGLISH} "ProductVersion" "1.15.2.0"
+
; Request application privileges for Windows Vista
RequestExecutionLevel admin
|