Merge branch 'staging' into modules

This commit is contained in:
Vinicius Moreira
2019-08-01 15:50:21 -03:00
2 changed files with 2 additions and 1 deletions

View File

@@ -17,6 +17,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
- showing a warning popup after initialization when no Flatpak remotes are set
- installed / uninstalled icons replaced by install / uninstall button
- minor GUI improvements
### Fixes:
- apps table not showing empty descriptions
- replacing default app icons by null icons

View File

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