For any one that cannot launch drafft on linux ubuntu 24 ++ you need to add an apparmor profile:
sudo touch /etc/apparmor.d/drafft-appimage
in that profile you need to add this (Make sure you use your own location of the appimage or it wont work)
abi <abi/4.0>,
include <tunables/global>
profile drafft-appimage /YOUR_OWN_LOCATION/drafft-1.4.5-linux-x86_64.AppImage flags=(default_allow) {
userns,
include if exists <local/drafft-appimage>
}
then restart apparmor service
sudo systemctl reload apparmor.service
and now it will launch.
you do not need to create new profiles if you move your appaimge. you just need to edit the file and update the location and restart apparmor service.
If you do not do these steps it will NOT launch no matter what you do.. Do NOT disable app armour. or create rules around it. just make the profile so it knows what drafft is.
(This should be done for ANY appimage.)
Your welcome.