From db075cb3c0ec4eda59e9ec2690c8c067c3b52a20 Mon Sep 17 00:00:00 2001 From: Vinicius Moreira Date: Fri, 18 Oct 2019 10:38:24 -0300 Subject: [PATCH] [appimage] suggestions priority changed --- CHANGELOG.md | 2 +- bauh/gems/appimage/suggestions.py | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 44730981..25b418f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). -## [0.7.0] +## [0.7.0] 2019-10-18 ### Features - AppImage support ( see below ) - **Screenshots** button and panel diff --git a/bauh/gems/appimage/suggestions.py b/bauh/gems/appimage/suggestions.py index 41df8d75..dc4a4f85 100644 --- a/bauh/gems/appimage/suggestions.py +++ b/bauh/gems/appimage/suggestions.py @@ -1,12 +1,12 @@ from bauh.api.abstract.model import SuggestionPriority ALL = { - 'onlyoffice': SuggestionPriority.HIGH, - 'gamehub': SuggestionPriority.HIGH, - 'rpcs3': SuggestionPriority.HIGH, - 'postman': SuggestionPriority.MEDIUM, + 'onlyoffice': SuggestionPriority.MEDIUM, + 'gamehub': SuggestionPriority.MEDIUM, + 'rpcs3': SuggestionPriority.MEDIUM, 'etcher': SuggestionPriority.MEDIUM, + 'postman': SuggestionPriority.LOW, 'nosqlbooster': SuggestionPriority.LOW, 'emcas': SuggestionPriority.LOW, - 'azpianter': SuggestionPriority.LOW + 'azpainter': SuggestionPriority.LOW } \ No newline at end of file