diff --git a/CHANGELOG.md b/CHANGELOG.md index bd3af5592..f834ff127 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [5.6.5] - 23-02-2020 +### Added +- Added preference to skip WebView dialog + +### Changed +- Do not show confirmation dialog when sharing link + + ## [5.6.4] - 11-02-2020 ### Fixed - Fixed crash reporting and analytics (Google Play only) diff --git a/CommonUtils b/CommonUtils index bf003438a..20083d82d 160000 --- a/CommonUtils +++ b/CommonUtils @@ -1 +1 @@ -Subproject commit bf003438aebacd196d17ea0bd1700161d06190ed +Subproject commit 20083d82dc355c855f84aef6d46663a212b71414 diff --git a/app/build.gradle b/app/build.gradle index 81492055b..4365e2b1b 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -14,8 +14,8 @@ android { applicationId "com.gianlu.aria2app" minSdkVersion 21 targetSdkVersion 29 - versionCode 203 - versionName "5.6.4" + versionCode 204 + versionName "5.6.5" } if (isTravis) { diff --git a/app/src/main/play/release-notes/en-GB/production.txt b/app/src/main/play/release-notes/en-GB/production.txt index f354267b1..5bb7126ed 100644 --- a/app/src/main/play/release-notes/en-GB/production.txt +++ b/app/src/main/play/release-notes/en-GB/production.txt @@ -1,2 +1,5 @@ -### Fixed -- Fixed crash reporting and analytics (Google Play only) \ No newline at end of file +### Added +- Added preference to skip WebView dialog + +### Changed +- Do not show confirmation dialog when sharing link \ No newline at end of file diff --git a/settings.gradle b/settings.gradle index 9178855c5..5f1f275af 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1,3 +1,3 @@ -include ':CommonUtils', ':app', ':aria2lib' +include ':CommonUtils', ':aria2lib', ':app' project(':CommonUtils').projectDir = new File('./CommonUtils/utils') project(':aria2lib').projectDir = new File('./aria2lib') \ No newline at end of file