mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-07 00:04:15 +02:00
[appimage] fix: not displaying the filter for any kind of file (*) when updating imported AppImages
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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))
|
||||
|
||||
Reference in New Issue
Block a user