[appimage] improvement -> changing 'imported' parentheses style

This commit is contained in:
Vinicius Moreira
2020-08-11 15:45:09 -03:00
parent ae721f6eea
commit a7f8e1cb08
2 changed files with 5 additions and 1 deletions

View File

@@ -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:

View File

@@ -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