mirror of https://github.com/rusefi/RomRaider.git
Getting closer to linux installer.
git-svn-id: http://svn.3splooges.com/romraider-arch/trunk@756 d2e2e1cd-ba16-0410-be16-b7c4453c7c2d
This commit is contained in:
parent
c0f7cdbe10
commit
7ef6fd3c10
|
@ -17,7 +17,7 @@
|
|||
</locale>
|
||||
<resources>
|
||||
<res id="LicencePanel.licence" src="license.txt"/>
|
||||
<res id="InfoPanel.info" src="release notes.txt"/>
|
||||
<res id="InfoPanel.info" src="release_notes.txt"/>
|
||||
<res id="shortcutSpec.xml" src="installer/shortcutSpec.xml"/>
|
||||
</resources>
|
||||
|
||||
|
@ -28,7 +28,7 @@
|
|||
<panel classname="LicencePanel"/>
|
||||
<panel classname="TargetPanel"/>
|
||||
<panel classname="PacksPanel"/>
|
||||
<!-- <panel classname="ShortcutPanel"/> (Not supported (yet?)) -->
|
||||
<panel classname="ShortcutPanel"/>
|
||||
<panel classname="InstallPanel"/>
|
||||
<panel classname="SimpleFinishPanel"/>
|
||||
</panels>
|
||||
|
@ -40,7 +40,7 @@
|
|||
<file src="Enginuity.bat" targetdir="$INSTALL_PATH"/>
|
||||
<file src="log4j.properties" targetdir="$INSTALL_PATH"/>
|
||||
<file src="license.txt" targetdir="$INSTALL_PATH"/>
|
||||
<file src="release notes.txt" targetdir="$INSTALL_PATH"/>
|
||||
<file src="release_notes.txt" targetdir="$INSTALL_PATH"/>
|
||||
<file src="images" targetdir="$INSTALL_PATH"/>
|
||||
<fileset dir="graphics" targetdir="$INSTALL_PATH/graphics" excludes="*.bmp"/>
|
||||
|
||||
|
|
|
@ -1,24 +1,101 @@
|
|||
<shortcuts>
|
||||
<skipIfNotSupported />
|
||||
<programGroup defaultName="Enginuity.org" location="applications||startMenu"/>
|
||||
<programGroup defaultName="Enginuity"
|
||||
location="applications||startMenu" />
|
||||
|
||||
<shortcut name="Enginuity"
|
||||
target="$INSTALL_PATH\Enginuity.exe"
|
||||
workingDirectory="$INSTALL_PATH"
|
||||
iconFile="$INSTALL_PATH\graphics\enginuity-ico.ico"
|
||||
<shortcut
|
||||
name="Enginuity"
|
||||
programGroup="yes"
|
||||
desktop="yes"
|
||||
applications="no"
|
||||
startMenu="no"
|
||||
startup="no"
|
||||
target="java"
|
||||
commandLine="-jar "$INSTALL_PATH/Enginuity.jar""
|
||||
initialState="noShow"
|
||||
iconFile="$INSTALL_PATH/graphics/enginuity-ico.ico"
|
||||
workingDirectory="$INSTALL_PATH"
|
||||
type="Application"
|
||||
encoding="UTF-8"
|
||||
description="Enginuity ROM Editing Suite">
|
||||
<createForPack name="Base" />
|
||||
</shortcut>
|
||||
|
||||
|
||||
<shortcut
|
||||
name="License"
|
||||
programGroup="yes"
|
||||
desktop="yes"
|
||||
applications="no"
|
||||
startMenu="yes"
|
||||
startup="no"
|
||||
target=""
|
||||
workingDirectory=""
|
||||
commandLine=""
|
||||
initialState="noShow"
|
||||
iconFile="help"
|
||||
iconIndex="0"
|
||||
url="$INSTALL_PATH/license.txt"
|
||||
type="Link"
|
||||
encoding="UTF-8"
|
||||
description="Enginuity License agreement">
|
||||
<createForPack name="Base" />
|
||||
</shortcut>
|
||||
|
||||
|
||||
<shortcut
|
||||
name="Release Notes"
|
||||
programGroup="yes"
|
||||
desktop="yes"
|
||||
applications="no"
|
||||
startMenu="yes"
|
||||
startup="no"
|
||||
target=""
|
||||
workingDirectory=""
|
||||
commandLine=""
|
||||
initialState="noShow"
|
||||
iconFile="help"
|
||||
iconIndex="0"
|
||||
url="$INSTALL_PATH/release_notes.txt"
|
||||
type="Link"
|
||||
encoding="UTF-8"
|
||||
description="Enginuity Release Notes">
|
||||
<createForPack name="Base" />
|
||||
</shortcut>
|
||||
|
||||
<shortcut
|
||||
name="Enginuity Uninstaller"
|
||||
programGroup="yes"
|
||||
desktop="yes"
|
||||
applications="no"
|
||||
startMenu="no"
|
||||
startup="no"
|
||||
target="java"
|
||||
commandLine="-jar "$INSTALL_PATH/Uninstaller/uninstaller.jar""
|
||||
initialState="noShow"
|
||||
iconFile="trashcan_full"
|
||||
iconIndex="0"
|
||||
workingDirectory=""
|
||||
type="Application"
|
||||
encoding="UTF-8"
|
||||
description="Enginuity uninstaller">
|
||||
<createForPack name="Base" />
|
||||
</shortcut>
|
||||
|
||||
<!--
|
||||
<shortcut name="Enginuity" target="$INSTALL_PATH\Enginuity.bat"
|
||||
workingDirectory="$INSTALL_PATH"
|
||||
iconFile="$INSTALL_PATH\graphics\enginuity-ico.ico" programGroup="yes"
|
||||
encoding="UTF-8"
|
||||
desktop="yes" />
|
||||
|
||||
<shortcut name="Release Notes"
|
||||
target="$INSTALL_PATH\release notes.txt"
|
||||
programGroup="yes"/>
|
||||
target="$INSTALL_PATH\release notes.txt" programGroup="yes" />
|
||||
|
||||
<shortcut name="License Agreement"
|
||||
target="$INSTALL_PATH\license.txt"
|
||||
programGroup="yes"/>
|
||||
target="$INSTALL_PATH\license.txt" programGroup="yes" />
|
||||
|
||||
<shortcut name="Uninstall Enginuity"
|
||||
target="$INSTALL_PATH\Uninstaller\uninstaller.jar"
|
||||
programGroup="yes"/>
|
||||
|
||||
target="$INSTALL_PATH\Uninstaller\uninstaller.jar" programGroup="yes" />
|
||||
-->
|
||||
</shortcuts>
|
Loading…
Reference in New Issue