parent
9c0f194bfd
commit
bf7ab1c52d
|
@ -2,7 +2,7 @@
|
||||||
<project name="FileBot" default="fatjar">
|
<project name="FileBot" default="fatjar">
|
||||||
|
|
||||||
<property name="title" value="${ant.project.name}" />
|
<property name="title" value="${ant.project.name}" />
|
||||||
<property name="version" value="r465" />
|
<property name="version" value="1.96.470" />
|
||||||
|
|
||||||
<tstamp>
|
<tstamp>
|
||||||
<format property="today" pattern="yyyy-MM-dd" />
|
<format property="today" pattern="yyyy-MM-dd" />
|
||||||
|
@ -151,7 +151,7 @@
|
||||||
|
|
||||||
<target name="deb-arch">
|
<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">
|
<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>
|
<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 prefix="usr/share/filebot/bin" file="${dir.installer}/deb/filebot.sh" filemode="755" />
|
||||||
<tarfileset fullpath="usr/share/filebot/FileBot.jar" file="${path.fatjar}" />
|
<tarfileset fullpath="usr/share/filebot/FileBot.jar" file="${path.fatjar}" />
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# application settings
|
# application settings
|
||||||
application.name: FileBot
|
application.name: FileBot
|
||||||
application.version: 1.95
|
application.version: 1.96
|
||||||
|
|
||||||
thetvdb.apikey: 58B4AA94C59AD656
|
thetvdb.apikey: 58B4AA94C59AD656
|
||||||
themoviedb.apikey: 66308fb6e3fd850dde4c7d21df2e8306
|
themoviedb.apikey: 66308fb6e3fd850dde4c7d21df2e8306
|
||||||
|
|
|
@ -208,8 +208,10 @@ public abstract class AbstractFancyListCellRenderer extends JPanel implements Li
|
||||||
@Override
|
@Override
|
||||||
public void validate() {
|
public void validate() {
|
||||||
// validate children, yet avoid flickering of the mouse cursor
|
// validate children, yet avoid flickering of the mouse cursor
|
||||||
|
synchronized (getTreeLock()) {
|
||||||
validateTree();
|
validateTree();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue