1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00
This commit is contained in:
Reinhard Pointner 2013-03-26 08:52:07 +00:00
parent 1cbdc1f32b
commit 7acc354a0c
2 changed files with 6 additions and 25 deletions

View File

@ -65,12 +65,13 @@ 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;
} }

View File

@ -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."
} }
] ]