From 05c0c63f4cd8a42268155107bd9e6b16e7b7cf56 Mon Sep 17 00:00:00 2001 From: Jays2Kings Date: Sun, 11 Apr 2021 15:16:27 -0400 Subject: [PATCH] Version 1.0.12 --- .github/ISSUE_TEMPLATE/bug_report.md | 2 +- .github/ISSUE_TEMPLATE/feature_request.md | 2 +- README.md | 5 ++++- buildSrc/src/main/kotlin/Dependencies.kt | 4 ++-- 4 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index ea20c98439..35a1b53005 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -11,7 +11,7 @@ assignees: '' I acknowledge that: -- I have updated to the latest version of the app (latest J2K is v1.0.11) +- I have updated to the latest version of the app (latest J2K is v1.0.12) - I have checked that my bug has been reported or fixed in the issues page - I will only report bugs exclusive to this fork. I have checked that is not an issue on the main tachiyomi version (https://github.com/inorichi/tachiyomi) - I have updated all extensions diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index 79711fe5fb..030368a24c 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -11,7 +11,7 @@ assignees: '' I acknowledge that: -- I have updated to the latest version of the app (latest J2K is v1.0.11) +- I have updated to the latest version of the app (latest J2K is v1.0.12) - I will not repeat a request for a feature already requested - If this is an request for an extension/source, that I should be opening an issue in https://github.com/inorichi/tachiyomi-extensions diff --git a/README.md b/README.md index a66b68c204..ffb77fd7a8 100644 --- a/README.md +++ b/README.md @@ -22,13 +22,16 @@ Features of Tachiyomi include: Plus some new features in this fork such as: * New Manga details screens +* Combine 2 pages into a single one * New Recents page: Providing quick access to newly added manga, new chapters, and to continue where you left on in a series * Android 10 edge to edge support (and a translucent nav bar for older versions): no more small ugly bar for the gesture navigation * Smart background based on manga page: For those that like having a white background to match the content, this will automatically set the background to match for moments such as a flashback section of a manga +* New Themes +* Dynamic Shortcuts * [New material snackbar](.github/readme-images/material%20snackbar.png): Removing manga now auto deletes chapters and has an undo button in case you change your mind * Batch Auto-Source Migration (taken from [TachiyomiEH](https://github.com/NerdNumber9/TachiyomiEH)) * [Share sheets upgrade for Android 10](.github/readme-images/share%20menu.png) -* View all chapters right while reader +* View all chapters right in the reader * Drag & Drop Sorting in Library * Individual Category sorting * Library redesigned as a single list view diff --git a/buildSrc/src/main/kotlin/Dependencies.kt b/buildSrc/src/main/kotlin/Dependencies.kt index ddca913e0f..404aa0d75b 100644 --- a/buildSrc/src/main/kotlin/Dependencies.kt +++ b/buildSrc/src/main/kotlin/Dependencies.kt @@ -108,8 +108,8 @@ object AndroidVersions { const val compileSdk = 29 const val minSdk = 23 const val targetSdk = 29 - const val versionCode = 68 - const val versionName = "1.0.11" + const val versionCode = 69 + const val versionName = "1.0.12" const val ndk = "22.0.7026061" }