mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-08 00:24:15 +02:00
### Features
- Applications search
- Now when you right-click a selected application you can:
- retrieve its information
- retrieve its commit history
- downgrade
- install and uninstall it
- "About" window available when right-clicking the tray icon.
### Improvements
- Performance and memory usage
- Adding tooltips to toolbar buttons
- "Update ?" column renamed to "Upgrade ?"
- Management panel title renamed
- Showing runtime apps when no app is available
- Allowing to specify a custom app translation with the environment variable **FPAKMAN_LOCALE**
- Adding expiration time for cached app data. Default to 1 hour. The environment variable **FPAKMAN_CACHE_EXPIRATION** can change this value.
- Now the application accepts arguments related to environment variables as well. Check 'README.md'.
- Minor GUI improvements
- Notifying only new updates
- New icon
- Progress bar
33 lines
1.0 KiB
Python
33 lines
1.0 KiB
Python
from PyQt5.QtGui import QIcon
|
|
from PyQt5.QtWidgets import QMessageBox
|
|
|
|
from fpakman.core import resource
|
|
|
|
|
|
def show_error(title: str, body: str, icon: QIcon = QIcon(resource.get_path('img/logo.svg'))):
|
|
error_msg = QMessageBox()
|
|
error_msg.setIcon(QMessageBox.Critical)
|
|
error_msg.setWindowTitle(title)
|
|
error_msg.setText(body)
|
|
|
|
if icon:
|
|
error_msg.setWindowIcon(icon)
|
|
|
|
error_msg.exec_()
|
|
|
|
|
|
def ask_confirmation(title: str, body: str, locale_keys: dict, icon: QIcon = QIcon(resource.get_path('img/logo.svg'))):
|
|
dialog_confirmation = QMessageBox()
|
|
dialog_confirmation.setIcon(QMessageBox.Question)
|
|
dialog_confirmation.setWindowTitle(title)
|
|
dialog_confirmation.setText(body)
|
|
bt_yes = dialog_confirmation.addButton(locale_keys['popup.button.yes'], QMessageBox.YesRole)
|
|
dialog_confirmation.addButton(locale_keys['popup.button.no'], QMessageBox.NoRole)
|
|
|
|
if icon:
|
|
dialog_confirmation.setWindowIcon(icon)
|
|
|
|
dialog_confirmation.exec_()
|
|
|
|
return dialog_confirmation.clickedButton() == bt_yes
|