Skip to content
Snippets Groups Projects
Commit 1adbdd73 authored by ave's avatar ave
Browse files

settings: rename wifi on boot setting to always-on wifi

parent 9b19c434
Branches
No related tags found
No related merge requests found
...@@ -9,6 +9,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ...@@ -9,6 +9,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
### Added ### Added
### Changed ### Changed
- settings: "Enable WiFi on Boot" option is now "Always-On Wi-Fi" (but is functionally identical), should help reduce confusion about Wi-Fi turning off automatically
### Fixed ### Fixed
- updat3r: Improved version comparison logic, making the "you are up to date :)" logic work - updat3r: Improved version comparison logic, making the "you are up to date :)" logic work
......
...@@ -200,9 +200,9 @@ onoff_debug = OnOffTunable("Debug Overlay", "system.debug", False) ...@@ -200,9 +200,9 @@ onoff_debug = OnOffTunable("Debug Overlay", "system.debug", False)
onoff_debug_touch = OnOffTunable("Touch Overlay", "system.debug_touch", False) onoff_debug_touch = OnOffTunable("Touch Overlay", "system.debug_touch", False)
onoff_debug_ftop = OnOffTunable("Debug: ftop", "system.ftop_enabled", False) onoff_debug_ftop = OnOffTunable("Debug: ftop", "system.ftop_enabled", False)
onoff_show_tray = OnOffTunable("Show Icons", "system.show_icons", True) onoff_show_tray = OnOffTunable("Show Icons", "system.show_icons", True)
onoff_wifi = OnOffTunable("Enable WiFi on Boot", "system.wifi.enabled", False) onoff_wifi = OnOffTunable("Always-On Wi-Fi", "system.wifi.enabled", False)
onoff_wifi_preference = OnOffTunable( onoff_wifi_preference = OnOffTunable(
"Let apps change WiFi", "system.wifi.allow_apps_to_change_wifi", True "Let apps change Wi-Fi", "system.wifi.allow_apps_to_change_wifi", True
) )
str_wifi_ssid = StringTunable("WiFi SSID", "system.wifi.ssid", None) str_wifi_ssid = StringTunable("WiFi SSID", "system.wifi.ssid", None)
str_wifi_psk = ObfuscatedStringTunable("WiFi Password", "system.wifi.psk", None) str_wifi_psk = ObfuscatedStringTunable("WiFi Password", "system.wifi.psk", None)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment