Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
Please login to access the resource
openSUSE:Leap:15.2
discover
0001-Warning-for-FlatHub.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File 0001-Warning-for-FlatHub.patch of Package discover
From 74a4eff529e6b71f6a822841d9112d9b71b44d24 Mon Sep 17 00:00:00 2001 From: Fabian Vogt <fabian@ritter-vogt.de> Date: Sat, 13 Jan 2018 15:16:39 +0100 Subject: [PATCH] Warning for FlatHub --- .../backends/FlatpakBackend/FlatpakSourcesBackend.cpp | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) Index: discover-5.14.1/libdiscover/backends/FlatpakBackend/FlatpakSourcesBackend.cpp =================================================================== --- discover-5.14.1.orig/libdiscover/backends/FlatpakBackend/FlatpakSourcesBackend.cpp +++ discover-5.14.1/libdiscover/backends/FlatpakBackend/FlatpakSourcesBackend.cpp @@ -26,6 +26,8 @@ #include <KSharedConfig> #include <KConfigGroup> #include <QDebug> +#include <QAbstractButton> +#include <QMessageBox> #include <QNetworkAccessManager> #include <QNetworkReply> #include <QAction> @@ -55,7 +57,17 @@ FlatpakSourcesBackend::FlatpakSourcesBac { m_flathubAction->setToolTip(QStringLiteral("flathub")); connect(m_flathubAction, &QAction::triggered, this, [this](){ - addSource(QStringLiteral("https://flathub.org/repo/flathub.flatpakrepo")); + auto *warnBox = new QMessageBox(QMessageBox::Information, i18n("Adding a third-party source"), + i18n("FlatHub is not part of the openSUSE distribution.\n" + "It contains packages of unknown quality which might not be tested to work correctly " + "on openSUSE. Prefer to install software from the official openSUSE repository."), + QMessageBox::Ok | QMessageBox::Abort); + connect(warnBox, &QMessageBox::buttonClicked, this, [this, warnBox](QAbstractButton *button) { + if (warnBox->standardButton(button) == QMessageBox::Ok) + addSource(QStringLiteral("https://flathub.org/repo/flathub.flatpakrepo")); + }); + warnBox->setAttribute(Qt::WA_DeleteOnClose); + warnBox->show(); }); for (auto installation : installations) { if (!listRepositories(installation)) {
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor