[appimage] suggestions priority changed

This commit is contained in:
Vinicius Moreira
2019-10-18 10:38:24 -03:00
parent 2b0ff71834
commit db075cb3c0
2 changed files with 6 additions and 6 deletions

View File

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

View File

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