|
@@ -39,198 +39,199 @@ class PreferencesHelper(
|
|
|
"backup",
|
|
|
).toUri()
|
|
|
|
|
|
- fun confirmExit() = this.preferenceStore.getBoolean(Keys.confirmExit, false)
|
|
|
+ fun confirmExit() = preferenceStore.getBoolean("pref_confirm_exit", false)
|
|
|
|
|
|
- fun sideNavIconAlignment() = this.preferenceStore.getInt("pref_side_nav_icon_alignment", 0)
|
|
|
+ fun sideNavIconAlignment() = preferenceStore.getInt("pref_side_nav_icon_alignment", 0)
|
|
|
|
|
|
- fun autoUpdateMetadata() = this.preferenceStore.getBoolean(Keys.autoUpdateMetadata, false)
|
|
|
+ fun autoUpdateMetadata() = preferenceStore.getBoolean("auto_update_metadata", false)
|
|
|
|
|
|
- fun autoUpdateTrackers() = this.preferenceStore.getBoolean(Keys.autoUpdateTrackers, false)
|
|
|
+ fun autoUpdateTrackers() = preferenceStore.getBoolean("auto_update_trackers", false)
|
|
|
|
|
|
- fun themeMode() = this.preferenceStore.getEnum(
|
|
|
+ fun themeMode() = preferenceStore.getEnum(
|
|
|
"pref_theme_mode_key",
|
|
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { Values.ThemeMode.system } else { Values.ThemeMode.light },
|
|
|
)
|
|
|
|
|
|
- fun appTheme() = this.preferenceStore.getEnum(
|
|
|
+ fun appTheme() = preferenceStore.getEnum(
|
|
|
"pref_app_theme",
|
|
|
if (DeviceUtil.isDynamicColorAvailable) { Values.AppTheme.MONET } else { Values.AppTheme.DEFAULT },
|
|
|
)
|
|
|
|
|
|
- fun themeDarkAmoled() = this.preferenceStore.getBoolean("pref_theme_dark_amoled_key", false)
|
|
|
+ fun themeDarkAmoled() = preferenceStore.getBoolean("pref_theme_dark_amoled_key", false)
|
|
|
|
|
|
- fun pageTransitions() = this.preferenceStore.getBoolean("pref_enable_transitions_key", true)
|
|
|
+ fun pageTransitions() = preferenceStore.getBoolean("pref_enable_transitions_key", true)
|
|
|
|
|
|
- fun doubleTapAnimSpeed() = this.preferenceStore.getInt("pref_double_tap_anim_speed", 500)
|
|
|
+ fun doubleTapAnimSpeed() = preferenceStore.getInt("pref_double_tap_anim_speed", 500)
|
|
|
|
|
|
- fun showPageNumber() = this.preferenceStore.getBoolean("pref_show_page_number_key", true)
|
|
|
+ fun showPageNumber() = preferenceStore.getBoolean("pref_show_page_number_key", true)
|
|
|
|
|
|
- fun dualPageSplitPaged() = this.preferenceStore.getBoolean("pref_dual_page_split", false)
|
|
|
+ fun dualPageSplitPaged() = preferenceStore.getBoolean("pref_dual_page_split", false)
|
|
|
|
|
|
- fun dualPageInvertPaged() = this.preferenceStore.getBoolean("pref_dual_page_invert", false)
|
|
|
+ fun dualPageInvertPaged() = preferenceStore.getBoolean("pref_dual_page_invert", false)
|
|
|
|
|
|
- fun dualPageSplitWebtoon() = this.preferenceStore.getBoolean("pref_dual_page_split_webtoon", false)
|
|
|
+ fun dualPageSplitWebtoon() = preferenceStore.getBoolean("pref_dual_page_split_webtoon", false)
|
|
|
|
|
|
- fun dualPageInvertWebtoon() = this.preferenceStore.getBoolean("pref_dual_page_invert_webtoon", false)
|
|
|
+ fun dualPageInvertWebtoon() = preferenceStore.getBoolean("pref_dual_page_invert_webtoon", false)
|
|
|
|
|
|
- fun longStripSplitWebtoon() = this.preferenceStore.getBoolean("pref_long_strip_split_webtoon", true)
|
|
|
+ fun longStripSplitWebtoon() = preferenceStore.getBoolean("pref_long_strip_split_webtoon", true)
|
|
|
|
|
|
- fun showReadingMode() = this.preferenceStore.getBoolean(Keys.showReadingMode, true)
|
|
|
+ fun showReadingMode() = preferenceStore.getBoolean("pref_show_reading_mode", true)
|
|
|
|
|
|
- fun trueColor() = this.preferenceStore.getBoolean("pref_true_color_key", false)
|
|
|
+ fun trueColor() = preferenceStore.getBoolean("pref_true_color_key", false)
|
|
|
|
|
|
- fun fullscreen() = this.preferenceStore.getBoolean("fullscreen", true)
|
|
|
+ fun fullscreen() = preferenceStore.getBoolean("fullscreen", true)
|
|
|
|
|
|
- fun cutoutShort() = this.preferenceStore.getBoolean("cutout_short", true)
|
|
|
+ fun cutoutShort() = preferenceStore.getBoolean("cutout_short", true)
|
|
|
|
|
|
- fun keepScreenOn() = this.preferenceStore.getBoolean("pref_keep_screen_on_key", true)
|
|
|
+ fun keepScreenOn() = preferenceStore.getBoolean("pref_keep_screen_on_key", true)
|
|
|
|
|
|
- fun customBrightness() = this.preferenceStore.getBoolean("pref_custom_brightness_key", false)
|
|
|
+ fun customBrightness() = preferenceStore.getBoolean("pref_custom_brightness_key", false)
|
|
|
|
|
|
- fun customBrightnessValue() = this.preferenceStore.getInt("custom_brightness_value", 0)
|
|
|
+ fun customBrightnessValue() = preferenceStore.getInt("custom_brightness_value", 0)
|
|
|
|
|
|
- fun colorFilter() = this.preferenceStore.getBoolean("pref_color_filter_key", false)
|
|
|
+ fun colorFilter() = preferenceStore.getBoolean("pref_color_filter_key", false)
|
|
|
|
|
|
- fun colorFilterValue() = this.preferenceStore.getInt("color_filter_value", 0)
|
|
|
+ fun colorFilterValue() = preferenceStore.getInt("color_filter_value", 0)
|
|
|
|
|
|
- fun colorFilterMode() = this.preferenceStore.getInt("color_filter_mode", 0)
|
|
|
+ fun colorFilterMode() = preferenceStore.getInt("color_filter_mode", 0)
|
|
|
|
|
|
- fun grayscale() = this.preferenceStore.getBoolean("pref_grayscale", false)
|
|
|
+ fun grayscale() = preferenceStore.getBoolean("pref_grayscale", false)
|
|
|
|
|
|
- fun invertedColors() = this.preferenceStore.getBoolean("pref_inverted_colors", false)
|
|
|
+ fun invertedColors() = preferenceStore.getBoolean("pref_inverted_colors", false)
|
|
|
|
|
|
- fun defaultReadingMode() = this.preferenceStore.getInt(Keys.defaultReadingMode, ReadingModeType.RIGHT_TO_LEFT.flagValue)
|
|
|
+ fun defaultReadingMode() = preferenceStore.getInt("pref_default_reading_mode_key", ReadingModeType.RIGHT_TO_LEFT.flagValue)
|
|
|
|
|
|
- fun defaultOrientationType() = this.preferenceStore.getInt(Keys.defaultOrientationType, OrientationType.FREE.flagValue)
|
|
|
+ fun defaultOrientationType() = preferenceStore.getInt("pref_default_orientation_type_key", OrientationType.FREE.flagValue)
|
|
|
|
|
|
- fun imageScaleType() = this.preferenceStore.getInt("pref_image_scale_type_key", 1)
|
|
|
+ fun imageScaleType() = preferenceStore.getInt("pref_image_scale_type_key", 1)
|
|
|
|
|
|
- fun zoomStart() = this.preferenceStore.getInt("pref_zoom_start_key", 1)
|
|
|
+ fun zoomStart() = preferenceStore.getInt("pref_zoom_start_key", 1)
|
|
|
|
|
|
- fun readerTheme() = this.preferenceStore.getInt("pref_reader_theme_key", 1)
|
|
|
+ fun readerTheme() = preferenceStore.getInt("pref_reader_theme_key", 1)
|
|
|
|
|
|
- fun alwaysShowChapterTransition() = this.preferenceStore.getBoolean("always_show_chapter_transition", true)
|
|
|
+ fun alwaysShowChapterTransition() = preferenceStore.getBoolean("always_show_chapter_transition", true)
|
|
|
|
|
|
- fun cropBorders() = this.preferenceStore.getBoolean("crop_borders", false)
|
|
|
+ fun cropBorders() = preferenceStore.getBoolean("crop_borders", false)
|
|
|
|
|
|
- fun navigateToPan() = this.preferenceStore.getBoolean("navigate_pan", true)
|
|
|
+ fun navigateToPan() = preferenceStore.getBoolean("navigate_pan", true)
|
|
|
|
|
|
- fun landscapeZoom() = this.preferenceStore.getBoolean("landscape_zoom", true)
|
|
|
+ fun landscapeZoom() = preferenceStore.getBoolean("landscape_zoom", true)
|
|
|
|
|
|
- fun cropBordersWebtoon() = this.preferenceStore.getBoolean("crop_borders_webtoon", false)
|
|
|
+ fun cropBordersWebtoon() = preferenceStore.getBoolean("crop_borders_webtoon", false)
|
|
|
|
|
|
- fun webtoonSidePadding() = this.preferenceStore.getInt("webtoon_side_padding", 0)
|
|
|
+ fun webtoonSidePadding() = preferenceStore.getInt("webtoon_side_padding", 0)
|
|
|
|
|
|
- fun pagerNavInverted() = this.preferenceStore.getEnum("reader_tapping_inverted", Values.TappingInvertMode.NONE)
|
|
|
+ fun pagerNavInverted() = preferenceStore.getEnum("reader_tapping_inverted", Values.TappingInvertMode.NONE)
|
|
|
|
|
|
- fun webtoonNavInverted() = this.preferenceStore.getEnum("reader_tapping_inverted_webtoon", Values.TappingInvertMode.NONE)
|
|
|
+ fun webtoonNavInverted() = preferenceStore.getEnum("reader_tapping_inverted_webtoon", Values.TappingInvertMode.NONE)
|
|
|
|
|
|
- fun readWithLongTap() = this.preferenceStore.getBoolean("reader_long_tap", true)
|
|
|
+ fun readWithLongTap() = preferenceStore.getBoolean("reader_long_tap", true)
|
|
|
|
|
|
- fun readWithVolumeKeys() = this.preferenceStore.getBoolean("reader_volume_keys", false)
|
|
|
+ fun readWithVolumeKeys() = preferenceStore.getBoolean("reader_volume_keys", false)
|
|
|
|
|
|
- fun readWithVolumeKeysInverted() = this.preferenceStore.getBoolean("reader_volume_keys_inverted", false)
|
|
|
+ fun readWithVolumeKeysInverted() = preferenceStore.getBoolean("reader_volume_keys_inverted", false)
|
|
|
|
|
|
- fun navigationModePager() = this.preferenceStore.getInt("reader_navigation_mode_pager", 0)
|
|
|
+ fun navigationModePager() = preferenceStore.getInt("reader_navigation_mode_pager", 0)
|
|
|
|
|
|
- fun navigationModeWebtoon() = this.preferenceStore.getInt("reader_navigation_mode_webtoon", 0)
|
|
|
+ fun navigationModeWebtoon() = preferenceStore.getInt("reader_navigation_mode_webtoon", 0)
|
|
|
|
|
|
- fun showNavigationOverlayNewUser() = this.preferenceStore.getBoolean("reader_navigation_overlay_new_user", true)
|
|
|
+ fun showNavigationOverlayNewUser() = preferenceStore.getBoolean("reader_navigation_overlay_new_user", true)
|
|
|
|
|
|
- fun showNavigationOverlayOnStart() = this.preferenceStore.getBoolean("reader_navigation_overlay_on_start", false)
|
|
|
+ fun showNavigationOverlayOnStart() = preferenceStore.getBoolean("reader_navigation_overlay_on_start", false)
|
|
|
|
|
|
- fun readerHideThreshold() = this.preferenceStore.getEnum("reader_hide_threshold", Values.ReaderHideThreshold.LOW)
|
|
|
+ fun readerHideThreshold() = preferenceStore.getEnum("reader_hide_threshold", Values.ReaderHideThreshold.LOW)
|
|
|
|
|
|
- fun autoUpdateTrack() = this.preferenceStore.getBoolean(Keys.autoUpdateTrack, true)
|
|
|
+ fun autoUpdateTrack() = preferenceStore.getBoolean("pref_auto_update_manga_sync_key", true)
|
|
|
|
|
|
- fun lastVersionCode() = this.preferenceStore.getInt("last_version_code", 0)
|
|
|
+ fun lastVersionCode() = preferenceStore.getInt("last_version_code", 0)
|
|
|
|
|
|
- fun trackUsername(sync: TrackService) = this.preferenceStore.getString(Keys.trackUsername(sync.id), "")
|
|
|
+ fun trackUsername(sync: TrackService) = preferenceStore.getString(Keys.trackUsername(sync.id), "")
|
|
|
|
|
|
- fun trackPassword(sync: TrackService) = this.preferenceStore.getString(Keys.trackPassword(sync.id), "")
|
|
|
+ fun trackPassword(sync: TrackService) = preferenceStore.getString(Keys.trackPassword(sync.id), "")
|
|
|
|
|
|
fun setTrackCredentials(sync: TrackService, username: String, password: String) {
|
|
|
trackUsername(sync).set(username)
|
|
|
trackPassword(sync).set(password)
|
|
|
}
|
|
|
|
|
|
- fun trackToken(sync: TrackService) = this.preferenceStore.getString(Keys.trackToken(sync.id), "")
|
|
|
+ fun trackToken(sync: TrackService) = preferenceStore.getString(Keys.trackToken(sync.id), "")
|
|
|
|
|
|
- fun anilistScoreType() = this.preferenceStore.getString("anilist_score_type", Anilist.POINT_10)
|
|
|
+ fun anilistScoreType() = preferenceStore.getString("anilist_score_type", Anilist.POINT_10)
|
|
|
|
|
|
- fun backupsDirectory() = this.preferenceStore.getString("backup_directory", defaultBackupDir.toString())
|
|
|
+ fun backupsDirectory() = preferenceStore.getString("backup_directory", defaultBackupDir.toString())
|
|
|
|
|
|
- fun relativeTime() = this.preferenceStore.getInt("relative_time", 7)
|
|
|
+ fun relativeTime() = preferenceStore.getInt("relative_time", 7)
|
|
|
|
|
|
- fun dateFormat(format: String = this.preferenceStore.getString(Keys.dateFormat, "").get()): DateFormat = when (format) {
|
|
|
+ fun dateFormat(format: String = preferenceStore.getString(Keys.dateFormat, "").get()): DateFormat = when (format) {
|
|
|
"" -> DateFormat.getDateInstance(DateFormat.SHORT)
|
|
|
else -> SimpleDateFormat(format, Locale.getDefault())
|
|
|
}
|
|
|
|
|
|
- fun downloadsDirectory() = this.preferenceStore.getString("download_directory", defaultDownloadsDir.toString())
|
|
|
+ fun downloadsDirectory() = preferenceStore.getString("download_directory", defaultDownloadsDir.toString())
|
|
|
|
|
|
- fun downloadOnlyOverWifi() = this.preferenceStore.getBoolean(Keys.downloadOnlyOverWifi, true)
|
|
|
+ fun downloadOnlyOverWifi() = preferenceStore.getBoolean("pref_download_only_over_wifi_key", true)
|
|
|
|
|
|
- fun saveChaptersAsCBZ() = this.preferenceStore.getBoolean("save_chapter_as_cbz", true)
|
|
|
+ fun saveChaptersAsCBZ() = preferenceStore.getBoolean("save_chapter_as_cbz", true)
|
|
|
|
|
|
- fun splitTallImages() = this.preferenceStore.getBoolean("split_tall_images", false)
|
|
|
+ fun splitTallImages() = preferenceStore.getBoolean("split_tall_images", false)
|
|
|
|
|
|
- fun folderPerManga() = this.preferenceStore.getBoolean(Keys.folderPerManga, false)
|
|
|
+ fun folderPerManga() = preferenceStore.getBoolean("create_folder_per_manga", false)
|
|
|
|
|
|
- fun numberOfBackups() = this.preferenceStore.getInt("backup_slots", 2)
|
|
|
+ fun numberOfBackups() = preferenceStore.getInt("backup_slots", 2)
|
|
|
|
|
|
- fun backupInterval() = this.preferenceStore.getInt("backup_interval", 12)
|
|
|
+ fun backupInterval() = preferenceStore.getInt("backup_interval", 12)
|
|
|
|
|
|
- fun removeAfterReadSlots() = this.preferenceStore.getInt(Keys.removeAfterReadSlots, -1)
|
|
|
+ fun removeAfterReadSlots() = preferenceStore.getInt("remove_after_read_slots", -1)
|
|
|
|
|
|
- fun removeAfterMarkedAsRead() = this.preferenceStore.getBoolean(Keys.removeAfterMarkedAsRead, false)
|
|
|
+ fun removeAfterMarkedAsRead() = preferenceStore.getBoolean("pref_remove_after_marked_as_read_key", false)
|
|
|
|
|
|
- fun removeBookmarkedChapters() = this.preferenceStore.getBoolean(Keys.removeBookmarkedChapters, false)
|
|
|
+ fun removeBookmarkedChapters() = preferenceStore.getBoolean("pref_remove_bookmarked", false)
|
|
|
|
|
|
- fun removeExcludeCategories() = this.preferenceStore.getStringSet("remove_exclude_categories", emptySet())
|
|
|
+ fun removeExcludeCategories() = preferenceStore.getStringSet("remove_exclude_categories", emptySet())
|
|
|
|
|
|
- fun downloadedOnly() = this.preferenceStore.getBoolean("pref_downloaded_only", false)
|
|
|
+ fun downloadedOnly() = preferenceStore.getBoolean("pref_downloaded_only", false)
|
|
|
|
|
|
- fun automaticExtUpdates() = this.preferenceStore.getBoolean("automatic_ext_updates", true)
|
|
|
+ fun automaticExtUpdates() = preferenceStore.getBoolean("automatic_ext_updates", true)
|
|
|
|
|
|
- fun lastAppCheck() = this.preferenceStore.getLong("last_app_check", 0)
|
|
|
- fun lastExtCheck() = this.preferenceStore.getLong("last_ext_check", 0)
|
|
|
+ fun lastAppCheck() = preferenceStore.getLong("last_app_check", 0)
|
|
|
+ fun lastExtCheck() = preferenceStore.getLong("last_ext_check", 0)
|
|
|
|
|
|
- fun downloadNewChapters() = this.preferenceStore.getBoolean("download_new", false)
|
|
|
+ fun downloadNewChapters() = preferenceStore.getBoolean("download_new", false)
|
|
|
|
|
|
- fun downloadNewChapterCategories() = this.preferenceStore.getStringSet("download_new_categories", emptySet())
|
|
|
- fun downloadNewChapterCategoriesExclude() = this.preferenceStore.getStringSet("download_new_categories_exclude", emptySet())
|
|
|
+ fun downloadNewChapterCategories() = preferenceStore.getStringSet("download_new_categories", emptySet())
|
|
|
+ fun downloadNewChapterCategoriesExclude() = preferenceStore.getStringSet("download_new_categories_exclude", emptySet())
|
|
|
|
|
|
- fun autoDownloadWhileReading() = this.preferenceStore.getInt("auto_download_while_reading", 0)
|
|
|
+ fun autoDownloadWhileReading() = preferenceStore.getInt("auto_download_while_reading", 0)
|
|
|
|
|
|
- fun skipRead() = this.preferenceStore.getBoolean(Keys.skipRead, false)
|
|
|
+ fun skipRead() = preferenceStore.getBoolean("skip_read", false)
|
|
|
|
|
|
- fun skipFiltered() = this.preferenceStore.getBoolean(Keys.skipFiltered, true)
|
|
|
+ fun skipFiltered() = preferenceStore.getBoolean("skip_filtered", true)
|
|
|
|
|
|
- fun migrateFlags() = this.preferenceStore.getInt("migrate_flags", Int.MAX_VALUE)
|
|
|
+ fun migrateFlags() = preferenceStore.getInt("migrate_flags", Int.MAX_VALUE)
|
|
|
|
|
|
- fun filterChapterByRead() = this.preferenceStore.getInt(Keys.defaultChapterFilterByRead, DomainManga.SHOW_ALL.toInt())
|
|
|
+ fun filterChapterByRead() = preferenceStore.getInt("default_chapter_filter_by_read", DomainManga.SHOW_ALL.toInt())
|
|
|
|
|
|
- fun filterChapterByDownloaded() = this.preferenceStore.getInt(Keys.defaultChapterFilterByDownloaded, DomainManga.SHOW_ALL.toInt())
|
|
|
+ fun filterChapterByDownloaded() = preferenceStore.getInt("default_chapter_filter_by_downloaded", DomainManga.SHOW_ALL.toInt())
|
|
|
|
|
|
- fun filterChapterByBookmarked() = this.preferenceStore.getInt(Keys.defaultChapterFilterByBookmarked, DomainManga.SHOW_ALL.toInt())
|
|
|
+ fun filterChapterByBookmarked() = preferenceStore.getInt("default_chapter_filter_by_bookmarked", DomainManga.SHOW_ALL.toInt())
|
|
|
|
|
|
- fun sortChapterBySourceOrNumber() = this.preferenceStore.getInt(Keys.defaultChapterSortBySourceOrNumber, DomainManga.CHAPTER_SORTING_SOURCE.toInt())
|
|
|
+ // and upload date
|
|
|
+ fun sortChapterBySourceOrNumber() = preferenceStore.getInt("default_chapter_sort_by_source_or_number", DomainManga.CHAPTER_SORTING_SOURCE.toInt())
|
|
|
|
|
|
- fun displayChapterByNameOrNumber() = this.preferenceStore.getInt(Keys.defaultChapterDisplayByNameOrNumber, DomainManga.CHAPTER_DISPLAY_NAME.toInt())
|
|
|
+ fun displayChapterByNameOrNumber() = preferenceStore.getInt("default_chapter_display_by_name_or_number", DomainManga.CHAPTER_DISPLAY_NAME.toInt())
|
|
|
|
|
|
- fun sortChapterByAscendingOrDescending() = this.preferenceStore.getInt(Keys.defaultChapterSortByAscendingOrDescending, DomainManga.CHAPTER_SORT_DESC.toInt())
|
|
|
+ fun sortChapterByAscendingOrDescending() = preferenceStore.getInt("default_chapter_sort_by_ascending_or_descending", DomainManga.CHAPTER_SORT_DESC.toInt())
|
|
|
|
|
|
- fun incognitoMode() = this.preferenceStore.getBoolean("incognito_mode", false)
|
|
|
+ fun incognitoMode() = preferenceStore.getBoolean("incognito_mode", false)
|
|
|
|
|
|
- fun tabletUiMode() = this.preferenceStore.getEnum("tablet_ui_mode", Values.TabletUiMode.AUTOMATIC)
|
|
|
+ fun tabletUiMode() = preferenceStore.getEnum("tablet_ui_mode", Values.TabletUiMode.AUTOMATIC)
|
|
|
|
|
|
- fun extensionInstaller() = this.preferenceStore.getEnum(
|
|
|
+ fun extensionInstaller() = preferenceStore.getEnum(
|
|
|
"extension_installer",
|
|
|
if (DeviceUtil.isMiui) Values.ExtensionInstaller.LEGACY else Values.ExtensionInstaller.PACKAGEINSTALLER,
|
|
|
)
|
|
|
|
|
|
- fun autoClearChapterCache() = this.preferenceStore.getBoolean(Keys.autoClearChapterCache, false)
|
|
|
+ fun autoClearChapterCache() = preferenceStore.getBoolean("auto_clear_chapter_cache", false)
|
|
|
|
|
|
fun setChapterSettingsDefault(manga: Manga) {
|
|
|
filterChapterByRead().set(manga.readFilter)
|