* fixed webstart auto-update by setting jnlp spec to Java 6 ... should have known that a year ago...

This commit is contained in:
Reinhard Pointner 2011-12-26 12:23:26 +00:00
parent 5fc97f9339
commit c1b49e98d2
1 changed files with 15 additions and 9 deletions

View File

@ -1,10 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<jnlp spec="1.0+" codebase="http://filebot.sourceforge.net/webstart/" href="filebot.jnlp"> <jnlp spec="6.0+" codebase="http://filebot.sourceforge.net/webstart/" href="filebot.jnlp">
<information> <information>
<title>FileBot</title> <title>FileBot</title>
<vendor>rednoah</vendor> <vendor>Reinhard Pointner</vendor>
<homepage href="http://filebot.sourceforge.net" /> <homepage href="http://filebot.sourceforge.net" />
<description>A cross-platform tool for tv renaming, subtitle download and file verification</description> <description>The ultimate TV Renamer and Subtitle Downloader</description>
<icon href="icon48.png" width="48" height="48" /> <icon href="icon48.png" width="48" height="48" />
<icon href="icon32.png" width="32" height="32" /> <icon href="icon32.png" width="32" height="32" />
@ -12,6 +12,10 @@
<icon href="shortcut.ico" kind="shortcut" /> <icon href="shortcut.ico" kind="shortcut" />
<icon href="splash.png" kind="splash" /> <icon href="splash.png" kind="splash" />
<shortcut online="true">
<desktop />
</shortcut>
<offline-allowed /> <offline-allowed />
</information> </information>
@ -19,6 +23,8 @@
<all-permissions /> <all-permissions />
</security> </security>
<update check="background" policy="prompt-update" />
<resources> <resources>
<property name="application.deployment" value="webstart" /> <property name="application.deployment" value="webstart" />
<property name="jnlp.packEnabled" value="true" /> <property name="jnlp.packEnabled" value="true" />