chore: Version 1.7.12

This commit is contained in:
ziro 2024-02-04 11:01:15 +07:00
parent 16b13aa1a2
commit 64fe569692
Signed by: null2264
GPG key ID: BA64F8B60AF3EFB6
5 changed files with 8 additions and 7 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.11](https://github.com/null2264/yokai/releases/latest)**.
- label: I have updated the app to version **[1.7.12](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.11](https://github.com/null2264/yokai/releases/latest)**.
- label: I have updated the app to version **[1.7.12](https://github.com/null2264/yokai/releases/latest)**.
required: true
- label: I have updated all installed extensions.
required: true

View file

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

View file

@ -10,7 +10,7 @@ class BasePreferences(private val preferenceStore: PreferenceStore) {
fun extensionInstaller() = preferenceStore.getEnum("extension_installer", ExtensionInstaller.PACKAGEINSTALLER)
enum class ExtensionInstaller(@StringRes val titleResId: Int, val requiresSystemPermission: Boolean) {
// LEGACY(R.string.ext_installer_legacy, true),
LEGACY(R.string.ext_installer_legacy, true), // Technically useless, but just in case it being missing crashes the app
PACKAGEINSTALLER(R.string.ext_installer_packageinstaller, true),
SHIZUKU(R.string.ext_installer_shizuku, false),
PRIVATE(R.string.ext_installer_private, false),

View file

@ -332,6 +332,8 @@
<string name="ext_installer_pref">Installer</string>
<string name="ext_installer_shizuku" translatable="false">Shizuku</string>
<string name="ext_installer_private" translatable="false">Private</string>
<string name="ext_installer_packageinstaller">Default</string>
<string name="ext_installer_legacy">Legacy</string>
<string name="ext_installer_summary">Allows extensions to be installed without user prompts and enables automatic updates for devices under Android 12</string>
<string name="untrusted_extension">Untrusted extension</string>
<string name="untrusted_extension_message">Malicious extensions can read any stored login credentials or execute arbitrary code.\n\nBy trusting this extension you accept these risks.</string>
@ -1205,5 +1207,4 @@
<string name="sfw">SFW</string>
<string name="nsfw">NSFW</string>
<string name="content_type">Content Type</string>
<string name="ext_installer_packageinstaller">Default</string>
</resources>