diff --git a/build.xml b/build.xml index 5ad89436..afc999fd 100644 --- a/build.xml +++ b/build.xml @@ -463,7 +463,7 @@ - properties['svn.revision'] = 'svn update'.execute().text.replaceAll(/\D/, '') + properties['svn.revision'] = 'svn update'.execute().text.split(/\n/).last().replaceAll(/\D/, '') Revision: ${svn.revision} diff --git a/source/net/sourceforge/filebot/Settings.properties b/source/net/sourceforge/filebot/Settings.properties index b757655b..e9c2612f 100644 --- a/source/net/sourceforge/filebot/Settings.properties +++ b/source/net/sourceforge/filebot/Settings.properties @@ -1,6 +1,6 @@ # application settings application.name: FileBot -application.version: 2.64 +application.version: 3.0 application.revision: @{svn.revision} # application updates diff --git a/source/net/sourceforge/filebot/WebServices.java b/source/net/sourceforge/filebot/WebServices.java index f56f191f..f58e185a 100644 --- a/source/net/sourceforge/filebot/WebServices.java +++ b/source/net/sourceforge/filebot/WebServices.java @@ -27,7 +27,7 @@ public final class WebServices { // episode dbs public static final TVRageClient TVRage = new TVRageClient(); - public static final AnidbClient AniDB = new AnidbClient(getApplicationName().toLowerCase(), 2); + public static final AnidbClient AniDB = new AnidbClient(getApplicationName().toLowerCase(), 3); public static final TheTVDBClient TheTVDB = new TheTVDBClient(getApplicationProperty("thetvdb.apikey")); public static final SerienjunkiesClient Serienjunkies = new SerienjunkiesClient(getApplicationProperty("serienjunkies.apikey")); diff --git a/website/index.html b/website/index.html index 8d546d3b..85b58f65 100644 --- a/website/index.html +++ b/website/index.html @@ -132,7 +132,7 @@
  • Export your media files including media info as CSV text file
  • ... and more! -

    Setting up complete automation on your HTPC – extract archives, organize tv shows and movies, download subtitles, fetch artwork and metadata, update XBMC – with µTorrent and FileBot it's that easy!

    +

    Setting up a fully automated media center – extract archives, organize tv shows and movies, download subtitles, fetch artwork and metadata, update XBMC – with µTorrent and FileBot it's that easy!

    diff --git a/website/naming.html b/website/naming.html index ae6a3cf9..c474bacd 100644 --- a/website/naming.html +++ b/website/naming.html @@ -286,6 +286,11 @@ detect subtitle language eng + + collection + movie set + Avatar Collection + director movie director @@ -321,6 +326,11 @@ file object <file path> + + dim + video dimensions + <width and height> + media general media info object @@ -354,6 +364,9 @@ match(pattern)Get a substring matching the given pattern or break.

    + matchAll(pattern)Get a list of substrings matching the given pattern or break. +

    +

    space(replacement)Replace all spaces (e.g. "Doctor Who" -> "Doctor_Who").