diff --git a/CHANGELOG.md b/CHANGELOG.md index aa616234..23de5393 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/README.md b/README.md index e5138cb0..a898371a 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/app/build.gradle b/app/build.gradle index bf39a2b5..c8bdd37f 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -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" }