From a7f8e1cb08d10de9792add7d83e4ed8ce659a9a0 Mon Sep 17 00:00:00 2001 From: Vinicius Moreira Date: Tue, 11 Aug 2020 15:45:09 -0300 Subject: [PATCH] [appimage] improvement -> changing 'imported' parentheses style --- CHANGELOG.md | 4 ++++ bauh/gems/appimage/model.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3f1eb744..05b2c187 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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

@@ -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: diff --git a/bauh/gems/appimage/model.py b/bauh/gems/appimage/model.py index c22bc3a5..ec9bc559 100644 --- a/bauh/gems/appimage/model.py +++ b/bauh/gems/appimage/model.py @@ -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