mirror of
https://github.com/mitb-archive/filebot
synced 2025-03-10 06:20:27 -04:00
* update
This commit is contained in:
parent
1cbdc1f32b
commit
7acc354a0c
@ -65,13 +65,14 @@ public final class Settings {
|
|||||||
|
|
||||||
|
|
||||||
public static boolean useDonationReminder() {
|
public static boolean useDonationReminder() {
|
||||||
String value = System.getProperty("useDonationReminder");
|
String deployment = getApplicationDeployment();
|
||||||
if (value != null) {
|
for (String it : new String[] { "ppa", "appstore" }) {
|
||||||
return Boolean.parseBoolean(value);
|
if (it.equalsIgnoreCase(deployment)) {
|
||||||
} else {
|
return false;
|
||||||
return getApplicationDeployment() == null || !getApplicationDeployment().equalsIgnoreCase("ppa");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
public static int getPreferredThreadPoolSize() {
|
public static int getPreferredThreadPoolSize() {
|
||||||
|
@ -98,25 +98,5 @@
|
|||||||
"user": "akya",
|
"user": "akya",
|
||||||
"date": "2013-02-21",
|
"date": "2013-02-21",
|
||||||
"text": "Extremely efficient.. especially for renaming single episodes."
|
"text": "Extremely efficient.. especially for renaming single episodes."
|
||||||
},
|
|
||||||
{
|
|
||||||
"user": "Nolan",
|
|
||||||
"date": "2013-02-15",
|
|
||||||
"text": "excellent app"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"user": "charmainebellora",
|
|
||||||
"date": "2013-01-23",
|
|
||||||
"text": "nice app!"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"user": "Mason",
|
|
||||||
"date": "2013-01-20",
|
|
||||||
"text": "works perfectly."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"user": "Blake",
|
|
||||||
"date": "2012-12-19",
|
|
||||||
"text": "Great software, thank you."
|
|
||||||
}
|
}
|
||||||
]
|
]
|
Loading…
x
Reference in New Issue
Block a user