mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-08 22:24:14 +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:
|
- Manual file installation:
|
||||||
- default search path set to '~/Downloads'
|
- default search path set to '~/Downloads'
|
||||||
- trying to auto-fill the 'Name' and 'Version' fields
|
- trying to auto-fill the 'Name' and 'Version' fields
|
||||||
|
|
||||||
- Arch
|
- Arch
|
||||||
- upgrade summary: displaying the reason a given package must be installed
|
- upgrade summary: displaying the reason a given package must be installed
|
||||||
<p align="center">
|
<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
|
- upgrading firstly the keyring packages declared in **SyncFirst** (**/etc/pacman.conf**) to avoid pacman downloading issues
|
||||||
- only removing packages after downloading the required ones
|
- 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'.
|
- "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
|
- 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.
|
- 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
|
### Fixes
|
||||||
- AppImage
|
- AppImage
|
||||||
- manual file installation:
|
- manual file installation:
|
||||||
|
|||||||
@@ -100,7 +100,7 @@ class AppImage(SoftwarePackage):
|
|||||||
|
|
||||||
def get_display_name(self) -> str:
|
def get_display_name(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'])
|
||||||
|
|
||||||
return self.name
|
return self.name
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user