[tuxdroid-svn] r5224 - software_suite_v3/smart-core/smart-api/python/trunk
Status: Beta
Brought to you by:
ks156
|
From: remi <c2m...@c2...> - 2009-07-29 14:42:24
|
Author: remi
Date: 2009-07-29 16:42:10 +0200 (Wed, 29 Jul 2009)
New Revision: 5224
Modified:
software_suite_v3/smart-core/smart-api/python/trunk/installer.nsi
Log:
* Fixed shortcut location in the start menu (-> TuxBox 2.0\Tuxware\Tux Droid Shell.lnk)
Modified: software_suite_v3/smart-core/smart-api/python/trunk/installer.nsi
===================================================================
--- software_suite_v3/smart-core/smart-api/python/trunk/installer.nsi 2009-07-29 13:43:47 UTC (rev 5223)
+++ software_suite_v3/smart-core/smart-api/python/trunk/installer.nsi 2009-07-29 14:42:10 UTC (rev 5224)
@@ -4,7 +4,7 @@
; HM NIS Edit Wizard helper defines
!define PRODUCT_NAME "Smart API for python"
-!define PRODUCT_VERSION "0.4.0"
+!define PRODUCT_VERSION "0.4.0-b1"
; Output names
!define FINAL_INSTALLER_EXE "pySmartAPIInstaller_${PRODUCT_VERSION}.exe"
@@ -71,7 +71,7 @@
; Reveal shortcuts to all users
SetShellVarContext all
; Write shortcut in start menu
- CreateShortCut "$SMPROGRAMS\Tux Droid\Tux Droid Shell.lnk" "$TUXDROID_PATH\bin\tuxsh.bat" "" "$TUXDROID_PATH\resources\images\tuxsh.ico" 0
+ CreateShortCut "$SMPROGRAMS\TuxBox 2.0\Tuxware\Tux Droid Shell.lnk" "$TUXDROID_PATH\bin\tuxsh.bat" "" "$TUXDROID_PATH\resources\images\tuxsh.ico" 0
; Write the uninstall file
WriteUninstaller "$UNINSTALLERS_SUB_PATH\${UNINSTALLER_EXE}"
@@ -98,7 +98,7 @@
; Reveal shortcuts to all users
SetShellVarContext all
; Remove shortcuts
- Delete "$SMPROGRAMS\Tux Droid\Tux Shell.lnk"
+ Delete "$SMPROGRAMS\TuxBox 2.0\Tuxware\Tux Droid Shell.lnk"
; Quit the uninstaller
Quit
|