From 7e2d7ee14b13e42483849082a156d56caa44342e Mon Sep 17 00:00:00 2001 From: Caleb Gardner Date: Mon, 9 Nov 2020 15:30:14 -0600 Subject: [PATCH] Updated README --- README.md | 5 +++-- go.mod | 2 +- go.sum | 1 + 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d5906bc..17e49c3 100644 --- a/README.md +++ b/README.md @@ -19,8 +19,8 @@ common.sh is found in the PortableApps/LinuxPACom folder and is executed before Because apps aren't natively formated in the PortableApps.com format, LinuxPA will look in the root directory for a AppInfo.ini (for basic info such as category and name) and appicon.png. If they aren't found, it looks where the appicon_\*.png and AppInfo.ini is in PortableApps format. You can set what the AppInfo.ini and appicon.png are from LinuxPA. # AppImage Support -[AppImage Website](http://appimage.org) -Right now AppImages are simply supported via the native linux executable support, and you can download AppImages. (Woo) +[AppImage Website](http://appimage.org) +I'm looking into improving AppImage support. As of 2.1.5.0 IF `unsquashfs` is in $PATH then some advanced AppImage support is available and it will automagically get the name and possibly the icon of it. I'm looking into better support, but it might be a while. # USB mount Unfortunately Linux, by default, doesn't support running executables off of FAT formated flash drives, requiring you to mount your drive with special mount arguments or format in a linux friendly format (such as EXT4). I personally use the arguments `exec,noauto,nodev,nosuid,umask=0000` @@ -30,6 +30,7 @@ Photos are found [Here](https://goo.gl/photos/VtBUL6DyZTMidj5n6). The screenshot # TODO (Might be in order) 1. MAKE IT BETTER   +1. Try to `chmod +x` executables if they don't have the permission 1. Manual update check   1. Better AppImage integrations (Specifically updating, getting information from the appimage, and better appimage downloading) 1. Automagic appimage updating (It will of course ask you beforehand) diff --git a/go.mod b/go.mod index 7a97e61..efaa836 100644 --- a/go.mod +++ b/go.mod @@ -3,7 +3,7 @@ module github.com/CalebQ42/LinuxPA go 1.15 require ( - github.com/CalebQ42/GoAppImage v0.2.0 + github.com/CalebQ42/GoAppImage v0.4.0 github.com/gotk3/gotk3 v0.5.0 github.com/mholt/archiver/v3 v3.5.0 ) diff --git a/go.sum b/go.sum index 3905c49..057bff1 100644 --- a/go.sum +++ b/go.sum @@ -1,4 +1,5 @@ github.com/CalebQ42/GoAppImage v0.2.0/go.mod h1:3SZVVeXeNJx1UobO0Cb4cBnx02ahyx52wBzo1VEPNOA= +github.com/CalebQ42/GoAppImage v0.4.0/go.mod h1:qHudJKAn/dlkNWNnH4h1YKXp29EZ7Bppsn7sNP2HuvU= github.com/adrg/xdg v0.2.2 h1:A7ZHKRz5KGOLJX/bg7IPzStryhvCzAE1wX+KWawPiAo= github.com/adrg/xdg v0.2.2/go.mod h1:7I2hH/IT30IsupOpKZ5ue7/qNi3CoKzD6tL3HwpaRMQ= github.com/alcortesm/tgz v0.0.0-20161220082320-9c5fe88206d7/go.mod h1:6zEj6s6u/ghQa61ZWa/C2Aw3RkjiTBOix7dkqa1VLIs=