mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-07 03:34:15 +02:00
[appimage] improvement -> changing 'imported' parentheses style
This commit is contained in:
@@ -10,6 +10,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||
- Manual file installation:
|
||||
- default search path set to '~/Downloads'
|
||||
- trying to auto-fill the 'Name' and 'Version' fields
|
||||
|
||||
- Arch
|
||||
- upgrade summary: displaying the reason a given package must be installed
|
||||
<p align="center">
|
||||
@@ -19,9 +20,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||
- upgrading firstly the keyring packages declared in **SyncFirst** (**/etc/pacman.conf**) to avoid pacman downloading issues
|
||||
- only removing packages after downloading the required ones
|
||||
- "Multi-threaded download (repositories)" is not the default behavior anymore (current pacman download approach is faster). If your settings has this property set as 'Yes', just change it to 'No'.
|
||||
|
||||
- Flatpak
|
||||
- Creating the exports path **~/.local/share/flatpak/exports/share** (if it does not exist) and adding it to install/upgrade/downgrade/remove commands path to prevent warning messages.
|
||||
|
||||
- minor UI improvements
|
||||
|
||||
### Fixes
|
||||
- AppImage
|
||||
- manual file installation:
|
||||
|
||||
@@ -100,7 +100,7 @@ class AppImage(SoftwarePackage):
|
||||
|
||||
def get_display_name(self) -> str:
|
||||
if self.name and self.imported:
|
||||
return '{} ( {} )'.format(self.name, self.i18n['imported'])
|
||||
return '{} ({})'.format(self.name, self.i18n['imported'])
|
||||
|
||||
return self.name
|
||||
|
||||
|
||||
Reference in New Issue
Block a user