aboutsummaryrefslogtreecommitdiff
path: root/binary_tarball
diff options
context:
space:
mode:
authorohfp <1813007-ohfp@users.noreply.gitlab.com>2021-01-01 01:38:44 +0100
committerohfp <1813007-ohfp@users.noreply.gitlab.com>2021-01-01 01:48:34 +0100
commit9c0fcc0de564f832b8a630666094a80a2e43de07 (patch)
tree2b43f83054d35afdad00abfdc9566c66f09aedcd /binary_tarball
parentSet default XDG_DATA_DIRS in AppRun if unset (diff)
downloadlibrewolf-linux-9c0fcc0de564f832b8a630666094a80a2e43de07.tar.gz
librewolf-linux-9c0fcc0de564f832b8a630666094a80a2e43de07.tar.bz2
librewolf-linux-9c0fcc0de564f832b8a630666094a80a2e43de07.zip
Improve the Flatpak build process
.desktop file, icon and appdata are now properly exported by flatpak. "Wayland first" flatpak, falling back to X11 if not on Wayland. Note: this is currently potentially broken on many systems (ie. font rendering is broken). See https://github.com/flatpak/flatpak/issues/2861. Might work when using Wayland + Gnome, does not seem to work on Arch + Sway (couldn't get it working with any workaround for now). Several smaller issues addressed. A few untested issues might remain (Screensharing, WebRTC/Camera access) Addresses (at least partially): #128, #132, #131, #118
Diffstat (limited to 'binary_tarball')
-rw-r--r--binary_tarball/content/io.gitlab.LibreWolf.appdata.xml.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/binary_tarball/content/io.gitlab.LibreWolf.appdata.xml.in b/binary_tarball/content/io.gitlab.LibreWolf.appdata.xml.in
index f47605c..ae240f3 100644
--- a/binary_tarball/content/io.gitlab.LibreWolf.appdata.xml.in
+++ b/binary_tarball/content/io.gitlab.LibreWolf.appdata.xml.in
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<component type="desktop-application">
<id>io.gitlab.LibreWolf</id>
- <launchable type="desktop-id">io.gitlab.LibreWolf</launchable>
+ <launchable type="desktop-id">io.gitlab.LibreWolf.desktop</launchable>
<name>LibreWolf</name>
<summary>LibreWolf Web Browser</summary>
<metadata_license>CC0-1.0</metadata_license>
bgstack15