Skip to content

Commit

Permalink
fix version code check
Browse files Browse the repository at this point in the history
seems jgit does not play well with windows for recognizing clean
git status
  • Loading branch information
ostrya committed Nov 2, 2019
1 parent 6f6ac6a commit f2588b2
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def getBuildApplicationId() {
}

def isTagged() {
return grgit.status().clean && grgit.describe(tags: true, match: ['v[1-9]*']) == "v${scmVersion.version}"
return grgit.describe(tags: true, match: ['v[1-9]*']) == "v${scmVersion.version}"
}

def getSigningConfig() {
Expand Down
12 changes: 11 additions & 1 deletion app/src/main/play/release-notes/en-US/default.txt
Original file line number Diff line number Diff line change
@@ -1 +1,11 @@
Minor bugfix related to handling of VPN connections.
v1.6.2:
• Minor build script changes.

v1.6.1:
• Minor bugfix related to handling of VPN connections.

v1.6.0:
• Added option to send offline messages while connected to mobile network.
• Added option to send battery level to a separate topic.
• On Android 6+, encrypt login password.
• Migrate from foreground service with scheduled thread pool to Android alarm manager and request disabling battery optimization. This should make sending messages more reliable during standby.

0 comments on commit f2588b2

Please sign in to comment.