mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-07 01:14:15 +02:00
[core] updates check interval default to 5 minutes
This commit is contained in:
@@ -10,7 +10,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|||||||
- General
|
- General
|
||||||
- minor memory improvements
|
- minor memory improvements
|
||||||
- code refactoring
|
- code refactoring
|
||||||
- update checking interval on tray mode is now measured in minutes instead of seconds (default: 30)
|
- update checking interval on tray mode is now measured in minutes instead of seconds (default: 5)
|
||||||
|
|
||||||
- Arch
|
- Arch
|
||||||
- info dialog:
|
- info dialog:
|
||||||
|
|||||||
@@ -409,7 +409,7 @@ ui:
|
|||||||
theme: defines the path to the theme/stylesheet file with a .qss extension (e.g: /path/to/my/theme.qss). For themes provided by bauh, only a string key is needed (e.g: light). Default: light
|
theme: defines the path to the theme/stylesheet file with a .qss extension (e.g: /path/to/my/theme.qss). For themes provided by bauh, only a string key is needed (e.g: light). Default: light
|
||||||
system_theme: merges the system's theme/stylesheet with bauh's. Default: false.
|
system_theme: merges the system's theme/stylesheet with bauh's. Default: false.
|
||||||
updates:
|
updates:
|
||||||
check_interval: 30 # the updates checking interval in MINUTES
|
check_interval: 5 # the updates checking interval in minutes
|
||||||
ask_for_reboot: true # if a dialog asking for a system reboot should be displayed after a successful upgrade
|
ask_for_reboot: true # if a dialog asking for a system reboot should be displayed after a successful upgrade
|
||||||
disk:
|
disk:
|
||||||
trim:
|
trim:
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ class CoreConfigManager(YAMLConfigManager):
|
|||||||
},
|
},
|
||||||
'locale': None,
|
'locale': None,
|
||||||
'updates': {
|
'updates': {
|
||||||
'check_interval': 30,
|
'check_interval': 5,
|
||||||
'ask_for_reboot': True
|
'ask_for_reboot': True
|
||||||
},
|
},
|
||||||
'system': {
|
'system': {
|
||||||
|
|||||||
Reference in New Issue
Block a user