2014-02-22 02:09:23 +01:00
|
|
|
/*
|
2020-08-13 21:08:54 +02:00
|
|
|
SPDX-FileCopyrightText: 2014 Sebastian Kügler <sebas@kde.org>
|
|
|
|
|
|
|
|
SPDX-License-Identifier: LGPL-2.0-or-later
|
|
|
|
*/
|
2014-02-22 02:09:23 +01:00
|
|
|
|
|
|
|
import QtQuick 2.0
|
|
|
|
import QtQuick.Layouts 1.1
|
|
|
|
|
2014-03-18 13:47:17 +01:00
|
|
|
import org.kde.plasma.plasmoid 2.0
|
2014-02-22 02:09:23 +01:00
|
|
|
import org.kde.plasma.core 2.0 as PlasmaCore
|
|
|
|
import org.kde.plasma.extras 2.0 as PlasmaExtras
|
|
|
|
|
|
|
|
Item {
|
|
|
|
Layout.minimumWidth: 200
|
|
|
|
Layout.minimumHeight: 300
|
|
|
|
|
|
|
|
PlasmaCore.IconItem {
|
|
|
|
source: "kbugbuster"
|
|
|
|
width: units.iconSizes.large
|
|
|
|
height: width
|
|
|
|
anchors {
|
|
|
|
right: col.right
|
|
|
|
top: col.top
|
|
|
|
}
|
|
|
|
// opacity: 0.3
|
|
|
|
}
|
|
|
|
|
|
|
|
Column {
|
|
|
|
id: col
|
|
|
|
|
|
|
|
spacing: units.largeSpacing /2
|
|
|
|
anchors {
|
|
|
|
fill: parent
|
|
|
|
margins: units.largeSpacing
|
|
|
|
}
|
|
|
|
|
2020-02-12 16:32:53 +01:00
|
|
|
PlasmaExtras.Heading {
|
|
|
|
level: 1
|
2014-02-22 02:09:23 +01:00
|
|
|
text: i18n("Reporting Bugs")
|
|
|
|
}
|
|
|
|
PlasmaExtras.Heading {
|
|
|
|
level: 3
|
|
|
|
text: i18n("So you found something wrong in Plasma...")
|
|
|
|
}
|
|
|
|
PlasmaExtras.Paragraph {
|
|
|
|
text: i18n("You are running a development version of Plasma. This software is not fit for production use. We do, however encourage testing and reporting the results. A few easy steps to report a bug: <br />\
|
|
|
|
<ul>\
|
|
|
|
<li>Check <a href=\"\">here if the bug already exists</li>\
|
|
|
|
<li>Report it using the form <a href=\"\">here</li>\
|
|
|
|
<li>Be ready to provide us feedback, so we can debug the problem</li>\
|
|
|
|
</ul>\
|
|
|
|
<br />If you would like to participate in development, or have a question, you can ask them on the plasma-devel@kde.org mailing list.\
|
|
|
|
")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|