aboutsummaryrefslogtreecommitdiff
path: root/src/qml/pages/AboutPage.qml
blob: 709a0572aec3997937a7eb13875a479cecaaed92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import QtQuick 2.0
import Sailfish.Silica 1.0
import "helpers.js" as H

Page {
    id: page

    SilicaFlickable {
        anchors.fill: parent

        Column {
            width: parent.width
            spacing: Theme.paddingLarge

            PageHeader {
                title: "About"
            }

            TextArea {
                readOnly: true
                width: parent.width
                horizontalAlignment: TextEdit.AlignHCenter
                text: "Unit Master\nCopyright 2013 Oskari Timperi\n\nThe
application icon is derived from the Meanicons Icon Set\n(http://www.meanicons.com/).\n\n
You can report bugs and feature requests on github. If you feel like it, fork it!"
            }

            Button {
                anchors.horizontalCenter: parent.horizontalCenter
                text: "github.com"
                onClicked: {
                    Qt.openUrlExternally("http://github.com/oswjk/unitmaster")
                }
            }
        }

    }
}