From def2ceaea61674db7bd95b01e8322573d972f89b Mon Sep 17 00:00:00 2001 From: secretmango <78762110+secretmango@users.noreply.github.com> Date: Sat, 15 Feb 2025 14:43:01 +0000 Subject: [PATCH 1/2] feat: add QtWebkit tutorial along with a tutorial on how to display the currently used runtime version --- content/resources/installation-guide/index.md | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/content/resources/installation-guide/index.md b/content/resources/installation-guide/index.md index d92f7561b..8d1fcd12c 100644 --- a/content/resources/installation-guide/index.md +++ b/content/resources/installation-guide/index.md @@ -338,16 +338,29 @@ On certain distributions, you may also need to install the packages `xdg-desktop See the [Flathub files here](https://github.com/flathub/org.qgis.qgis) and [report issues here](https://github.com/flathub/org.qgis.qgis/issues). +### Show runtime version +If you need the following additions, you want to know which runtime QGIS is using: + +``` +flatpak info org.qgis.qgis --show-runtime +``` + ### Extension Support If you need to install additional Python modules, because they are needed by a plugin, you can install the module with (here installing the `scipy` module): ``` flatpak run --devel --command=pip3 org.qgis.qgis install scipy --user -# NOTE: it is possible you get an error like: "error: runtime/org.kde.Sdk/x86_64/VERSION not installed" then also do: +# NOTE: you will likely get an error like: "error: runtime/org.kde.Sdk/x86_64/VERSION not installed" then also do: flatpak install runtime/org.kde.Sdk/x86_64/VERSION ``` +### HTML rendering +If you want to use HTML, for example in map layouts, `QtWebkit` is needed. You can install it from the flatpak command line interface + +``` +flatpak install app/io.qt.qtwebkit.BaseApp/x86_64/VERSION +``` ## Fedora From 12fa0811bf69013ec8d71bc2bdaf3f7ab079fdb7 Mon Sep 17 00:00:00 2001 From: secretmango <78762110+secretmango@users.noreply.github.com> Date: Sat, 15 Feb 2025 14:47:18 +0000 Subject: [PATCH 2/2] fix: capitalization --- content/resources/installation-guide/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/resources/installation-guide/index.md b/content/resources/installation-guide/index.md index 8d1fcd12c..348d5289d 100644 --- a/content/resources/installation-guide/index.md +++ b/content/resources/installation-guide/index.md @@ -345,7 +345,7 @@ If you need the following additions, you want to know which runtime QGIS is usin flatpak info org.qgis.qgis --show-runtime ``` -### Extension Support +### Extension support If you need to install additional Python modules, because they are needed by a plugin, you can install the module with (here installing the `scipy` module): ```