mirror of
https://github.com/null2264/yokai.git
synced 2025-06-21 10:44:42 +00:00
chore: Version 1.7.13
Hopefully last version before major update
This commit is contained in:
parent
fabf22af80
commit
1618ffa7c7
6 changed files with 12 additions and 15 deletions
2
.github/ISSUE_TEMPLATE/feature_request.yml
vendored
2
.github/ISSUE_TEMPLATE/feature_request.yml
vendored
|
@ -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
|
||||
|
|
2
.github/ISSUE_TEMPLATE/issue_report.yml
vendored
2
.github/ISSUE_TEMPLATE/issue_report.yml
vendored
|
@ -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
|
||||
|
|
|
@ -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
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
}
|
||||
)
|
||||
|
|
|
@ -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
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue