[appimage] fix: not displaying the filter for any kind of file (*) when updating imported AppImages

This commit is contained in:
Vinicius Moreira
2021-11-03 14:36:49 -03:00
parent 4af4e3b26c
commit c0ce28e1d6
2 changed files with 7 additions and 1 deletions

View File

@@ -4,6 +4,12 @@ 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.9.20]
### Fixes
- AppImage
- not displaying the filter for any kind of file (*) when updating imported AppImages [#193](https://github.com/vinifmor/bauh/issues/193)
## [0.9.19] 2021-08-23
### Improvements
- AppImage

View File

@@ -152,7 +152,7 @@ class AppImageManager(SoftwareManager):
def update_file(self, pkg: AppImage, root_password: str, watcher: ProcessWatcher):
file_chooser = FileChooserComponent(label=self.i18n['file'].capitalize(),
allowed_extensions={'AppImage'},
allowed_extensions={'AppImage', '*'},
search_path=get_default_manual_installation_file_dir())
input_version = TextInputComponent(label=self.i18n['version'].capitalize())
file_chooser.observers.append(ManualInstallationFileObserver(None, input_version))