Albirew/tachiyomi
Archivé
1
0
Bifurcation 0

Enable app auto update by default

Cette révision appartient à :
arkon 2020-03-07 13:11:02 -05:00
Parent 8b6268966e
révision 5e9496ef36
3 fichiers modifiés avec 10 ajouts et 3 suppressions

Voir le fichier

@ -20,7 +20,14 @@ object Migrations {
if (oldVersion < BuildConfig.VERSION_CODE) {
preferences.lastVersionCode().set(BuildConfig.VERSION_CODE)
if (oldVersion == 0) return false
// Fresh install
if (oldVersion == 0) {
// Set up default app updater task
if (BuildConfig.INCLUDE_UPDATER && preferences.automaticUpdates()) {
UpdaterJob.setupTask(context)
}
return false
}
if (oldVersion < 14) {
// Restore jobs after upgrading to Evernote's job scheduler.

Voir le fichier

@ -186,7 +186,7 @@ class PreferencesHelper(val context: Context) {
fun librarySortingAscending() = rxPrefs.getBoolean("library_sorting_ascending", true)
fun automaticUpdates() = prefs.getBoolean(Keys.automaticUpdates, false)
fun automaticUpdates() = prefs.getBoolean(Keys.automaticUpdates, true)
fun hiddenCatalogues() = rxPrefs.getStringSet("hidden_catalogues", emptySet())

Voir le fichier

@ -56,7 +56,7 @@ class AboutController : SettingsController() {
key = Keys.automaticUpdates
titleRes = R.string.pref_enable_automatic_updates
summaryRes = R.string.pref_enable_automatic_updates_summary
defaultValue = false
defaultValue = true
if (isUpdaterEnabled) {
onChange { newValue ->