mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-06 22:54:16 +02:00
[systray] improvement: update checking interval on tray mode is now measured in minutes instead of seconds
This commit is contained in:
@@ -10,6 +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)
|
||||||
|
|
||||||
- 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 SECONDS
|
check_interval: 30 # 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:
|
||||||
|
|||||||
@@ -85,7 +85,7 @@ class UpdateCheck(QThread):
|
|||||||
if updates is not None:
|
if updates is not None:
|
||||||
self.signal.emit(updates)
|
self.signal.emit(updates)
|
||||||
|
|
||||||
self.sleep(self.check_interval)
|
self.sleep(int(self.check_interval * 60))
|
||||||
|
|
||||||
def run(self):
|
def run(self):
|
||||||
while True:
|
while True:
|
||||||
|
|||||||
@@ -245,7 +245,7 @@ core.config.ui.tray.default_icon.tip=The default icon displayed on the tray
|
|||||||
core.config.ui.tray.updates_icon=Update icon
|
core.config.ui.tray.updates_icon=Update icon
|
||||||
core.config.ui.tray.updates_icon.tip=The displayed icon when there are updates available
|
core.config.ui.tray.updates_icon.tip=The displayed icon when there are updates available
|
||||||
core.config.updates.interval=Updates interval
|
core.config.updates.interval=Updates interval
|
||||||
core.config.updates.interval.tip=Defines the time interval in which the update-checking for the installed applications will happen ( in SECONDS )
|
core.config.updates.interval.tip=Defines the time interval (in minutes) in which the update-checking for the installed applications will happen
|
||||||
core.config.updates.reboot=Reboot after upgrading
|
core.config.updates.reboot=Reboot after upgrading
|
||||||
core.config.updates.reboot.tip=A message asking for a system reboot will be displayed after a successful upgrade
|
core.config.updates.reboot.tip=A message asking for a system reboot will be displayed after a successful upgrade
|
||||||
custom_action.proceed_with=Proceed with {} ?
|
custom_action.proceed_with=Proceed with {} ?
|
||||||
|
|||||||
@@ -244,7 +244,7 @@ core.config.ui.tray.default_icon.tip=The default icon displayed on the tray
|
|||||||
core.config.ui.tray.updates_icon=Icon bei Updates
|
core.config.ui.tray.updates_icon=Icon bei Updates
|
||||||
core.config.ui.tray.updates_icon.tip=The displayed icon when there are updates available
|
core.config.ui.tray.updates_icon.tip=The displayed icon when there are updates available
|
||||||
core.config.updates.interval=Update-Intervall
|
core.config.updates.interval=Update-Intervall
|
||||||
core.config.updates.interval.tip=Das Intervall (in Sekunden), in dem nach Updates für die installierten Anwendungen gesucht wird.
|
core.config.updates.interval.tip=Das Intervall (in Protokoll), in dem nach Updates für die installierten Anwendungen gesucht wird.
|
||||||
core.config.updates.reboot=Reboot after upgrading
|
core.config.updates.reboot=Reboot after upgrading
|
||||||
core.config.updates.reboot.tip=A message asking for a system reboot will be displayed after a successful upgrade
|
core.config.updates.reboot.tip=A message asking for a system reboot will be displayed after a successful upgrade
|
||||||
custom_action.proceed_with=Proceed with {} ?
|
custom_action.proceed_with=Proceed with {} ?
|
||||||
|
|||||||
@@ -243,7 +243,7 @@ core.config.ui.tray.default_icon.tip=The default icon displayed on the tray
|
|||||||
core.config.ui.tray.default_icon=Default icon
|
core.config.ui.tray.default_icon=Default icon
|
||||||
core.config.ui.tray.updates_icon.tip=The displayed icon when there are updates available
|
core.config.ui.tray.updates_icon.tip=The displayed icon when there are updates available
|
||||||
core.config.ui.tray.updates_icon=Update icon
|
core.config.ui.tray.updates_icon=Update icon
|
||||||
core.config.updates.interval.tip=Defines the time interval in which the update-checking for the installed applications will happen ( in SECONDS )
|
core.config.updates.interval.tip=Defines the time interval (in minutes) in which the update-checking for the installed applications will happen
|
||||||
core.config.updates.interval=Updates interval
|
core.config.updates.interval=Updates interval
|
||||||
core.config.updates.reboot=Reboot after upgrading
|
core.config.updates.reboot=Reboot after upgrading
|
||||||
core.config.updates.reboot.tip=A message asking for a system reboot will be displayed after a successful upgrade
|
core.config.updates.reboot.tip=A message asking for a system reboot will be displayed after a successful upgrade
|
||||||
|
|||||||
@@ -245,7 +245,7 @@ core.config.ui.tray.default_icon.tip=El icono predeterminado que se muestra en l
|
|||||||
core.config.ui.tray.updates_icon=Icono de actualización
|
core.config.ui.tray.updates_icon=Icono de actualización
|
||||||
core.config.ui.tray.updates_icon.tip=El icono que se muestra cuando hay actualizaciones disponibles
|
core.config.ui.tray.updates_icon.tip=El icono que se muestra cuando hay actualizaciones disponibles
|
||||||
core.config.updates.interval=Intervalo de actualizaciones
|
core.config.updates.interval=Intervalo de actualizaciones
|
||||||
core.config.updates.interval.tip=Define el intervalo de tiempo en el que se realizará la verificación de actualizaciones para las aplicaciones instaladas ( en SEGUNDOS )
|
core.config.updates.interval.tip=Define el intervalo de tiempo (en minutos) en que se realizará la verificación de actualizaciones para las aplicaciones instaladas
|
||||||
core.config.updates.reboot=Reiniciar después de actualizar
|
core.config.updates.reboot=Reiniciar después de actualizar
|
||||||
core.config.updates.reboot.tip=Se mostrará un mensaje solicitando el reinicio del sistema después de una actualización exitosa
|
core.config.updates.reboot.tip=Se mostrará un mensaje solicitando el reinicio del sistema después de una actualización exitosa
|
||||||
custom_action.proceed_with=¿Continuar con {}?
|
custom_action.proceed_with=¿Continuar con {}?
|
||||||
|
|||||||
@@ -241,7 +241,7 @@ core.config.ui.tray.default_icon.tip=Icône par défaut dans la barre système
|
|||||||
core.config.ui.tray.default_icon=Icône par dafaut
|
core.config.ui.tray.default_icon=Icône par dafaut
|
||||||
core.config.ui.tray.updates_icon.tip=Icône affichée quand il y a des mises à jour disponibles
|
core.config.ui.tray.updates_icon.tip=Icône affichée quand il y a des mises à jour disponibles
|
||||||
core.config.ui.tray.updates_icon=Icône de mise à jour
|
core.config.ui.tray.updates_icon=Icône de mise à jour
|
||||||
core.config.updates.interval.tip=Définit l'intervalle durant lequel les mises à jour pour les applications installées seront rafraichies ( en SECONDES )
|
core.config.updates.interval.tip=Définit l'intervalle (en minutes) durant lequel les mises à jour pour les applications installées seront rafraichies
|
||||||
core.config.updates.interval=Intervalle de mises à jour
|
core.config.updates.interval=Intervalle de mises à jour
|
||||||
core.config.updates.reboot=Redémarrer après mise à jour
|
core.config.updates.reboot=Redémarrer après mise à jour
|
||||||
core.config.updates.reboot.tip=Après chaque mise à jour réussie, il vous sera demandé de redémarrer.
|
core.config.updates.reboot.tip=Après chaque mise à jour réussie, il vous sera demandé de redémarrer.
|
||||||
|
|||||||
@@ -245,7 +245,7 @@ core.config.ui.tray.default_icon.tip=The default icon displayed on the tray
|
|||||||
core.config.ui.tray.updates_icon=Update icon
|
core.config.ui.tray.updates_icon=Update icon
|
||||||
core.config.ui.tray.updates_icon.tip=The displayed icon when there are updates available
|
core.config.ui.tray.updates_icon.tip=The displayed icon when there are updates available
|
||||||
core.config.updates.interval=Updates interval
|
core.config.updates.interval=Updates interval
|
||||||
core.config.updates.interval.tip=Defines the time interval in which the update-checking for the installed applications will happen ( in SECONDS )
|
core.config.updates.interval.tip=Defines the time interval (in minutes) in which the update-checking for the installed applications will happen
|
||||||
core.config.updates.reboot=Reboot after upgrading
|
core.config.updates.reboot=Reboot after upgrading
|
||||||
core.config.updates.reboot.tip=A message asking for a system reboot will be displayed after a successful upgrade
|
core.config.updates.reboot.tip=A message asking for a system reboot will be displayed after a successful upgrade
|
||||||
custom_action.proceed_with=Proceed with {} ?
|
custom_action.proceed_with=Proceed with {} ?
|
||||||
|
|||||||
@@ -243,7 +243,7 @@ core.config.ui.tray.default_icon.tip=O ícone padrão exibido na bandeja
|
|||||||
core.config.ui.tray.default_icon=Ícone padrão
|
core.config.ui.tray.default_icon=Ícone padrão
|
||||||
core.config.ui.tray.updates_icon.tip=O ícone exibido quando há atualizações disponíveis
|
core.config.ui.tray.updates_icon.tip=O ícone exibido quando há atualizações disponíveis
|
||||||
core.config.ui.tray.updates_icon=Ícone de atualização
|
core.config.ui.tray.updates_icon=Ícone de atualização
|
||||||
core.config.updates.interval.tip=Define o intervalo de tempo em que ocorrerá a verificação de atualizações para os aplicativos instalados ( em SEGUNDOS )
|
core.config.updates.interval.tip=Define o intervalo de tempo (em minutos) em que ocorrerá a verificação de atualizações para os aplicativos instalados
|
||||||
core.config.updates.interval=Intervalo de atualizações
|
core.config.updates.interval=Intervalo de atualizações
|
||||||
core.config.updates.reboot=Reinicializar após atualizar
|
core.config.updates.reboot=Reinicializar após atualizar
|
||||||
core.config.updates.reboot.tip=Uma mensagem perguntando se o sistema deve ser reinicializado será exibida após uma atualização bem sucedida
|
core.config.updates.reboot.tip=Uma mensagem perguntando se o sistema deve ser reinicializado será exibida após uma atualização bem sucedida
|
||||||
|
|||||||
@@ -244,7 +244,7 @@ core.config.ui.tray.default_icon.tip=Значок по умолчанию для
|
|||||||
core.config.ui.tray.updates_icon=Значок обновления
|
core.config.ui.tray.updates_icon=Значок обновления
|
||||||
core.config.ui.tray.updates_icon.tip=Значок, отображаемый при наличии доступных обновлений
|
core.config.ui.tray.updates_icon.tip=Значок, отображаемый при наличии доступных обновлений
|
||||||
core.config.updates.interval=Интервал обновления
|
core.config.updates.interval=Интервал обновления
|
||||||
core.config.updates.interval.tip=Определяет интервал времени, в течение которого будет происходить проверка обновлений для установленных приложений ( в секундах )
|
core.config.updates.interval.tip=Определяет интервал времени, в течение которого будет происходить проверка обновлений для установленных приложений (в минутах)
|
||||||
core.config.updates.reboot=Reboot after upgrading
|
core.config.updates.reboot=Reboot after upgrading
|
||||||
core.config.updates.reboot.tip=A message asking for a system reboot will be displayed after a successful upgrade
|
core.config.updates.reboot.tip=A message asking for a system reboot will be displayed after a successful upgrade
|
||||||
custom_action.proceed_with=Proceed with {} ?
|
custom_action.proceed_with=Proceed with {} ?
|
||||||
|
|||||||
@@ -243,7 +243,7 @@ core.config.ui.tray.default_icon.tip=Tepside görüntülenen için varsayılan s
|
|||||||
core.config.ui.tray.default_icon=Varsayılan simge
|
core.config.ui.tray.default_icon=Varsayılan simge
|
||||||
core.config.ui.tray.updates_icon.tip=Güncelleme mevcut olduğunda görüntülenen simge
|
core.config.ui.tray.updates_icon.tip=Güncelleme mevcut olduğunda görüntülenen simge
|
||||||
core.config.ui.tray.updates_icon=Simge değiştir
|
core.config.ui.tray.updates_icon=Simge değiştir
|
||||||
core.config.updates.interval.tip=Yüklü uygulamalar için güncelleme denetiminin gerçekleşeceği zaman aralığını tanımlar (SANİYE)
|
core.config.updates.interval.tip=Yüklü uygulamalar için güncelleme denetiminin gerçekleşeceği zaman aralığını tanımlar (dakikalar içinde)
|
||||||
core.config.updates.interval=Güncelleme aralığı
|
core.config.updates.interval=Güncelleme aralığı
|
||||||
core.config.updates.reboot=Reboot after upgrading
|
core.config.updates.reboot=Reboot after upgrading
|
||||||
core.config.updates.reboot.tip=A message asking for a system reboot will be displayed after a successful upgrade
|
core.config.updates.reboot.tip=A message asking for a system reboot will be displayed after a successful upgrade
|
||||||
|
|||||||
Reference in New Issue
Block a user