improvement: version with a dark green shade

This commit is contained in:
Vinicius Moreira
2019-08-01 15:49:58 -03:00
parent ff98b40506
commit 5d04dddaa7
2 changed files with 2 additions and 1 deletions

View File

@@ -11,6 +11,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- app boot takes an average of 80% less time - app boot takes an average of 80% less time
- showing a warning popup after initialization when no Flatpak remotes are set - showing a warning popup after initialization when no Flatpak remotes are set
- installed / uninstalled icons replaced by install / uninstall button - installed / uninstalled icons replaced by install / uninstall button
- minor GUI improvements
### Fixes: ### Fixes:
- apps table not showing empty descriptions - apps table not showing empty descriptions
- replacing default app icons by null icons - replacing default app icons by null icons

View File

@@ -265,7 +265,7 @@ class AppsTable(QTableWidget):
tooltip = self.window.locale_keys['version.unknown'] tooltip = self.window.locale_keys['version.unknown']
if app_v.model.update: if app_v.model.update:
label_version.setStyleSheet("color: #32CD32") label_version.setStyleSheet("color: #45ab27")
tooltip = self.window.locale_keys['version.installed_outdated'] tooltip = self.window.locale_keys['version.installed_outdated']
if app_v.model.base_data.version and app_v.model.base_data.latest_version and app_v.model.base_data.version < app_v.model.base_data.latest_version: if app_v.model.base_data.version and app_v.model.base_data.latest_version and app_v.model.base_data.version < app_v.model.base_data.latest_version: