Makes Linux applications self-contained by copying in the libraries and plugins that the application uses, and optionally generates an AppImage. Can be used for Qt and other applications
Other
2.22k
stars
414
forks
source link
How to set the output file name for AppImage ? #528
The filename gets generated based on the Name= key in the desktop file. You can edit that key to change the name of the application. Please do not try to change it in other ways. The x86_64 is required.
I want to change the output file name for both AppImage and zsync. How to?
I try to use
mv output-x86_64.AppImage target.AppImage && mv output-x86_64.zsync target.zsync
, but it cannot change theFilename
entity in zsync.And I don't want to add
x86_64
in filename, how to ?Thanks.