mirror of
https://github.com/Diolinux/PhotoGIMP.git
synced 2026-04-05 19:51:58 +02:00
Fix Flatpak launcher command to avoid breakage on new GIMP versions #12
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @cn3m0 on 3/24/2026
Summary
This updates the Flatpak launcher in
.local/share/applications/org.gimp.GIMP.desktopfrom:--command=gimp-3.0to:
--command=gimpWhy
Using a version-pinned command (
gimp-3.0) breaks when Flatpak GIMP updates its exported binary name (for example, GIMP 3.2). Users then get:bwrap: execvp gimp-3.0: No such file or directory--command=gimpis version-agnostic and continues to work across minor updates.Repro / Validation
org.gimp.GIMP3.2.0(Flathub)gimp-3.0.flatpak run --command=gimp org.gimp.GIMP --versionGNU Image Manipulation Program version 3.2.0Impact
Related context: #167