diff --git a/src/configs/destinations.json b/src/configs/destinations.json index 462fbd690b8a23b05215b5ef46a2636697966c6f..8fed235e634edced33dcbf8b9741506718ef41ca 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 16b389ca068e76bcf1263a97d664b310b2546cc3..444b9a353cf0c4aed2634b1507ad98132d4a06ba 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");