mirror of
https://github.com/koreader/koreader
synced 2024-10-31 21:20:20 +00:00
6059958ab6
Move classic file browser settings from CoverBrowser plugin into FileManagerMenu, so they are available when this plugin is disabled (as they also apply to everything based on Menu).
178 lines
4.6 KiB
Lua
178 lines
4.6 KiB
Lua
local Device = require("device")
|
|
|
|
local order = {
|
|
["KOMenu:menu_buttons"] = {
|
|
"filemanager_settings",
|
|
"setting",
|
|
"tools",
|
|
"search",
|
|
"plus_menu",
|
|
"main",
|
|
},
|
|
filemanager_settings = {
|
|
"filemanager_display_mode",
|
|
"filebrowser_settings",
|
|
"----------------------------",
|
|
"sort_by",
|
|
"reverse_sorting",
|
|
"----------------------------",
|
|
"start_with",
|
|
},
|
|
setting = {
|
|
-- common settings
|
|
-- those that don't exist will simply be skipped during menu gen
|
|
"frontlight", -- if Device:hasFrontlight()
|
|
"night_mode",
|
|
"----------------------------",
|
|
"network",
|
|
"screen",
|
|
"----------------------------",
|
|
"taps_and_gestures",
|
|
"navigation",
|
|
"document",
|
|
"----------------------------",
|
|
"language",
|
|
"device",
|
|
-- end common settings
|
|
},
|
|
device = {
|
|
"keyboard_layout",
|
|
"time",
|
|
"battery",
|
|
"charging_led", -- if Device:canToggleChargingLED()
|
|
"autostandby",
|
|
"autosuspend",
|
|
"autoshutdown",
|
|
"ignore_sleepcover",
|
|
"ignore_open_sleepcover",
|
|
"ignore_battery_optimizations",
|
|
"mass_storage_settings", -- if Device:canToggleMassStorage()
|
|
"file_ext_assoc",
|
|
"screenshot",
|
|
},
|
|
navigation = {
|
|
"back_to_exit",
|
|
"back_in_filemanager",
|
|
"back_in_reader",
|
|
"android_volume_keys",
|
|
"android_camera_key",
|
|
"android_haptic_feedback",
|
|
"android_back_button",
|
|
"----------------------------",
|
|
"invert_page_turn_buttons",
|
|
},
|
|
network = {
|
|
"network_wifi",
|
|
"network_proxy",
|
|
"network_powersave",
|
|
"network_restore",
|
|
"network_info",
|
|
"network_before_wifi_action",
|
|
"network_after_wifi_action",
|
|
"network_dismiss_scan",
|
|
"----------------------------",
|
|
"ssh",
|
|
},
|
|
screen = {
|
|
"screensaver",
|
|
"----------------------------",
|
|
"screen_rotation",
|
|
"----------------------------",
|
|
"screen_dpi",
|
|
"screen_eink_opt",
|
|
"color_rendering",
|
|
"----------------------------",
|
|
"screen_timeout",
|
|
"fullscreen",
|
|
},
|
|
taps_and_gestures = {
|
|
"gesture_manager",
|
|
"gesture_intervals",
|
|
"----------------------------",
|
|
"menu_activate",
|
|
"ignore_hold_corners",
|
|
"screen_disable_double_tab",
|
|
},
|
|
tools = {
|
|
"calibre",
|
|
"evernote",
|
|
"statistics",
|
|
"move_to_archive",
|
|
"cloud_storage",
|
|
"read_timer",
|
|
"wallabag",
|
|
"news_downloader",
|
|
"send2ebook",
|
|
"text_editor",
|
|
"profiles",
|
|
"qrclipboard",
|
|
"----------------------------",
|
|
"more_tools",
|
|
},
|
|
more_tools = {
|
|
"auto_frontlight",
|
|
"battery_statistics",
|
|
"synchronize_time",
|
|
"keep_alive",
|
|
"doc_setting_tweak",
|
|
"terminal",
|
|
"----------------------------",
|
|
"plugin_management",
|
|
"advanced_settings",
|
|
"developer_options",
|
|
},
|
|
search = {
|
|
"dictionary_lookup",
|
|
"dictionary_lookup_history",
|
|
"dictionary_settings",
|
|
"----------------------------",
|
|
"wikipedia_lookup",
|
|
"wikipedia_history",
|
|
"wikipedia_settings",
|
|
"----------------------------",
|
|
"find_book_in_calibre_catalog",
|
|
"find_file",
|
|
"----------------------------",
|
|
"goodreads",
|
|
"opds_catalog",
|
|
},
|
|
main = {
|
|
"history",
|
|
"open_last_document",
|
|
"----------------------------",
|
|
"collections",
|
|
"----------------------------",
|
|
"mass_storage_actions", -- if Device:canToggleMassStorage()
|
|
"----------------------------",
|
|
"ota_update", -- if Device:hasOTAUpdates()
|
|
"help",
|
|
"----------------------------",
|
|
"exit_menu",
|
|
},
|
|
help = {
|
|
"quickstart_guide",
|
|
"----------------------------",
|
|
"report_bug",
|
|
"----------------------------",
|
|
"system_statistics", -- if enabled (Plugin)
|
|
"version",
|
|
"about",
|
|
},
|
|
plus_menu = {},
|
|
exit_menu = {
|
|
"restart_koreader", -- if Device:canRestart()
|
|
"----------------------------",
|
|
"sleep", -- if Device:canSuspend()
|
|
"poweroff", -- if Device:canPowerOff()
|
|
"reboot", -- if Device:canReboot()
|
|
"----------------------------",
|
|
"start_bq", -- if Device:isCervantes()
|
|
"exit",
|
|
}
|
|
}
|
|
|
|
if not Device:hasExitOptions() then
|
|
order.exit_menu = nil
|
|
end
|
|
return order
|