* change cache dir
This commit is contained in:
parent
41e3c9ed9e
commit
aa9b407fee
|
@ -39,7 +39,7 @@
|
|||
|
||||
Subdirectories can be specified below the property e.g. java.io.tmpdir/one
|
||||
-->
|
||||
<diskStore path="java.io.tmpdir/filebot-cache" />
|
||||
<diskStore path="user.home/.filebot/cache" />
|
||||
|
||||
<!--
|
||||
Cache configuration
|
||||
|
|
|
@ -36,7 +36,7 @@ public final class Settings {
|
|||
// special handling for web start
|
||||
if (System.getProperty("application.deployment") != null || System.getProperty("javawebstart.version") != null) {
|
||||
// can't use working directory for web start applications
|
||||
File folder = new File(System.getProperty("user.home"), "." + getApplicationName().toLowerCase());
|
||||
File folder = new File(System.getProperty("user.home"), ".filebot");
|
||||
|
||||
// create folder if necessary
|
||||
if (!folder.exists()) {
|
||||
|
|
Loading…
Reference in New Issue