diff --git a/source/net/filebot/Settings.properties b/source/net/filebot/Settings.properties index 9f862152..d3c42959 100644 --- a/source/net/filebot/Settings.properties +++ b/source/net/filebot/Settings.properties @@ -28,9 +28,6 @@ link.bugs: https://www.filebot.net/report.html link.channel: https://www.filebot.net/channel.html link.help: https://www.filebot.net/support.html link.help.mas: https://www.filebot.net/mac/support.html -link.subtitles.mas: https://www.filebot.net/mac/subtitles.html -link.console.mas: https://www.filebot.net/mac/brew.html - # api keys for webservices apikey.fanart.tv: 780b986b22c35e6f7a134a2f392c2deb diff --git a/source/net/filebot/ui/FileBotMenuBar.java b/source/net/filebot/ui/FileBotMenuBar.java index 6ddd8d98..683da7a9 100644 --- a/source/net/filebot/ui/FileBotMenuBar.java +++ b/source/net/filebot/ui/FileBotMenuBar.java @@ -32,12 +32,6 @@ public class FileBotMenuBar { help.add(createLink("Contact us on Twitter", getApplicationProperty("link.twitter"))); help.add(createLink("Contact us on Facebook", getApplicationProperty("link.facebook"))); - if (isMacSandbox()) { - help.addSeparator(); - help.add(createLink("How to install FileBot Subtitles?", getApplicationProperty("link.subtitles.mas"))); - help.add(createLink("How to install FileBot Command Line Tools?", getApplicationProperty("link.console.mas"))); - } - JMenuBar menuBar = new JMenuBar(); menuBar.add(help); return menuBar;