chore: Version 1.7.13

Hopefully last version before major update
This commit is contained in:
ziro 2024-02-09 17:54:12 +07:00
parent fabf22af80
commit 1618ffa7c7
Signed by: null2264
GPG key ID: BA64F8B60AF3EFB6
6 changed files with 12 additions and 15 deletions

View file

@ -35,7 +35,7 @@ body:
required: true required: true
- label: If this is an issue with an extension, or a request for an extension, I should be contacting the extensions repository's maintainer/support for help. - label: If this is an issue with an extension, or a request for an extension, I should be contacting the extensions repository's maintainer/support for help.
required: true required: true
- label: I have updated the app to version **[1.7.12](https://github.com/null2264/yokai/releases/latest)**. - label: I have updated the app to version **[1.7.13](https://github.com/null2264/yokai/releases/latest)**.
required: true required: true
- label: I have checked through the app settings for my feature. - label: I have checked through the app settings for my feature.
required: true required: true

View file

@ -100,7 +100,7 @@ body:
required: true required: true
- label: I have tried the [troubleshooting guide](https://mihon.app/help/). - label: I have tried the [troubleshooting guide](https://mihon.app/help/).
required: true required: true
- label: I have updated the app to version **[1.7.12](https://github.com/null2264/yokai/releases/latest)**. - label: I have updated the app to version **[1.7.13](https://github.com/null2264/yokai/releases/latest)**.
required: true required: true
- label: I have updated all installed extensions. - label: I have updated all installed extensions.
required: true required: true

View file

@ -9,6 +9,8 @@
--> -->
Since there's a lot of new people coming over, I'll repeat my statement a few releases ago, if you think this is the "successor" of J2K, please consider migrating back to (or staying on) J2K as this fork will start **diverting back to how I imagine it**, you're free to use my fork but I'm just gonna clarify that this fork is **NOT** a successor of J2K Since there's a lot of new people coming over, I'll repeat my statement a few releases ago, if you think this is the "successor" of J2K, please consider migrating back to (or staying on) J2K as this fork will start **diverting back to how I imagine it**, you're free to use my fork but I'm just gonna clarify that this fork is **NOT** a successor of J2K
Also, just a heads-up, next update (hopefully 1.8.0 if there's no critical bug) will introduce Tachiyomi 0.15.0's storage system, so if you don't like that changes, it's your last chance to go back to J2K :)
## Additions ## Additions
- Ported Tachi's cutout option - Ported Tachi's cutout option
- Added Doki theme (dark only) - Added Doki theme (dark only)
@ -20,7 +22,6 @@ Since there's a lot of new people coming over, I'll repeat my statement a few re
- Removed braces from nightly (and debug) app name - Removed braces from nightly (and debug) app name
## Fixes ## Fixes
- Fixed splash icon hardcoded to white
- Fixed preference summary not updating after being changed once - Fixed preference summary not updating after being changed once
- Fixed legacy appbar is visible on compose when being launched from deeplink - Fixed legacy appbar is visible on compose when being launched from deeplink
- Fixed some app icon not generated properly - Fixed some app icon not generated properly
@ -28,3 +29,4 @@ Since there's a lot of new people coming over, I'll repeat my statement a few re
## Other ## Other
- Migrate to using Android 12's SplashScreen API - Migrate to using Android 12's SplashScreen API
- Clean up unused variables from ExtensionInstaller

View file

@ -35,8 +35,8 @@ android {
minSdk = AndroidConfig.minSdk minSdk = AndroidConfig.minSdk
targetSdk = AndroidConfig.targetSdk targetSdk = AndroidConfig.targetSdk
applicationId = "eu.kanade.tachiyomi" applicationId = "eu.kanade.tachiyomi"
versionCode = 121 versionCode = 122
versionName = "1.7.12" versionName = "1.7.13"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
multiDexEnabled = true multiDexEnabled = true

View file

@ -272,8 +272,8 @@ object Migrations {
val oldExtensionInstall = prefs.getInt("extension_installer", 0) val oldExtensionInstall = prefs.getInt("extension_installer", 0)
basePreferences.extensionInstaller().set( basePreferences.extensionInstaller().set(
when (oldExtensionInstall) { when (oldExtensionInstall) {
ExtensionInstaller.SHIZUKU -> BasePreferences.ExtensionInstaller.SHIZUKU 1 -> BasePreferences.ExtensionInstaller.SHIZUKU
ExtensionInstaller.PRIVATE -> BasePreferences.ExtensionInstaller.PRIVATE 2 -> BasePreferences.ExtensionInstaller.PRIVATE
else -> BasePreferences.ExtensionInstaller.PACKAGEINSTALLER else -> BasePreferences.ExtensionInstaller.PACKAGEINSTALLER
} }
) )

View file

@ -476,10 +476,5 @@ internal class ExtensionInstaller(private val context: Context) {
const val APK_MIME = "application/vnd.android.package-archive" const val APK_MIME = "application/vnd.android.package-archive"
const val EXTRA_DOWNLOAD_ID = "ExtensionInstaller.extra.DOWNLOAD_ID" const val EXTRA_DOWNLOAD_ID = "ExtensionInstaller.extra.DOWNLOAD_ID"
const val FILE_SCHEME = "file://" const val FILE_SCHEME = "file://"
@Deprecated("Use BasePreferences.ExtensionInstaller instead")
const val SHIZUKU = 1
@Deprecated("Use BasePreferences.ExtensionInstaller instead")
const val PRIVATE = 2
} }
} }