[tuxdroid-svn] r4680 - software_suite_v3/smart-core/smart-server/trunk
Status: Beta
Brought to you by:
ks156
|
From: remi <c2m...@c2...> - 2009-05-26 16:43:54
|
Author: remi
Date: 2009-05-26 18:43:41 +0200 (Tue, 26 May 2009)
New Revision: 4680
Modified:
software_suite_v3/smart-core/smart-server/trunk/installer.nsi
software_suite_v3/smart-core/smart-server/trunk/version.py
Log:
* updated installer nsi script
* bumped to 0.4.0
Modified: software_suite_v3/smart-core/smart-server/trunk/installer.nsi
===================================================================
--- software_suite_v3/smart-core/smart-server/trunk/installer.nsi 2009-05-26 16:31:04 UTC (rev 4679)
+++ software_suite_v3/smart-core/smart-server/trunk/installer.nsi 2009-05-26 16:43:41 UTC (rev 4680)
@@ -1,10 +1,10 @@
; installer.nsi
-; This installer which install the Tuxroid HTTP server
+; This installer which install the Smart-server
; -----------------------------------------------------------------------------
; HM NIS Edit Wizard helper defines
-!define PRODUCT_NAME "Tuxdroid HTTP server"
-!define PRODUCT_VERSION "0.3.0"
+!define PRODUCT_NAME "Smart Server"
+!define PRODUCT_VERSION "0.4.0"
; Output names
!define FINAL_INSTALLER_EXE "tuxHTTPServerInstaller_${PRODUCT_VERSION}.exe"
@@ -56,6 +56,7 @@
SetOutPath "$TUXDROID_PATH\softwares\tuxhttpserver\data"
File /r data\*
+ RMDir /r "$TUXDROID_PATH\softwares\tuxhttpserver\resources"
CreateDirectory "$TUXDROID_PATH\softwares\tuxhttpserver\resources"
SetOutPath "$TUXDROID_PATH\softwares\tuxhttpserver\resources"
File /r resources\*
@@ -64,6 +65,10 @@
SetOutPath "$TUXDROID_PATH\softwares\tuxhttpserver\util"
File /r util\*
+ CreateDirectory "$TUXDROID_PATH\softwares\tuxhttpserver\content"
+ SetOutPath "$TUXDROID_PATH\softwares\tuxhttpserver\content"
+ File /r content\*
+
SetOutPath "$TUXDROID_PATH\bin"
File delphi_launchers\tuxhttpserver_start.exe
File delphi_launchers\tuxhttpserver_stop.exe
@@ -119,6 +124,7 @@
RMDir /r "$TUXDROID_PATH\softwares\tuxhttpserver\data"
RMDir /r "$TUXDROID_PATH\softwares\tuxhttpserver\util"
+ RMDir /r "$TUXDROID_PATH\softwares\tuxhttpserver\resources"
Delete "$UNINSTALLERS_SUB_PATH\${UNINSTALLER_EXE}"
; Remove shortcuts
Modified: software_suite_v3/smart-core/smart-server/trunk/version.py
===================================================================
--- software_suite_v3/smart-core/smart-server/trunk/version.py 2009-05-26 16:31:04 UTC (rev 4679)
+++ software_suite_v3/smart-core/smart-server/trunk/version.py 2009-05-26 16:43:41 UTC (rev 4680)
@@ -7,7 +7,7 @@
# Distributed under the terms of the GNU General Public License
# http://www.gnu.org/copyleft/gpl.html
-version = '0.3.0'
+version = '0.4.0'
author = "Remi Jocaille (rem...@c2...)"
licence = "GPL"
date = "2009"
|