Mini-bar question
It happened two times already after a full update: the previous customized settings for my mini-bar changed.
Fortunately, I know how to get back to them following this path:
frontend/apps/reader/modules/readerfooter.lua and write your own settings with true/false.
Question: is it possible to keep these settings in default.persistent.lua?
You can see in the joint attachment my customized settings for the mini-bar: I only care about battery, time, and page progress (together).
and here as they are written within
readerfooter.lua file
Spoiler:
function ReaderFooter:init()
self.pageno = self.view.state.page
self.settings = G_reader_settings:readSetting("footer") or {
disabled = false,
all_at_once = true,
progress_bar = false,
toc_markers = false,
battery = true,
time = true,
page_progress = true,
pages_left = false,
percentage = false,
book_time_to_read = false,
chapter_time_to_read = false,
}