[improvement][flatpak] config file created during the initialization

This commit is contained in:
Vinícius Moreira
2020-01-22 12:38:46 -03:00
parent 382a3b1160
commit 6afda31f93
2 changed files with 4 additions and 1 deletions

View File

@@ -5,6 +5,9 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## [0.8.2]
### Improvements
- Flatpak:
- configuration file ( **flatpak.yml** ) will be created during the initialization ( on 0.8.1 it would only be created during the first app installation )
### Fixes
- AUR:
- not treating **makedepends** as a list during dependency checking ( **anbox-git** installation was crashing )

View File

@@ -314,7 +314,7 @@ class FlatpakManager(SoftwareManager):
return action == 'downgrade' and pkg.installation == 'system'
def prepare(self):
pass
Thread(target=read_config, daemon=True).start()
def list_updates(self, internet_available: bool) -> List[PackageUpdate]:
updates = []