[tuxdroid-svn] r5227 - software_suite_v3/smart-core/smart-server/trunk
Status: Beta
Brought to you by:
ks156
|
From: remi <c2m...@c2...> - 2009-07-29 15:14:55
|
Author: remi
Date: 2009-07-29 17:14:44 +0200 (Wed, 29 Jul 2009)
New Revision: 5227
Modified:
software_suite_v3/smart-core/smart-server/trunk/installer.nsi
software_suite_v3/smart-core/smart-server/trunk/version.py
Log:
* Removed Start menu shortcuts on windows.
* Updated to 0.4.1-b10
Modified: software_suite_v3/smart-core/smart-server/trunk/installer.nsi
===================================================================
--- software_suite_v3/smart-core/smart-server/trunk/installer.nsi 2009-07-29 14:52:06 UTC (rev 5226)
+++ software_suite_v3/smart-core/smart-server/trunk/installer.nsi 2009-07-29 15:14:44 UTC (rev 5227)
@@ -4,7 +4,7 @@
; HM NIS Edit Wizard helper defines
!define PRODUCT_NAME "Smart Server"
-!define PRODUCT_VERSION "0.4.1-b9"
+!define PRODUCT_VERSION "0.4.1-b10"
; Output names
!define FINAL_INSTALLER_EXE "SmartServerInstaller_${PRODUCT_VERSION}.exe"
@@ -95,19 +95,10 @@
SetOutPath "$TUXDROID_PATH\resources\images"
File tuxsys.ico
- ; Reveal shortcuts to all users
- SetShellVarContext all
- ; Write shortcut in start menu
- CreateDirectory "$SMPROGRAMS\Tux Droid\Smart-Core"
- CreateDirectory "$SMPROGRAMS\Tux Droid\Smart-Core\Smart-Server"
- CreateShortCut "$SMPROGRAMS\Tux Droid\Smart-Core\Smart-Server\Start.lnk" "$TUXDROID_PATH\bin\smart_server_start.exe" "" "$TUXDROID_PATH\resources\images\tuxsys.ico" 0
- CreateShortCut "$SMPROGRAMS\Tux Droid\Smart-Core\Smart-Server\Stop.lnk" "$TUXDROID_PATH\bin\smart_server_stop.exe" "" "$TUXDROID_PATH\resources\images\tuxsys.ico" 0
- CreateShortCut "$SMPROGRAMS\Tux Droid\Smart-Core\Smart-Server\Restart.lnk" "$TUXDROID_PATH\bin\smart_server_restart.exe" "" "$TUXDROID_PATH\resources\images\tuxsys.ico" 0
-
; Write the uninstall file
WriteUninstaller "$UNINSTALLERS_SUB_PATH\${UNINSTALLER_EXE}"
- ; Start the server is requested
+ ; Start the server if requested
Push "START" ; push the search string onto the stack
Push "false" ; push a default value onto the stack
Call GetParameterValue
@@ -150,14 +141,6 @@
RMDir /r "$TUXDROID_PATH\softwares\smart-server"
Delete "$UNINSTALLERS_SUB_PATH\${UNINSTALLER_EXE}"
- ; Reveal shortcuts to all users
- SetShellVarContext all
- ; Remove shortcuts
- Delete "$SMPROGRAMS\Tux Droid\Smart-Core\Smart-Server\Stop.lnk"
- Delete "$SMPROGRAMS\Tux Droid\Smart-Core\Smart-Server\Start.lnk"
- Delete "$SMPROGRAMS\Tux Droid\Smart-Core\Smart-Server\Restart.lnk"
- RMDir /r "$SMPROGRAMS\Tux Droid\Smart-Core\Smart-Server"
-
; Quit the uninstaller
Quit
SectionEnd
Modified: software_suite_v3/smart-core/smart-server/trunk/version.py
===================================================================
--- software_suite_v3/smart-core/smart-server/trunk/version.py 2009-07-29 14:52:06 UTC (rev 5226)
+++ software_suite_v3/smart-core/smart-server/trunk/version.py 2009-07-29 15:14:44 UTC (rev 5227)
@@ -7,7 +7,7 @@
# Distributed under the terms of the GNU General Public License
# http://www.gnu.org/copyleft/gpl.html
-version = '0.4.1-b9'
+version = '0.4.1-b10'
author = "Remi Jocaille (rem...@c2...)"
licence = "GPL"
date = "2009"
|