* initial commit for 3.0

This commit is contained in:
Reinhard Pointner 2012-08-11 02:40:25 +00:00
parent 33d2ce4dfd
commit 0eda51b0ac
5 changed files with 17 additions and 4 deletions

View File

@ -463,7 +463,7 @@
<target name="svn-update">
<taskdef name="groovy" classname="org.codehaus.groovy.ant.Groovy" classpath="${dir.lib}/groovy.jar" />
<groovy>
properties['svn.revision'] = 'svn update'.execute().text.replaceAll(/\D/, '')
properties['svn.revision'] = 'svn update'.execute().text.split(/\n/).last().replaceAll(/\D/, '')
</groovy>
<fail unless="svn.revision" />
<echo>Revision: ${svn.revision}</echo>

View File

@ -1,6 +1,6 @@
# application settings
application.name: FileBot
application.version: 2.64
application.version: 3.0
application.revision: @{svn.revision}
# application updates

View File

@ -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"));

View File

@ -132,7 +132,7 @@
<li>Export your media files including media info as CSV text file</li>
... and more!
</ul>
<p>Setting up <strong>complete automation</strong> on your HTPC extract archives, organize tv shows and movies, download subtitles, fetch artwork and metadata, update XBMC with µTorrent and FileBot it's <a href="http://filebot.sourceforge.net/forums/viewtopic.php?f=4&amp;t=5#p802">that</a> easy!</p>
<p>Setting up a <strong>fully automated media center</strong> extract archives, organize tv shows and movies, download subtitles, fetch artwork and metadata, update XBMC with µTorrent and FileBot it's <a href="http://filebot.sourceforge.net/forums/viewtopic.php?f=4&amp;t=215#p1561">that</a> easy!</p>
</div>
<div class="section features" id="features">

View File

@ -286,6 +286,11 @@
<td>detect subtitle language</td>
<td>eng</td>
</tr>
<tr>
<td>collection</td>
<td>movie set</td>
<td>Avatar Collection</td>
</tr>
<tr>
<td>director</td>
<td>movie director</td>
@ -321,6 +326,11 @@
<td>file object</td>
<td>&lt;file path&gt;</td>
</tr>
<tr>
<td>dim</td>
<td>video dimensions</td>
<td>&lt;width and height&gt;</td>
</tr>
<tr>
<td>media</td>
<td>general media info object</td>
@ -354,6 +364,9 @@
<code><span class="method">match</span>(<span class="regex">pattern</span>)</code>Get a substring matching the given pattern or break.
</p>
<p>
<code><span class="method">matchAll</span>(<span class="regex">pattern</span>)</code>Get a list of substrings matching the given pattern or break.
</p>
<p>
<code><span class="method">space</span>(<span class="string">replacement</span>)</code>Replace all spaces (e.g. "Doctor Who" -> "Doctor_Who").
</p>
<p>