The Windows and Mac installers will make PhotoStructure available globally for all users (e.g. installed in C:\Program Files where all users can access it)
I believe the Ubuntu AppImage needs to be installed per-user. Can you confirm?
The Windows and Mac installers will make PhotoStructure available globally for all users (e.g. installed in C:\Program Files where all users can access it)
I believe the Ubuntu AppImage needs to be installed per-user. Can you confirm?
Howdy!
If you put the AppImage into a shared system directory, like /usr/local/bin or /opt, that should work.
Update: due to the way AppImage updates are handled, each user would need to be able to write to that directory, so this isnโt a good solution.
Ideally, itโd be packaged and a snap or .deb, and installed as a normal application, but the last time I tried those package types, there were kinks to iron out (snap had launch issues, and the .deb needed me to publish an apt repository directory for updates).
Aptly handles this pretty well. This is what I used for the Yarn Debian repository
The source for the Yarn repo is here: GitHub - yarnpkg/releases: Linux package repository (Debian/Ubuntu/CentOS) for Yarn releases
Those update scripts look straightforward
thanks!
In Yarnโs case, we wanted to host the repo on GitHub Pages (I canโt really remember why) so there were a few hacks to handle committing the apt repo to Git. If youโre fine hosting it on a regular server, you donโt need to bother with a lot of the weird things in the add-deb.sh script and just doing aptly repo add and aptly publish update should suffice. Just need to expose Aptlyโs public directory via your webserver somewhere, or I think it also has the ability to push the repo to S3.