* misc
This commit is contained in:
parent
43f844b6f3
commit
99c52281f9
|
@ -2,7 +2,7 @@
|
||||||
application.name: FileBot
|
application.name: FileBot
|
||||||
application.version: 2.3
|
application.version: 2.3
|
||||||
|
|
||||||
# application update
|
# application updates
|
||||||
update.url = http://filebot.sourceforge.net/update.xml
|
update.url = http://filebot.sourceforge.net/update.xml
|
||||||
|
|
||||||
# google analytics
|
# google analytics
|
||||||
|
|
|
@ -596,7 +596,7 @@ public class CmdlineOperations implements CmdlineInterface {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
private List<SearchResult> findProbableMatches(final String query, Iterable<? extends SearchResult> searchResults) {
|
public List<SearchResult> findProbableMatches(final String query, Iterable<? extends SearchResult> searchResults) {
|
||||||
// auto-select most probable search result
|
// auto-select most probable search result
|
||||||
Map<String, SearchResult> probableMatches = new TreeMap<String, SearchResult>(String.CASE_INSENSITIVE_ORDER);
|
Map<String, SearchResult> probableMatches = new TreeMap<String, SearchResult>(String.CASE_INSENSITIVE_ORDER);
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
||||||
<meta name="keywords" content="rename tv series, rename tv episodes with info from TVRage or AniDB or TheTVDB, rename movies, download subtitles from OpenSubtitles or Sublight, check sfv or md5 or sha1 files, command-line, Windows, Linux, Mac OSX" />
|
<meta name="keywords" content="rename tv series, rename tv episodes with info from TVRage or AniDB or TheTVDB, rename movies, download subtitles from OpenSubtitles or Sublight, check sfv or md5 or sha1 files, command-line, Windows, Linux, Mac OSX" />
|
||||||
|
|
||||||
<title>FileBot CLI</title>
|
<title>FileBot Command-line Interface</title>
|
||||||
<meta name="description" content="The FileBot command-line interface will allow you to rename tv shows, download subtitles and do lots of other nifty things directly directly from the console. Running on an headless server is fully supported. Make sure to check out FileBot scripting as well for a new level of automation." />
|
<meta name="description" content="The FileBot command-line interface will allow you to rename tv shows, download subtitles and do lots of other nifty things directly directly from the console. Running on an headless server is fully supported. Make sure to check out FileBot scripting as well for a new level of automation." />
|
||||||
|
|
||||||
<meta itemprop="name" content="FileBot Command-line Interface" />
|
<meta itemprop="name" content="FileBot Command-line Interface" />
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<?php
|
<?php
|
||||||
$version = isset($_GET['version']) ? $_GET['version'] : '@{version}';
|
$version = isset($_GET['version']) ? $_GET['version'] : '@{version}'; // default version is hard-coded via deployment script
|
||||||
$arch = $_GET['arch'];
|
$arch = $_GET['arch'];
|
||||||
$type = $_GET['type'];
|
$type = $_GET['type'];
|
||||||
|
|
||||||
|
|
|
@ -1,13 +1,14 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" ?>
|
<?xml version="1.0" encoding="UTF-8" ?>
|
||||||
<update>
|
<update>
|
||||||
<revision>777</revision>
|
<name>FileBot 2.31</name>
|
||||||
|
<revision>802</revision>
|
||||||
<title>New updates available</title>
|
<title>New updates available</title>
|
||||||
<message><![CDATA[<html>
|
<message><![CDATA[<html>
|
||||||
<b>FileBot 2.3 (r777) is out!</b><br>
|
<b>FileBot 2.31 (r802) is out!</b><br>
|
||||||
This release features:<br>
|
This release features:<br>
|
||||||
+ New Feature 1<br>
|
+ Improved matching<br>
|
||||||
+ New Feature 2<br>
|
+ Improved scripting environment<br>
|
||||||
+ New Feature 3<br>
|
+ Update notifcations
|
||||||
<html>]]></message>
|
<html>]]></message>
|
||||||
<discussion><![CDATA[http://filebot.sourceforge.net/forums/viewtopic.php?f=7&t=24#p43]]></discussion>
|
<discussion><![CDATA[http://filebot.sourceforge.net/forums/viewtopic.php?f=7&t=24#p43]]></discussion>
|
||||||
<download><![CDATA[http://filebot.sourceforge.net/#download]]></download>
|
<download><![CDATA[http://filebot.sourceforge.net/#download]]></download>
|
||||||
|
|
Loading…
Reference in New Issue