Author: nextgens
Date: 2006-11-20 19:26:23 +0000 (Mon, 20 Nov 2006)
New Revision: 11025
Modified:
trunk/apps/new_installer/Win_shortcutSpec.xml
Log:
new_installer: fix w32 shortcuts
Modified: trunk/apps/new_installer/Win_shortcutSpec.xml
===================================================================
--- trunk/apps/new_installer/Win_shortcutSpec.xml 2006-11-20 18:02:24 UTC
(rev 11024)
+++ trunk/apps/new_installer/Win_shortcutSpec.xml 2006-11-20 19:26:23 UTC
(rev 11025)
@@ -5,21 +5,6 @@
<skipIfNotSupported />
<programGroup defaultName="The Free Network Project"
location="applications"/>
-
- <shortcut
- name="Start the node"
- programGroup="yes"
- desktop="no"
- applications="no"
- startMenu="no"
- startup="no"
- target=""$INSTALL_PATH\bin\start.cmd""
- commandLine=""
- description="This starts the freenet node"
- workingDirectory=""$INSTALL_PATH""
- >
- <createForPack name="Base" />
- </shortcut>
<shortcut
name="Freenet Uninstaller"
@@ -28,11 +13,11 @@
applications="no"
startMenu="no"
startup="no"
- target=""javaw -jar
$INSTALL_PATH\Uninstaller\uninstaller.jar""
+ target="javaw -jar $INSTALL_PATH\Uninstaller\uninstaller.jar"
commandLine=""
iconFile="%SystemRoot%\system32\SHELL32.dll"
iconIndex="31"
- workingDirectory=""$INSTALL_PATH""
+ workingDirectory="$INSTALL_PATH"
description="This uninstalls Freenet">
<createForPack name="UninstallStuff" />
@@ -75,10 +60,9 @@
applications="no"
startMenu="no"
startup="no"
- target="start"
- commandLine=""javaw -jar jSite.jar""
+ target="javaw -jar jSite.jar"
description="This starts jSite"
- workingDirectory=""$INSTALL_PATH""
+ workingDirectory="$INSTALL_PATH"
>
<createForPack name="jSite" />
</shortcut>
@@ -90,10 +74,9 @@
applications="no"
startMenu="no"
startup="no"
- target="start"
- commandLine=""javaw -jar Thaw.jar""
+ target="javaw -jar Thaw.jar"
description="This starts Thaw"
- workingDirectory=""$INSTALL_PATH""
+ workingDirectory="$INSTALL_PATH"
>
<createForPack name="thaw" />
</shortcut>
@@ -105,10 +88,10 @@
applications="no"
startMenu="no"
startup="no"
- target=""$INSTALL_PATH\frost\frost.bat""
+ target="$INSTALL_PATH\frost\frost.bat"
commandLine=""
description="This starts Frost"
- workingDirectory=""$INSTALL_PATH\frost""
+ workingDirectory="$INSTALL_PATH\frost"
>
<createForPack name="frost" />
</shortcut>
@@ -120,11 +103,25 @@
applications="no"
startMenu="no"
startup="no"
- target=""$INSTALL_PATH\bin\stop.cmd""
+ target="$INSTALL_PATH\bin\stop.cmd"
commandLine=""
- workingDirectory=""$INSTALL_PATH""
+ workingDirectory="$INSTALL_PATH"
description="This stops the freenet node">
<createForPack name="Base" />
</shortcut>
+
+ <shortcut
+ name="Start the node"
+ programGroup="yes"
+ desktop="no"
+ applications="no"
+ startMenu="no"
+ startup="no"
+ target="$INSTALL_PATH\bin\start.cmd"
+ commandLine=""
+ description="This starts the freenet node"
+ workingDirectory="$INSTALL_PATH">
+ <createForPack name="Base" />
+ </shortcut>
</shortcuts>