mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-07 02:24:16 +02:00
Merge branch 'staging' into ng
# Conflicts: # CHANGELOG.md # bauh/__init__.py
This commit is contained in:
@@ -25,8 +25,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|||||||
### Fixes
|
### Fixes
|
||||||
- Snap:
|
- Snap:
|
||||||
- retrieving installed applications information for Ubuntu based distros
|
- retrieving installed applications information for Ubuntu based distros
|
||||||
- Flatpak:
|
|
||||||
- update check for version 1.5.X
|
|
||||||
|
|
||||||
### AppImage support
|
### AppImage support
|
||||||
- Search, install, uninstall, downgrade, launch and retrieve the applications history
|
- Search, install, uninstall, downgrade, launch and retrieve the applications history
|
||||||
@@ -34,6 +32,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|||||||
- Applications with no releases published to GitHub are not available
|
- Applications with no releases published to GitHub are not available
|
||||||
- Adds desktop entries ( menu shortcuts ) for the installed applications ( **~/.local/share/applications **)
|
- Adds desktop entries ( menu shortcuts ) for the installed applications ( **~/.local/share/applications **)
|
||||||
|
|
||||||
|
## [0.6.4] 2019-10-13
|
||||||
|
### Fixes
|
||||||
|
- Flatpak update-checking for version 1.5.X
|
||||||
|
|
||||||
## [0.6.3] 2019-10-11
|
## [0.6.3] 2019-10-11
|
||||||
### Fixes
|
### Fixes
|
||||||
- AUR update check for some scenarios
|
- AUR update check for some scenarios
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ class FlatpakAsyncDataLoader(Thread):
|
|||||||
try:
|
try:
|
||||||
res = self.http_client.get('{}/apps/{}'.format(FLATHUB_API_URL, self.app.id))
|
res = self.http_client.get('{}/apps/{}'.format(FLATHUB_API_URL, self.app.id))
|
||||||
|
|
||||||
if res.status_code == 200 and res.text:
|
if res and res.text:
|
||||||
data = res.json()
|
data = res.json()
|
||||||
|
|
||||||
if not self.app.version:
|
if not self.app.version:
|
||||||
|
|||||||
Reference in New Issue
Block a user