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
- 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
- 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
- label: I have checked through the app settings for my feature.
required: true

View file

@ -100,7 +100,7 @@ body:
required: true
- label: I have tried the [troubleshooting guide](https://mihon.app/help/).
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
- label: I have updated all installed extensions.
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
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
- Ported Tachi's cutout option
- 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
## Fixes
- Fixed splash icon hardcoded to white
- Fixed preference summary not updating after being changed once
- Fixed legacy appbar is visible on compose when being launched from deeplink
- 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
- Migrate to using Android 12's SplashScreen API
- Clean up unused variables from ExtensionInstaller

View file

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

View file

@ -272,8 +272,8 @@ object Migrations {
val oldExtensionInstall = prefs.getInt("extension_installer", 0)
basePreferences.extensionInstaller().set(
when (oldExtensionInstall) {
ExtensionInstaller.SHIZUKU -> BasePreferences.ExtensionInstaller.SHIZUKU
ExtensionInstaller.PRIVATE -> BasePreferences.ExtensionInstaller.PRIVATE
1 -> BasePreferences.ExtensionInstaller.SHIZUKU
2 -> BasePreferences.ExtensionInstaller.PRIVATE
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 EXTRA_DOWNLOAD_ID = "ExtensionInstaller.extra.DOWNLOAD_ID"
const val FILE_SCHEME = "file://"
@Deprecated("Use BasePreferences.ExtensionInstaller instead")
const val SHIZUKU = 1
@Deprecated("Use BasePreferences.ExtensionInstaller instead")
const val PRIVATE = 2
}
}