mirror of
https://gitgud.io/wackyideas/aerothemeplasma.git
synced 2024-08-15 00:43:43 +00:00
55 lines
1.7 KiB
QML
Executable file
55 lines
1.7 KiB
QML
Executable file
/*
|
|
* Copyright (C) 2019 by intika <intika@librefox.org>
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License as
|
|
* published by the Free Software Foundation;
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
*/
|
|
import QtQuick 2.5
|
|
import QtQuick.Layouts 1.1
|
|
import QtQuick.Controls 1.4
|
|
|
|
Item {
|
|
id: configPageUpdater
|
|
|
|
property alias cfg_checkUpdateStartup: checkUpdateStartupBox.checked
|
|
|
|
ColumnLayout {
|
|
GroupBox {
|
|
flat: true
|
|
ColumnLayout {
|
|
Label {
|
|
text: i18n("\nUpdater")
|
|
font.weight: Font.Bold
|
|
}
|
|
Label {
|
|
text: i18n("Plasmoid: Digital Clock Lite\n")
|
|
}
|
|
Label {
|
|
text: i18n("Version: 5.5")
|
|
}
|
|
Label {
|
|
text: i18n("Author: Intika")
|
|
}
|
|
TextField {
|
|
Layout.minimumWidth: 450
|
|
text: 'https://github.com/Intika-Linux-Plasmoid/plasmoid-digital-clock-lite'
|
|
}
|
|
CheckBox {
|
|
id: checkUpdateStartupBox
|
|
text: i18n("Notify for update on startup (checked once on github, 5 min after startup)")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|