Merge branch 'master' into dev
This commit is contained in:
commit
197f3bb691
2 changed files with 10 additions and 2 deletions
|
@ -79,7 +79,7 @@ def allCommited = { ->
|
|||
try {
|
||||
def stdout = new ByteArrayOutputStream()
|
||||
exec {
|
||||
commandLine 'git', 'status'
|
||||
commandLine 'git', 'status', '-s'
|
||||
standardOutput = stdout
|
||||
}
|
||||
String commitObject = stdout.toString().trim()
|
||||
|
@ -87,7 +87,8 @@ def allCommited = { ->
|
|||
} catch (ignored) {
|
||||
return false; // NoGitSystemAvailable
|
||||
}
|
||||
return stringBuilder.toString().contains("nothing to commit")
|
||||
return stringBuilder.toString().isEmpty()
|
||||
|
||||
}
|
||||
|
||||
tasks.matching { it instanceof Test }.all {
|
||||
|
|
|
@ -32,6 +32,13 @@ object VersionCheckerPlugin : PluginBase(PluginDescription()
|
|||
|
||||
private fun checkWarning() {
|
||||
val now = System.currentTimeMillis()
|
||||
|
||||
if (!SP.contains(R.string.key_last_versionchecker_plugin_warning)) {
|
||||
SP.putLong(R.string.key_last_versionchecker_plugin_warning, now)
|
||||
return
|
||||
}
|
||||
|
||||
|
||||
if (isOldVersion(GRACE_PERIOD_WARNING) && shouldWarnAgain(now)) {
|
||||
// store last notification time
|
||||
SP.putLong(R.string.key_last_versionchecker_plugin_warning, now)
|
||||
|
|
Loading…
Reference in a new issue