mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-08 22:24:14 +02:00
[gems.appimage] fix: regression on the database backend preventing long time installed AppImages to receive updates
This commit is contained in:
@@ -4,6 +4,11 @@ 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/).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||||
|
|
||||||
|
## [NEXT]
|
||||||
|
### Fixes
|
||||||
|
- AppImage
|
||||||
|
- regression on the database backend preventing long time installed AppImages to receive updates
|
||||||
|
|
||||||
## [0.10.6] 2023-12-23
|
## [0.10.6] 2023-12-23
|
||||||
### Features
|
### Features
|
||||||
- new **verified** filter for the management table
|
- new **verified** filter for the management table
|
||||||
|
|||||||
@@ -54,7 +54,9 @@ class AppImage(SoftwarePackage):
|
|||||||
icon_url=url_icon, license=license, description=description,
|
icon_url=url_icon, license=license, description=description,
|
||||||
installed=installed)
|
installed=installed)
|
||||||
self.source = source
|
self.source = source
|
||||||
self.repository = repository if repository else (github if github else repository)
|
|
||||||
|
github_url = f"https://github.com/{github}" if github and not github.startswith("http://") else None
|
||||||
|
self.repository = repository if repository else (github_url if github_url else repository)
|
||||||
self.categories = (categories.split(',') if isinstance(categories, str) else categories) if categories else None
|
self.categories = (categories.split(',') if isinstance(categories, str) else categories) if categories else None
|
||||||
self.url_download = url_download
|
self.url_download = url_download
|
||||||
self.icon_path = icon_path
|
self.icon_path = icon_path
|
||||||
|
|||||||
Reference in New Issue
Block a user