Bump to version 0.6.3.1

This commit is contained in:
Jakob Nixdorf 2019-10-19 09:55:58 +02:00
parent be994a0093
commit 7c34318c40
No known key found for this signature in database
GPG key ID: BE99BF86574A7DBC
3 changed files with 10 additions and 3 deletions

View file

@ -1,5 +1,11 @@
# Changelog # Changelog
#### v0.6.3.1
* Introduce build flavors:
- fdroid: Shows donation links in the About section
- play: Doesn't show donation links in the About section
#### v0.6.3 #### v0.6.3
* Security: Improved password derivation for the password protected backups * Security: Improved password derivation for the password protected backups

View file

@ -1,7 +1,7 @@
# andOTP - Android OTP Authenticator # andOTP - Android OTP Authenticator
[![Build Status](https://travis-ci.org/andOTP/andOTP.svg?branch=master)](https://travis-ci.org/andOTP/andOTP) [![Build Status](https://travis-ci.org/andOTP/andOTP.svg?branch=master)](https://travis-ci.org/andOTP/andOTP)
[![Current release](https://img.shields.io/github/release/andOTP/andOTP/all.svg)](https://github.com/andOTP/andOTP/releases/download/v0.6.3/andOTP_v0.6.3.apk) [![Current release](https://img.shields.io/github/release/andOTP/andOTP/all.svg)](https://github.com/andOTP/andOTP/releases/download/v0.6.3.1/andOTP_v0.6.3.1.apk)
[![Crowdin](https://d322cqt584bo4o.cloudfront.net/andotp/localized.svg)](https://crowdin.com/project/andotp) [![Crowdin](https://d322cqt584bo4o.cloudfront.net/andotp/localized.svg)](https://crowdin.com/project/andotp)
[![Chat - Telegram](https://img.shields.io/badge/chat-Telegram-blue.svg)](https://t.me/andOTP) [![Chat - Telegram](https://img.shields.io/badge/chat-Telegram-blue.svg)](https://t.me/andOTP)
[![Chat - Matrix](https://img.shields.io/badge/chat-Matrix-blue.svg)](https://matrix.to/#/#andOTP:privacytools.io) [![Chat - Matrix](https://img.shields.io/badge/chat-Matrix-blue.svg)](https://matrix.to/#/#andOTP:privacytools.io)

View file

@ -8,8 +8,8 @@ android {
applicationId "org.shadowice.flocke.andotp" applicationId "org.shadowice.flocke.andotp"
minSdkVersion 19 minSdkVersion 19
targetSdkVersion 28 targetSdkVersion 28
versionCode 25 versionCode 26
versionName "0.6.3" versionName "0.6.3.1"
vectorDrawables.useSupportLibrary = true vectorDrawables.useSupportLibrary = true
} }
buildTypes { buildTypes {
@ -36,6 +36,7 @@ android {
} }
play { play {
dimension = 'market' dimension = 'market'
versionNameSuffix = "-play"
} }
} }
} }