From 913f2b6c09d17c646ee8a8b30762fb368a5262aa Mon Sep 17 00:00:00 2001 From: Akira Ohgaki <akiraohgaki@gmail.com> Date: Thu, 20 Oct 2016 06:26:52 +0900 Subject: [PATCH] Install-type appimages --- src/configs/destinations.json | 1 + src/configs/destinations_alias.json | 1 - src/handlers/xdgurl.cpp | 6 +++++- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/configs/destinations.json b/src/configs/destinations.json index 8fed235..462fbd6 100644 --- a/src/configs/destinations.json +++ b/src/configs/destinations.json @@ -1,5 +1,6 @@ { "bin": "$HOME/bin", + "appimages": "$HOME/.appimages", "downloads": "$HOME/Downloads", "documents": "$HOME/Documents", "pictures": "$HOME/Pictures", diff --git a/src/configs/destinations_alias.json b/src/configs/destinations_alias.json index c34d6db..438fb4d 100644 --- a/src/configs/destinations_alias.json +++ b/src/configs/destinations_alias.json @@ -1,5 +1,4 @@ { - "appimage": "bin", "gnome_shell_themes": "themes", "cinnamon_themes": "themes", "gtk2_themes": "themes", diff --git a/src/handlers/xdgurl.cpp b/src/handlers/xdgurl.cpp index c10a3fb..a555365 100644 --- a/src/handlers/xdgurl.cpp +++ b/src/handlers/xdgurl.cpp @@ -169,10 +169,14 @@ void XdgUrl::_installDownloadedFile(QNetworkReply *reply) Utility::File::makeDir(destination); Utility::File::remove(path); // Remove previous downloaded file - if ((type == "bin" || type == "appimage") + if (type == "bin" && Utility::Package::installProgram(temporaryFile.fileName(), path)) { result["message"] = QString("The program has been installed into " + destination); } + else if (type == "appimages" + && Utility::Package::installProgram(temporaryFile.fileName(), path)) { + result["message"] = QString("The Appimage has been installed into " + destination); + } else if ((type == "plasma_plasmoids" || type == "plasma4_plasmoids" || type == "plasma5_plasmoids") && Utility::Package::installPlasmapkg(temporaryFile.fileName(), "plasmoid")) { result["message"] = QString("The plasmoid has been installed"); -- GitLab