small AppStream and AppImage fixes

This commit is contained in:
ohfp 2020-03-31 20:30:46 +02:00
parent 28b4678a6f
commit a960c6488a
3 changed files with 30 additions and 5 deletions

View file

@ -7,17 +7,38 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
This project follows the official Firefox releases, but also uses This project follows the official Firefox releases, but also uses
[Arch Linux Package Versioning](https://wiki.archlinux.org/index.php/Arch_package_guidelines#Package_versioning) to mark individual releases in between versions. [Arch Linux Package Versioning](https://wiki.archlinux.org/index.php/Arch_package_guidelines#Package_versioning) to mark individual releases in between versions.
## [Unreleased] ## [74.0-4] - 2020-03-31
### Added
- AppImage and Flatpak improvements (metadata, conventions)
- (Mostly) we working Flatpak release
- **Untested**: AppImage and Flatpak releases for `aarch64` are now also built on Ubuntu 16.04
### Known Issues
- AppImage is working properly (and probably not a completely valid AppImage): It creates a new profile in `~/.librewolf` on each launch.
- AppImage and Flatpak releases cannot be built as PGO/profiled builds at the moment
- AppStream metadata is not completely valid (missing screenshots)
- Build scripts are not tested outside of a dockerized environment
## [74.0-3] - 2020-03-31
### Added
- WebRTC enabled for `aarch64` builds
### Fixed ### Fixed
- Installation of uBlock - Installation of uBlock
- Removal and addition of search engines via `policies.json` - Removal and addition of search engines via `policies.json`
- Building the intermediary tarball on Ubuntu 16.04 (Xenial) to ensure AppImage and Flatpak compatibility
### Known Issues ### Known Issues
- Appimage and Flatpak settings loading still needs to be tested - Appimage and Flatpak settings loading still needs to be tested
- Appimage and Flatpak still don't work on older distributions - Appimage and Flatpak still don't work on older distributions
- LibreWolf built on Ubuntu 16.04 cannot be a profiled/PGO build at the time.
## [74.0-2] - 2020-03-10 ## [74.0-2] - 2020-03-10

View file

@ -47,7 +47,7 @@ wget $_APPIMAGETOOL_DOWNLOAD_URL -O $_APPIMAGETOOL_FILE;
chmod +x $_APPIMAGETOOL_FILE; chmod +x $_APPIMAGETOOL_FILE;
# add appstream metadata # add appstream metadata
install -Dvm644 "$_BINARY_TARBALL_EXTRACTED_FOLDER/io.gitlab.LibreWolf.appdata.xml" "$_BINARY_TARBALL_EXTRACTED_FOLDER/share/metainfo/io.gitlab.LibreWolf.appdata.xml" install -Dvm644 "$_BINARY_TARBALL_EXTRACTED_FOLDER/io.gitlab.LibreWolf.appdata.xml" "$_BINARY_TARBALL_EXTRACTED_FOLDER/usr/share/metainfo/io.gitlab.LibreWolf.appdata.xml"
# add libdbus-glib-1.so.2, just in case # add libdbus-glib-1.so.2, just in case
install -Dvm644 "/usr/lib/${CARCH}-linux-gnu/libdbus-glib-1.so.2" "$_BINARY_TARBALL_EXTRACTED_FOLDER/usr/lib/libdbus-glib-1.so."2 install -Dvm644 "/usr/lib/${CARCH}-linux-gnu/libdbus-glib-1.so.2" "$_BINARY_TARBALL_EXTRACTED_FOLDER/usr/lib/libdbus-glib-1.so."2

View file

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<application> <component type="desktop-application">
<id type="desktop">io.gitlab.LibreWolf</id> <id>io.gitlab.LibreWolf</id>
<launchable type="desktop-id">io.gitlab.LibreWolf</launchable> <launchable type="desktop-id">io.gitlab.LibreWolf</launchable>
<name>LibreWolf</name> <name>LibreWolf</name>
<summary>LibreWolf Web Browser</summary> <summary>LibreWolf Web Browser</summary>
@ -35,4 +35,8 @@
</keywords> </keywords>
<url type="homepage">https://librewolf-community.gitlab.io/</url> <url type="homepage">https://librewolf-community.gitlab.io/</url>
<url type="bugtracker">https://gitlab.com/groups/librewolf-community/-/issues/</url> <url type="bugtracker">https://gitlab.com/groups/librewolf-community/-/issues/</url>
</application> <provides>
<id>io.gitlab.LibreWolf</id>
</provides>
<content_rating type="oars-1.1" />
</component>