@@ -12,13 +12,13 @@ data class BackupOptions(
12
12
val chapters : Boolean = true ,
13
13
val tracking : Boolean = true ,
14
14
val history : Boolean = true ,
15
+ val readEntries : Boolean = true ,
15
16
val appSettings : Boolean = true ,
16
17
val extensionRepoSettings : Boolean = true ,
17
18
val sourceSettings : Boolean = true ,
18
19
val privateSettings : Boolean = false ,
19
20
// SY -->
20
21
val customInfo : Boolean = true ,
21
- val readEntries : Boolean = true ,
22
22
val savedSearchesFeeds : Boolean = true ,
23
23
// SY <--
24
24
) {
@@ -29,13 +29,13 @@ data class BackupOptions(
29
29
chapters,
30
30
tracking,
31
31
history,
32
+ readEntries,
32
33
appSettings,
33
34
extensionRepoSettings,
34
35
sourceSettings,
35
36
privateSettings,
36
37
// SY -->
37
38
customInfo,
38
- readEntries,
39
39
savedSearchesFeeds,
40
40
// SY <--
41
41
)
@@ -73,19 +73,19 @@ data class BackupOptions(
73
73
getter = BackupOptions ::categories,
74
74
setter = { options, enabled -> options.copy(categories = enabled) },
75
75
),
76
+ Entry (
77
+ label = MR .strings.non_library_settings,
78
+ getter = BackupOptions ::readEntries,
79
+ setter = { options, enabled -> options.copy(readEntries = enabled) },
80
+ enabled = { it.libraryEntries },
81
+ ),
76
82
// SY -->
77
83
Entry (
78
84
label = SYMR .strings.custom_entry_info,
79
85
getter = BackupOptions ::customInfo,
80
86
setter = { options, enabled -> options.copy(customInfo = enabled) },
81
87
enabled = { it.libraryEntries },
82
88
),
83
- Entry (
84
- label = SYMR .strings.all_read_entries,
85
- getter = BackupOptions ::readEntries,
86
- setter = { options, enabled -> options.copy(readEntries = enabled) },
87
- enabled = { it.libraryEntries },
88
- ),
89
89
Entry (
90
90
// KMK-->
91
91
label = KMR .strings.saved_searches_feeds,
@@ -126,13 +126,13 @@ data class BackupOptions(
126
126
chapters = array[2 ],
127
127
tracking = array[3 ],
128
128
history = array[4 ],
129
- appSettings = array[5 ],
130
- extensionRepoSettings = array[6 ],
131
- sourceSettings = array[7 ],
132
- privateSettings = array[8 ],
129
+ readEntries = array[5 ],
130
+ appSettings = array[6 ],
131
+ extensionRepoSettings = array[7 ],
132
+ sourceSettings = array[8 ],
133
+ privateSettings = array[9 ],
133
134
// SY -->
134
- customInfo = array[9 ],
135
- readEntries = array[10 ],
135
+ customInfo = array[10 ],
136
136
savedSearchesFeeds = array[11 ],
137
137
// SY <--
138
138
)
0 commit comments