diff options
-rw-r--r-- | CHANGELOG | 11 | ||||
-rw-r--r-- | app/build.gradle | 5 |
2 files changed, 14 insertions, 2 deletions
@@ -1,3 +1,14 @@ +1.1.4 +features: +* improve censorship circumvention if VPN certificate needs to be fetched +* point donation link to Riseup Labs +* updated translations + +bugfixes: +* fix notifications not disappearing after disconnecting the VPN from the quick tile settings +* fix some app crashes +* fix icon colors in advanced settings screen + 1.1.3 features: * set donation nagging to 7 days diff --git a/app/build.gradle b/app/build.gradle index 5b1c0a7e..c9bb9bbc 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -17,8 +17,9 @@ android { applicationId "se.leap.bitmaskclient" // the factor 1000 is used so that gplay users can upgrade from split apks ((current version number - 1) * 1000) + n // to extracted bundle apks, supplied by google - versionCode 161 * 1000 - versionName "1.1.3" + // however we don't calculate the versionCode here, because F-Droid doesn't like that + versionCode 162000 + versionName "1.1.4" minSdkVersion 16 targetSdkVersion 30 vectorDrawables.useSupportLibrary = true |