-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathIzPack-install-windows.xml
More file actions
108 lines (91 loc) · 3.71 KB
/
IzPack-install-windows.xml
File metadata and controls
108 lines (91 loc) · 3.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<?xml version="1.0" encoding="iso-8859-1" standalone="yes" ?>
<!--
To compile it :
- go in the bin directory where you installed IzPack
- call "compile ../sample/install.xml -b ../sample"
-->
<installation version="1.0">
<info>
<appname>LiveShift</appname>
<appversion>@{version}</appversion>
<authors>
<author name="Fabio Hecht" email="hecht@liveshift.net"/>
<author name="Thomas Bocek" email="bocek@liveshift.net"/>
<author name="CSG@IFI, University of Zurich" email="http://www.csg.uzh.ch/" />
</authors>
<url>http://www.liveshift.net/</url>
</info>
<guiprefs width="640" height="480" resizable="no">
<modifier key="useButtonIcons" value="yes"/>
<modifier key="useLabelIcons" value="no"/>
<modifier key="labelGap" value="2"/>
<modifier key="layoutAnchor" value="NORTH"/>
<modifier key="useHeadingPanel" value="yes"/>
<modifier key="headingImageOnLeft" value="yes"/>
<modifier key="headingLineCount" value="1"/>
<modifier key="headingFontSize" value="1.5"/>
<modifier key="headingBackgroundColor" value="0x00ffffff"/>
<modifier key="headingPanelCounter" value="text"/>
<modifier key="headingPanelCounterPos" value="inHeading"/>
</guiprefs>
<locale>
<langpack iso3="eng"/>
</locale>
<!--
The resources section.
The ids must be these ones if you want to use the LicensePanel and/or the InfoPanel.
-->
<resources>
<res id="LicencePanel.licence" src="license.txt"/>
<!-- res id="InfoPanel.info" src="Readme.txt"/ -->
<!-- res id="Installer.image" src="../images/logo_liveshift_installer.png" / -->
<res id="Heading.image" src="../images/better-v2-300px.png"/>
<res id="shortcutSpec.xml" src="../shortcutSpec.xml" />
</resources>
<!--
The panels section.
We indicate here which panels we want to use. The order will be respected.
-->
<panels>
<panel classname="HelloPanel"/>
<!-- panel classname="InfoPanel"/ -->
<panel classname="LicencePanel"/>
<panel classname="TargetPanel"/>
<panel classname="PacksPanel"/>
<panel classname="InstallPanel"/>
<panel classname="ShortcutPanel"/>
<panel classname="SimpleFinishPanel"/>
</panels>
<!--
The packs section.
We specify here our packs.
-->
<packs>
<pack name="LiveShift" required="yes" checked="yes">
<description>The base files</description>
<file src="license.txt" targetdir="$INSTALL_PATH"/>
<file src="liveshift.exe" targetdir="$INSTALL_PATH">
<os family="windows"/>
</file>
<file src="liveshift.ico" targetdir="$INSTALL_PATH">
<os family="windows"/>
</file>
<file src="gpl.ico" targetdir="$INSTALL_PATH">
<os family="windows"/>
</file>
<fileset dir="lib" targetdir="$INSTALL_PATH/lib"/>
</pack>
<pack name="VLC libraries" required="no" checked="yes">
<description>VLC libraries, not necessary if you already have the latest version of VLC installed. Recommended anyway because this is the right version.</description>
<fileset dir="vlclib/windows/" targetdir="$INSTALL_PATH/vlclibs">
<os family="windows"/>
<include name="**"/>
</fileset>
</pack>
<!-- pack name="Sources" required="no" checked="no">
<description>The sources</description>
<file src="src" targetdir="$INSTALL_PATH"/>
</pack -->
</packs>
<native type="izpack" name="ShellLink.dll"/>
</installation>