[flatpak] fix: some updates not being displayed when there are new required runtimes for installed Flatpaks

This commit is contained in:
Vinicius Moreira
2022-04-12 11:02:06 -03:00
parent d0452e0d25
commit d9bf9a5057
2 changed files with 4 additions and 1 deletions

View File

@@ -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)

View File

@@ -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+.+'