Bump to version 0.6.2

This commit is contained in:
Jakob Nixdorf 2019-05-28 15:48:12 +02:00
parent 54d0e8f3bb
commit e71f378b0d
No known key found for this signature in database
GPG key ID: BE99BF86574A7DBC
3 changed files with 18 additions and 10 deletions

View file

@ -1,5 +1,11 @@
# Changelog
#### v0.6.2
* Bug fix: Proper handling of RTL layouts by forcing LTR for the tokens (PR #280 by @ahangarha)
* Internal: Image compression (thanks to @Peppernrino)
* Thumbnail: Add a LOT of new thumbnails (thanks to everybody that contributed)
* Translation: New Arabic, Traditional Chinese, Japanese, Persian and Swedish translations (thanks to all contributors on Crowdin)
#### v0.6.1
* New feature: Enable Android Backup by default if available and using the password encryption (PR #252)

View file

@ -1,7 +1,7 @@
# andOTP - Android OTP Authenticator
[![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.1/andOTP_v0.6.1.apk)
[![Current release](https://img.shields.io/github/release/andOTP/andOTP/all.svg)](https://github.com/andOTP/andOTP/releases/download/v0.6.2/andOTP_v0.6.2.apk)
[![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 - Matrix](https://img.shields.io/badge/chat-Matrix-blue.svg)](https://matrix.to/#/#andOTP:privacytools.io)

View file

@ -1,15 +1,15 @@
apply plugin: 'com.android.application'
android {
compileSdkVersion 27
buildToolsVersion '27.0.3'
compileSdkVersion 28
buildToolsVersion '28.0.3'
defaultConfig {
applicationId "org.shadowice.flocke.andotp"
minSdkVersion 19
targetSdkVersion 27
versionCode 22
versionName "0.6.1"
targetSdkVersion 28
versionCode 23
versionName "0.6.2"
vectorDrawables.useSupportLibrary = true
}
buildTypes {
@ -32,9 +32,11 @@ android {
}
dependencies {
ext.supportLibVersion = "27.1.1"
ext.supportLibVersion = "28.0.0"
implementation "commons-codec:commons-codec:1.11"
implementation "commons-codec:commons-codec:1.12"
implementation "com.android.support:support-media-compat:$supportLibVersion"
implementation "com.android.support:support-v4:$supportLibVersion"
implementation "com.android.support:appcompat-v7:$supportLibVersion"
implementation "com.android.support:cardview-v7:$supportLibVersion"
implementation "com.android.support:design:$supportLibVersion"
@ -46,6 +48,6 @@ dependencies {
implementation "com.vanniktech:vntnumberpickerpreference:1.0.0"
implementation "me.zhanghai.android.materialprogressbar:library:1.4.2"
implementation "org.sufficientlysecure:openpgp-api:12.0"
implementation "com.leinardi.android:speed-dial:1.0.1"
implementation "com.mikepenz:aboutlibraries:6.0.9"
implementation "com.leinardi.android:speed-dial:2.0.1"
implementation "com.mikepenz:aboutlibraries:6.1.1"
}