From b6e942e2e941c6ad1121e963f637dbe98ed7791e Mon Sep 17 00:00:00 2001 From: Reinhard Pointner Date: Wed, 4 May 2016 03:06:58 +0800 Subject: [PATCH] // libjfxwebkit.dylib cannot be deployed on the MAS due to deprecated dependencies --- build.xml | 6 +++++- source/net/filebot/Main.java | 4 ++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/build.xml b/build.xml index 2388840b..c58bd354 100644 --- a/build.xml +++ b/build.xml @@ -356,8 +356,12 @@ + + - + + + diff --git a/source/net/filebot/Main.java b/source/net/filebot/Main.java index ebff7980..cc856766 100644 --- a/source/net/filebot/Main.java +++ b/source/net/filebot/Main.java @@ -139,7 +139,7 @@ public class Main { if (!"skip".equals(System.getProperty("application.update"))) { try { checkUpdate(); - } catch (Exception e) { + } catch (Throwable 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"))) { try { checkGettingStarted(); - } catch (Exception e) { + } catch (Throwable e) { debug.log(Level.WARNING, "Failed to show Getting Started help", e); } }