forked from MovingBlocks/TerasologyLauncher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebstart-template.jnlp
46 lines (38 loc) · 1.98 KB
/
webstart-template.jnlp
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
<?xml version="1.0" encoding="UTF-8"?>
<jnlp spec="6.0+" xmlns:jfx="http://javafx.com" href="webstart.jnlp">
<information>
<title>Terasology Launcher</title>
<vendor>MovingBlocks</vendor>
<homepage href="https://terasology.org"/>
<description>Terasology Launcher Desc</description>
<description kind="short">Terasology Launcher (SHORT)</description>
<description kind="tooltip">Terasology Launcher (TOOLTIP)</description>
<icon href="icons/gooey_star_128.png" width="128" height="128"/>
<icon href="icons/gooey_star_64.png" width="64" height="64"/>
<icon href="icons/gooey_star_32.png" width="32" height="32"/>
<icon href="icons/gooey_star_16.png" width="16" height="16"/>
<icon kind="splash" href="icons/gooey_star.png"/>
<shortcut online="true" install="true">
<desktop/>
<menu submenu="Terasology"/>
</shortcut>
</information>
<resources>
<!-- Acceptable JVMs in preferred order, best first -->
<java version="1.8+" href="http://java.sun.com/products/autodl/j2se" java-vm-args="-ea" initial-heap-size="128m" max-heap-size="1024m"/>
<java version="1.7+" href="http://java.sun.com/products/autodl/j2se" java-vm-args="-ea" initial-heap-size="128m" max-heap-size="1024m"/>
<jfx:javafx-runtime version="2.1+"/>
<!-- Libary jars will be added here by the gradle task "updateJnlp"-->
</resources>
<application-desc
name="Terasology Launcher (APPNAME)"
main-class="org.terasology.launcher.TerasologyLauncher">
</application-desc>
<!-- check: always check for updates before launching the application -->
<!-- policy: ask the user if he/she wants to download and run the updated version, or launch the cached version -->
<update check="always" policy="prompt-update"/>
<security>
<all-permissions/>
<!-- all-permissions requires the jars be signed -->
</security>
</jnlp>