From 5b22de127444722a57d7726bf61ad184e2e0e81e Mon Sep 17 00:00:00 2001
From: Akira Ohgaki <akiraohgaki@gmail.com>
Date: Thu, 20 Oct 2016 07:56:41 +0900
Subject: [PATCH] Drop install-type appimages

---
 src/configs/destinations.json | 1 -
 src/handlers/xdgurl.cpp       | 4 ----
 2 files changed, 5 deletions(-)

diff --git a/src/configs/destinations.json b/src/configs/destinations.json
index 462fbd6..8fed235 100644
--- a/src/configs/destinations.json
+++ b/src/configs/destinations.json
@@ -1,6 +1,5 @@
 {
     "bin": "$HOME/bin",
-    "appimages": "$HOME/.appimages",
     "downloads": "$HOME/Downloads",
     "documents": "$HOME/Documents",
     "pictures": "$HOME/Pictures",
diff --git a/src/handlers/xdgurl.cpp b/src/handlers/xdgurl.cpp
index 16b389c..444b9a3 100644
--- a/src/handlers/xdgurl.cpp
+++ b/src/handlers/xdgurl.cpp
@@ -152,10 +152,6 @@ void XdgUrl::_installDownloadedFile(QNetworkReply *reply)
             && 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