* updated deployment info

* fixed JRE7 startup issue
This commit is contained in:
Reinhard Pointner 2011-07-01 10:52:40 +00:00
parent 9c0f194bfd
commit bf7ab1c52d
3 changed files with 6 additions and 4 deletions

View File

@ -2,7 +2,7 @@
<project name="FileBot" default="fatjar">
<property name="title" value="${ant.project.name}" />
<property name="version" value="r465" />
<property name="version" value="1.96.470" />
<tstamp>
<format property="today" pattern="yyyy-MM-dd" />
@ -151,7 +151,7 @@
<target name="deb-arch">
<deb todir="${dir.dist}" package="filebot" version="${version}" architecture="${arch}" section="misc" depends="openjdk-6-jre" homepage="http://filebot.sourceforge.net" priority="optional">
<maintainer email="rednoah" name="rednoah@users.sourceforge.net" />
<maintainer name="rednoah" email="rednoah@users.sourceforge.net" />
<description synopsis="The ultimate tv renamer / subtitle downloader / sfv validator">FileBot is the ultimate tool for renaming your tv shows and anime, downloading subtitles from various sources or just simple file verification.</description>
<tarfileset prefix="usr/share/filebot/bin" file="${dir.installer}/deb/filebot.sh" filemode="755" />
<tarfileset fullpath="usr/share/filebot/FileBot.jar" file="${path.fatjar}" />

View File

@ -1,6 +1,6 @@
# application settings
application.name: FileBot
application.version: 1.95
application.version: 1.96
thetvdb.apikey: 58B4AA94C59AD656
themoviedb.apikey: 66308fb6e3fd850dde4c7d21df2e8306

View File

@ -208,7 +208,9 @@ public abstract class AbstractFancyListCellRenderer extends JPanel implements Li
@Override
public void validate() {
// validate children, yet avoid flickering of the mouse cursor
validateTree();
synchronized (getTreeLock()) {
validateTree();
}
}