harbour-batterybuddy/qml/pages/AboutPage.qml

99 lines
3.2 KiB
QML
Raw Normal View History

/**
* Battery Buddy, a Sailfish application to prolong battery lifetime
*
* Copyright (C) 2019 Matti Viljanen
*
* Battery Buddy 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, either version 3 of the
* License, or (at your option) any later version.
*
* Battery Buddy 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 CarBudget. If not, see <http://www.gnu.org/licenses/>.
*
* Author: Matti Viljanen
*/
2019-01-05 21:16:04 +03:00
import QtQuick 2.0
import Sailfish.Silica 1.0
Page {
id: aboutPage
anchors.fill: parent
PageHeader {
id: header
title: qsTr("Battery Buddy") +" v1.1"
2019-01-05 21:16:04 +03:00
}
Column {
anchors.top: header.bottom
width: parent.width
spacing: Theme.paddingMedium
Label {
x: Theme.paddingLarge
text: qsTr("Author")
color: Theme.highlightColor
font.pixelSize: Theme.fontSizeLarge
}
Label {
x: Theme.paddingLarge*2
width: parent.width - x*2;
wrapMode: Text.Wrap
text: "Matti Viljanen"
color: Theme.primaryColor
font.pixelSize: Theme.fontSizeMedium
}
Label {
x: Theme.paddingLarge
text: qsTr("License")
color: Theme.highlightColor
font.pixelSize: Theme.fontSizeLarge
}
Label {
x: Theme.paddingLarge*2
width: parent.width - x*2;
wrapMode: Text.Wrap
text: "GNU General Public Licence 3.0"
color: Theme.primaryColor
font.pixelSize: Theme.fontSizeMedium
}
Button {
anchors.horizontalCenter: parent.horizontalCenter
text: qsTr("Code and feedback")
2019-01-06 17:44:19 +03:00
onClicked: Qt.openUrlExternally("https://www.github.com/direc85/harbour-batterybuddy")
2019-01-05 21:16:04 +03:00
}
2019-01-06 00:41:59 +03:00
/*
2019-01-05 21:16:04 +03:00
Label {
x: Theme.paddingLarge
text: qsTr("Sounds")
color: Theme.highlightColor
font.pixelSize: Theme.fontSizeLarge
}
Label {
x: Theme.paddingLarge*2
width: parent.width - x*2;
wrapMode: Text.Wrap
text: "Sounds were obtained from Notification Sounds and are licensed under Creative Commons Attribution license."
color: Theme.primaryColor
font.pixelSize: Theme.fontSizeMedium
}
Button {
anchors.horizontalCenter: parent.horizontalCenter
text: qsTr("Upper limit")
onClicked: Qt.openUrlExternally("https://notificationsounds.com/notification-sounds/unconvinced-569")
}
Button {
anchors.horizontalCenter: parent.horizontalCenter
text: qsTr("Lower limit")
onClicked: Qt.openUrlExternally("https://notificationsounds.com/notification-sounds/unsure-566")
}
2019-01-06 00:41:59 +03:00
*/
2019-01-05 21:16:04 +03:00
}
}