From 140ecef1dfd1c39ce554ce0dbe79ddf587f75b7c Mon Sep 17 00:00:00 2001 From: Reinhard Pointner Date: Sun, 17 Mar 2013 14:20:27 +0000 Subject: [PATCH] + version bump to v3.5 --- source/net/sourceforge/filebot/Settings.properties | 6 +++--- website/scripts/amc.groovy | 3 +++ 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/source/net/sourceforge/filebot/Settings.properties b/source/net/sourceforge/filebot/Settings.properties index ef66bab5..16ed6607 100644 --- a/source/net/sourceforge/filebot/Settings.properties +++ b/source/net/sourceforge/filebot/Settings.properties @@ -1,14 +1,14 @@ # application settings application.name: FileBot -application.version: 3.4 +application.version: 3.5 application.revision: @{svn.revision} # application updates -update.url: http://www.filebot.net/update.xml +update.url: http://filebot.net/update.xml donate.url: http://www.filebot.net/donate.html # base URL for resolving script resources -script.fn: http://www.filebot.net/scripts/%s.groovy +script.fn: http://filebot.net/scripts/%s.groovy script.svn: http://sourceforge.net/p/filebot/code/HEAD/tree/trunk/website/scripts/%s.groovy?format=raw # google analytics diff --git a/website/scripts/amc.groovy b/website/scripts/amc.groovy index 45c2c596..8fc6df6c 100644 --- a/website/scripts/amc.groovy +++ b/website/scripts/amc.groovy @@ -2,6 +2,9 @@ def input = [] def failOnError = _args.conflict == 'fail' +// CHECK MINIMUM VERSION +// if (net.sourceforge.filebot.Settings.applicationRevisionNumber < 1540) { throw new Exception("Please update to FileBot v3.5 or higher") } + // print input parameters _args.bindings?.each{ _log.fine("Parameter: $it.key = $it.value") } args.each{ _log.fine("Argument: $it") }