// libjfxwebkit.dylib cannot be deployed on the MAS due to deprecated dependencies

This commit is contained in:
Reinhard Pointner 2016-05-04 03:06:58 +08:00
parent b3261d7a56
commit b6e942e2e9
2 changed files with 7 additions and 3 deletions

View File

@ -356,8 +356,12 @@
<param name="application.icon" value="${dir.installer}/appbundle/filebot.icns" /> <param name="application.icon" value="${dir.installer}/appbundle/filebot.icns" />
<param name="application.cert.appbundle" value="3rd Party Mac Developer Application: Point Planck Limited" /> <param name="application.cert.appbundle" value="3rd Party Mac Developer Application: Point Planck Limited" />
<param name="application.cert.installer" value="3rd Party Mac Developer Installer: Point Planck Limited" /> <param name="application.cert.installer" value="3rd Party Mac Developer Installer: Point Planck Limited" />
<!-- MAS does not allow subtitle apps -->
<param name="application.mode" value="Rename|Episodes|SFV|Filter|List" /> <param name="application.mode" value="Rename|Episodes|SFV|Filter|List" />
<param name="application.help" value="show" />
<!-- libjfxwebkit.dylib cannot be deployed on the MAS due to deprecated dependencies -->
<param name="application.help" value="skip" />
</antcall> </antcall>
</target> </target>

View File

@ -139,7 +139,7 @@ public class Main {
if (!"skip".equals(System.getProperty("application.update"))) { if (!"skip".equals(System.getProperty("application.update"))) {
try { try {
checkUpdate(); checkUpdate();
} catch (Exception e) { } catch (Throwable e) {
debug.log(Level.WARNING, "Failed to check for updates", e); debug.log(Level.WARNING, "Failed to check for updates", e);
} }
} }
@ -148,7 +148,7 @@ public class Main {
if (!"skip".equals(System.getProperty("application.help"))) { if (!"skip".equals(System.getProperty("application.help"))) {
try { try {
checkGettingStarted(); checkGettingStarted();
} catch (Exception e) { } catch (Throwable e) {
debug.log(Level.WARNING, "Failed to show Getting Started help", e); debug.log(Level.WARNING, "Failed to show Getting Started help", e);
} }
} }