+ version bump to v3.5
This commit is contained in:
parent
4dc5e26ae9
commit
140ecef1df
|
@ -1,14 +1,14 @@
|
||||||
# application settings
|
# application settings
|
||||||
application.name: FileBot
|
application.name: FileBot
|
||||||
application.version: 3.4
|
application.version: 3.5
|
||||||
application.revision: @{svn.revision}
|
application.revision: @{svn.revision}
|
||||||
|
|
||||||
# application updates
|
# 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
|
donate.url: http://www.filebot.net/donate.html
|
||||||
|
|
||||||
# base URL for resolving script resources
|
# 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
|
script.svn: http://sourceforge.net/p/filebot/code/HEAD/tree/trunk/website/scripts/%s.groovy?format=raw
|
||||||
|
|
||||||
# google analytics
|
# google analytics
|
||||||
|
|
|
@ -2,6 +2,9 @@
|
||||||
def input = []
|
def input = []
|
||||||
def failOnError = _args.conflict == 'fail'
|
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
|
// print input parameters
|
||||||
_args.bindings?.each{ _log.fine("Parameter: $it.key = $it.value") }
|
_args.bindings?.each{ _log.fine("Parameter: $it.key = $it.value") }
|
||||||
args.each{ _log.fine("Argument: $it") }
|
args.each{ _log.fine("Argument: $it") }
|
||||||
|
|
Loading…
Reference in New Issue