[CHANGELOG]

This commit is contained in:
Vinícius Moreira
2020-01-22 18:10:33 -03:00
parent 9478f5b2fd
commit 218d0b6ce9
2 changed files with 8 additions and 1 deletions

View File

@@ -21,7 +21,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- not treating **makedepends** as a list during dependency checking ( **anbox-git** installation was crashing ) - not treating **makedepends** as a list during dependency checking ( **anbox-git** installation was crashing )
- not considering the package name itself as **provided** during dependency checking ( **anbox-git** installation was crashing ) - not considering the package name itself as **provided** during dependency checking ( **anbox-git** installation was crashing )
- not pre-downloading some source files ( e.g: from **anbox-image** ) - not pre-downloading some source files ( e.g: from **anbox-image** )
- not able to install packages based on other packages ( package name != package base ) - not able to install packages based on other packages ( package name != package base ). e.g: anbox-modules-dkms-git ( anbox-git )
- downgrade: pre-downloading sources from the latest version instead of the older - downgrade: pre-downloading sources from the latest version instead of the older
- Flatpak: - Flatpak:
- displaying "No Internet connection" when an error happens during commits reading within the downgrade process - displaying "No Internet connection" when an error happens during commits reading within the downgrade process

View File

@@ -11,6 +11,7 @@ from bauh.api.abstract.context import ApplicationContext
from bauh.api.abstract.disk import DiskCacheLoader from bauh.api.abstract.disk import DiskCacheLoader
from bauh.api.abstract.handler import ProcessWatcher from bauh.api.abstract.handler import ProcessWatcher
from bauh.api.abstract.model import SoftwarePackage, PackageUpdate, PackageHistory, PackageSuggestion, PackageAction from bauh.api.abstract.model import SoftwarePackage, PackageUpdate, PackageHistory, PackageSuggestion, PackageAction
from bauh.api.abstract.view import FormComponent
class SearchResult: class SearchResult:
@@ -272,3 +273,9 @@ class SoftwareManager(ABC):
Removes all data created by the SoftwareManager instance Removes all data created by the SoftwareManager instance
""" """
pass pass
def get_settings(self) -> FormComponent:
"""
:return: a form abstraction with all available settings
"""
pass