mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-07 01:14:15 +02:00
[appimage] improvement: not displaying 'imported' besides the imported application name on the table (only for the name tip)
This commit is contained in:
@@ -6,6 +6,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|||||||
|
|
||||||
## [0.9.20]
|
## [0.9.20]
|
||||||
### Improvements
|
### Improvements
|
||||||
|
- AppImage:
|
||||||
|
- not displaying "imported" besides the imported application name on the table (only for the name tip)
|
||||||
|
|
||||||
- UI:
|
- UI:
|
||||||
- always displaying the "any file filter" (*) as the last option for file chooser components [#193](https://github.com/vinifmor/bauh/issues/193)
|
- always displaying the "any file filter" (*) as the last option for file chooser components [#193](https://github.com/vinifmor/bauh/issues/193)
|
||||||
|
|
||||||
|
|||||||
@@ -102,7 +102,7 @@ class AppImage(SoftwarePackage):
|
|||||||
def has_screenshots(self):
|
def has_screenshots(self):
|
||||||
return not self.installed and self.url_screenshot
|
return not self.installed and self.url_screenshot
|
||||||
|
|
||||||
def get_display_name(self) -> str:
|
def get_name_tooltip(self) -> str:
|
||||||
if self.name and self.imported:
|
if self.name and self.imported:
|
||||||
return '{} ({})'.format(self.name, self.i18n['imported'])
|
return '{} ({})'.format(self.name, self.i18n['imported'])
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user