From 7c2e00a6fdc579bd558485323b17512fa9067034 Mon Sep 17 00:00:00 2001 From: MohitMali Date: Tue, 17 May 2022 15:01:46 +0530 Subject: [PATCH] release version 3.5.0 and change log update --- CHANGELOG | 10 ++++++++++ app/build.gradle.kts | 4 ++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 770d7959d..bb8305d5c 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,13 @@ +3.5.0 +* FIX: Storing Zim/Book files inside the public Kiwix Directory on internal storage. +* FIX: Storing Zim/Book files inside the public Kiwix Directory on external storage in android 11 and above. +* FIX: Ability to save Notes in android 10 and above. +* FIX: Ability to open externally downloaded Zim Files. +* FIX: MIME type fix for "*.js" titles. +* FIX: CI/CD Pipeline fixed for android 21 & android 30. +* FIX: Partial library migration from jcenter to jitpack & maven repo. +* NEW: File Selector for selecting any zim files from storage. + 3.4.6 * FIX: Added MANAGE_EXTERNAL_STORAGE permission for Android 11 and later * FIX: Hide "Download over wifi settings" on custom apps diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 9baabd312..1c7bfff8b 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -10,8 +10,8 @@ apply(from = rootProject.file("jacoco.gradle")) ext { set("versionMajor", 3) - set("versionMinor", 4) - set("versionPatch", 6) + set("versionMinor", 5) + set("versionPatch", 0) } fun generateVersionName() = "${ext["versionMajor"]}.${ext["versionMinor"]}.${ext["versionPatch"]}"