mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-15 04:15:06 +01:00
- Ensure all Preferences have a key set or else the highlighting effect will have no effect on it.
- remove ExtensionFilterController and SourceFilterController from settingControllersList in SettingsSearchHelper, since those are related to Extensions and not Settings
This commit is contained in:
parent
78072ad285
commit
50c7b32b00
@ -165,6 +165,48 @@ object PreferenceKeys {
|
||||
|
||||
const val enableDoh = "enable_doh"
|
||||
|
||||
const val disableBatteryOptimization = "pref_disable_battery_optimization"
|
||||
|
||||
const val clearDatabase = "pref_clear_database"
|
||||
|
||||
const val clearCookies = "pref_clear_cookies"
|
||||
|
||||
const val refreshLibraryCovers = "pref_refresh_library_covers"
|
||||
|
||||
const val refreshLibraryTracking = "pref_refresh_library_tracking"
|
||||
|
||||
const val createBackup = "pref_create_backup"
|
||||
|
||||
const val restoreBackup = "pref_restore_backup"
|
||||
|
||||
const val manageNotifications = "pref_manage_notifications"
|
||||
|
||||
const val libraryColumns = "pref_library_columns"
|
||||
|
||||
const val actionEditCategories = "pref_action_edit_categories"
|
||||
|
||||
const val parentalControlsInfo = "pref_parental_controls_info"
|
||||
|
||||
const val aboutVersion = "pref_about_version"
|
||||
|
||||
const val aboutBuildTime = "pref_about_build_time"
|
||||
|
||||
const val aboutCheckForUpdates = "pref_about_check_for_updates"
|
||||
|
||||
const val aboutWhatsNew = "pref_about_whats_new"
|
||||
|
||||
const val aboutNotices = "pref_about_notices"
|
||||
|
||||
const val aboutWebsite = "pref_about_website"
|
||||
|
||||
const val aboutDiscord = "pref_about_discord"
|
||||
|
||||
const val aboutGitHub = "pref_about_github"
|
||||
|
||||
const val aboutLabelExtensions = "pref_about_label_extensions"
|
||||
|
||||
const val aboutLicenses = "pref_about_licenses"
|
||||
|
||||
fun trackUsername(syncId: Int) = "pref_mangasync_username_$syncId"
|
||||
|
||||
fun trackPassword(syncId: Int) = "pref_mangasync_password_$syncId"
|
||||
|
@ -10,6 +10,7 @@ import com.afollestad.materialdialogs.MaterialDialog
|
||||
import com.mikepenz.aboutlibraries.LibsBuilder
|
||||
import eu.kanade.tachiyomi.BuildConfig
|
||||
import eu.kanade.tachiyomi.R
|
||||
import eu.kanade.tachiyomi.data.preference.PreferenceKeys as Keys
|
||||
import eu.kanade.tachiyomi.data.updater.UpdateChecker
|
||||
import eu.kanade.tachiyomi.data.updater.UpdateResult
|
||||
import eu.kanade.tachiyomi.data.updater.UpdaterService
|
||||
@ -45,6 +46,7 @@ class AboutController : SettingsController() {
|
||||
titleRes = R.string.pref_category_about
|
||||
|
||||
preference {
|
||||
key = Keys.aboutVersion
|
||||
titleRes = R.string.version
|
||||
summary = if (BuildConfig.DEBUG) {
|
||||
"Preview r${BuildConfig.COMMIT_COUNT} (${BuildConfig.COMMIT_SHA})"
|
||||
@ -55,17 +57,20 @@ class AboutController : SettingsController() {
|
||||
onClick { copyDebugInfo() }
|
||||
}
|
||||
preference {
|
||||
key = Keys.aboutBuildTime
|
||||
titleRes = R.string.build_time
|
||||
summary = getFormattedBuildTime()
|
||||
}
|
||||
if (isUpdaterEnabled) {
|
||||
preference {
|
||||
key = Keys.aboutCheckForUpdates
|
||||
titleRes = R.string.check_for_updates
|
||||
|
||||
onClick { checkVersion() }
|
||||
}
|
||||
}
|
||||
preference {
|
||||
key = Keys.aboutWhatsNew
|
||||
titleRes = R.string.whats_new
|
||||
|
||||
onClick {
|
||||
@ -81,6 +86,7 @@ class AboutController : SettingsController() {
|
||||
}
|
||||
if (BuildConfig.DEBUG) {
|
||||
preference {
|
||||
key = Keys.aboutNotices
|
||||
titleRes = R.string.notices
|
||||
|
||||
onClick {
|
||||
@ -91,7 +97,10 @@ class AboutController : SettingsController() {
|
||||
}
|
||||
|
||||
preferenceCategory {
|
||||
titleRes = R.string.about_resources
|
||||
|
||||
preference {
|
||||
key = Keys.aboutWebsite
|
||||
titleRes = R.string.website
|
||||
val url = "https://tachiyomi.org"
|
||||
summary = url
|
||||
@ -101,6 +110,7 @@ class AboutController : SettingsController() {
|
||||
}
|
||||
}
|
||||
preference {
|
||||
key = Keys.aboutDiscord
|
||||
title = "Discord"
|
||||
val url = "https://discord.gg/tachiyomi"
|
||||
summary = url
|
||||
@ -110,6 +120,7 @@ class AboutController : SettingsController() {
|
||||
}
|
||||
}
|
||||
preference {
|
||||
key = Keys.aboutGitHub
|
||||
title = "GitHub"
|
||||
val url = "https://github.com/inorichi/tachiyomi"
|
||||
summary = url
|
||||
@ -119,6 +130,7 @@ class AboutController : SettingsController() {
|
||||
}
|
||||
}
|
||||
preference {
|
||||
key = Keys.aboutLabelExtensions
|
||||
titleRes = R.string.label_extensions
|
||||
val url = "https://github.com/inorichi/tachiyomi-extensions"
|
||||
summary = url
|
||||
@ -128,6 +140,7 @@ class AboutController : SettingsController() {
|
||||
}
|
||||
}
|
||||
preference {
|
||||
key = Keys.aboutLicenses
|
||||
titleRes = R.string.licenses
|
||||
|
||||
onClick {
|
||||
|
@ -33,7 +33,6 @@ import rx.schedulers.Schedulers
|
||||
import uy.kohesive.injekt.injectLazy
|
||||
|
||||
class SettingsAdvancedController : SettingsController() {
|
||||
|
||||
private val network: NetworkHelper by injectLazy()
|
||||
|
||||
private val chapterCache: ChapterCache by injectLazy()
|
||||
@ -43,7 +42,6 @@ class SettingsAdvancedController : SettingsController() {
|
||||
@SuppressLint("BatteryLife")
|
||||
override fun setupPreferenceScreen(screen: PreferenceScreen) = screen.apply {
|
||||
titleRes = R.string.pref_category_advanced
|
||||
|
||||
switchPreference {
|
||||
key = "acra.enable"
|
||||
titleRes = R.string.pref_enable_acra
|
||||
@ -53,6 +51,7 @@ class SettingsAdvancedController : SettingsController() {
|
||||
|
||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
|
||||
preference {
|
||||
key = Keys.disableBatteryOptimization
|
||||
titleRes = R.string.pref_disable_battery_optimization
|
||||
summaryRes = R.string.pref_disable_battery_optimization_summary
|
||||
|
||||
@ -86,6 +85,7 @@ class SettingsAdvancedController : SettingsController() {
|
||||
onClick { clearChapterCache() }
|
||||
}
|
||||
preference {
|
||||
key = Keys.clearDatabase
|
||||
titleRes = R.string.pref_clear_database
|
||||
summaryRes = R.string.pref_clear_database_summary
|
||||
|
||||
@ -101,6 +101,7 @@ class SettingsAdvancedController : SettingsController() {
|
||||
titleRes = R.string.label_network
|
||||
|
||||
preference {
|
||||
key = Keys.clearCookies
|
||||
titleRes = R.string.pref_clear_cookies
|
||||
|
||||
onClick {
|
||||
@ -120,11 +121,13 @@ class SettingsAdvancedController : SettingsController() {
|
||||
titleRes = R.string.label_library
|
||||
|
||||
preference {
|
||||
key = Keys.refreshLibraryCovers
|
||||
titleRes = R.string.pref_refresh_library_covers
|
||||
|
||||
onClick { LibraryUpdateService.start(context, target = Target.COVERS) }
|
||||
}
|
||||
preference {
|
||||
key = Keys.refreshLibraryTracking
|
||||
titleRes = R.string.pref_refresh_library_tracking
|
||||
summaryRes = R.string.pref_refresh_library_tracking_summary
|
||||
|
||||
|
@ -53,6 +53,7 @@ class SettingsBackupController : SettingsController() {
|
||||
titleRes = R.string.backup
|
||||
|
||||
preference {
|
||||
key = Keys.createBackup
|
||||
titleRes = R.string.pref_create_backup
|
||||
summaryRes = R.string.pref_create_backup_summ
|
||||
|
||||
@ -67,6 +68,7 @@ class SettingsBackupController : SettingsController() {
|
||||
}
|
||||
}
|
||||
preference {
|
||||
key = Keys.restoreBackup
|
||||
titleRes = R.string.pref_restore_backup
|
||||
summaryRes = R.string.pref_restore_backup_summ
|
||||
|
||||
|
@ -47,6 +47,7 @@ class SettingsGeneralController : SettingsController() {
|
||||
}
|
||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
|
||||
preference {
|
||||
key = Keys.manageNotifications
|
||||
titleRes = R.string.pref_manage_notifications
|
||||
onClick {
|
||||
val intent = Intent(Settings.ACTION_APP_NOTIFICATION_SETTINGS).apply {
|
||||
|
@ -50,6 +50,7 @@ class SettingsLibraryController : SettingsController() {
|
||||
titleRes = R.string.pref_category_display
|
||||
|
||||
preference {
|
||||
key = Keys.libraryColumns
|
||||
titleRes = R.string.pref_library_columns
|
||||
onClick {
|
||||
LibraryColumnsDialog().showDialog(router)
|
||||
@ -83,6 +84,7 @@ class SettingsLibraryController : SettingsController() {
|
||||
titleRes = R.string.pref_category_library_categories
|
||||
|
||||
preference {
|
||||
key = Keys.actionEditCategories
|
||||
titleRes = R.string.action_edit_categories
|
||||
|
||||
val catCount = dbCategories.size
|
||||
|
@ -6,8 +6,6 @@ import androidx.preference.Preference
|
||||
import androidx.preference.PreferenceCategory
|
||||
import androidx.preference.PreferenceGroup
|
||||
import androidx.preference.PreferenceManager
|
||||
import eu.kanade.tachiyomi.ui.browse.extension.ExtensionFilterController
|
||||
import eu.kanade.tachiyomi.ui.browse.source.SourceFilterController
|
||||
import eu.kanade.tachiyomi.ui.more.AboutController
|
||||
import eu.kanade.tachiyomi.ui.setting.SettingsAdvancedController
|
||||
import eu.kanade.tachiyomi.ui.setting.SettingsBackupController
|
||||
@ -41,8 +39,6 @@ object SettingsSearchHelper {
|
||||
SettingsReaderController::class,
|
||||
SettingsSecurityController::class,
|
||||
SettingsTrackingController::class,
|
||||
ExtensionFilterController::class,
|
||||
SourceFilterController::class,
|
||||
AboutController::class
|
||||
)
|
||||
|
||||
|
@ -411,6 +411,7 @@
|
||||
<string name="licenses">Open source licenses</string>
|
||||
<string name="check_for_updates">Check for updates</string>
|
||||
<string name="updated_version">Updated to v%1$s</string>
|
||||
<string name="about_resources">Resources</string>
|
||||
|
||||
<!-- ACRA -->
|
||||
<string name="pref_enable_acra">Send crash reports</string>
|
||||
|
Loading…
Reference in New Issue
Block a user