* update
This commit is contained in:
parent
1cbdc1f32b
commit
7acc354a0c
|
@ -65,12 +65,13 @@ public final class Settings {
|
|||
|
||||
|
||||
public static boolean useDonationReminder() {
|
||||
String value = System.getProperty("useDonationReminder");
|
||||
if (value != null) {
|
||||
return Boolean.parseBoolean(value);
|
||||
} else {
|
||||
return getApplicationDeployment() == null || !getApplicationDeployment().equalsIgnoreCase("ppa");
|
||||
String deployment = getApplicationDeployment();
|
||||
for (String it : new String[] { "ppa", "appstore" }) {
|
||||
if (it.equalsIgnoreCase(deployment)) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -98,25 +98,5 @@
|
|||
"user": "akya",
|
||||
"date": "2013-02-21",
|
||||
"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…
Reference in New Issue