diff --git a/CHANGELOG.md b/CHANGELOG.md index 245bc869..3a35452a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -45,6 +45,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - displaying wrong symbols among numbers in install/uninstall/upgrade outputs for systems without english encoding installed - removing unused packages on any type of transaction (this is the default behaviour for aptitude) +- Flatpak + - some updates not being displayed when there are new required runtimes for installed Flatpaks + - UI - not displaying the right unit symbol for byte based sizes (kB, MB, TB, ...) [#250](https://github.com/vinifmor/bauh/issues/250) - some components do not properly adjust the text size [#253](https://github.com/vinifmor/bauh/issues/253) diff --git a/bauh/gems/flatpak/flatpak.py b/bauh/gems/flatpak/flatpak.py index c5bd4aab..1314c9ca 100755 --- a/bauh/gems/flatpak/flatpak.py +++ b/bauh/gems/flatpak/flatpak.py @@ -207,7 +207,7 @@ def read_updates(version: Version, installation: str) -> Dict[str, set]: except: traceback.print_exc() else: - updates = new_subprocess(('flatpak', 'update', f'--{installation}')).stdout + updates = new_subprocess(('flatpak', 'update', f'--{installation}', '--no-deps')).stdout reg = r'[0-9]+\.\s+.+'