forked from mivoligo/Zeegaree-Lite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWhatsNew.qml
132 lines (106 loc) · 3.5 KB
/
WhatsNew.qml
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
/****************************************************************************
Copyright 2013-2014 Michał Prędotka
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
****************************************************************************/
import QtQuick 1.1
Rectangle {
color: styl.back_color_primary
width: 300
height: 400
Text {
id: version_text
color: styl.text_color_primary
anchors {
top: parent.top
topMargin: 36
horizontalCenter: parent.horizontalCenter
}
text: qsTr("Zeegaree Lite 1.2")
font {pixelSize: 24; family: "Ubuntu"}
}
DividerSmallHor {
id: divider1
width: parent.width - 24
anchors {
top: version_text.bottom
topMargin: 18
horizontalCenter: parent.horizontalCenter
}
}
Text {
id: info_text
color: styl.text_color_primary
width: parent.width - 24
anchors {
top: divider1.bottom
topMargin: 24
horizontalCenter: parent.horizontalCenter
}
text: qsTr("If it is your first install, let me thank you for downloading the app. I hope you will enjoy it!")
horizontalAlignment: Text.AlignHCenter
font {pixelSize: 14; family: "Ubuntu"}
wrapMode: Text.WrapAtWordBoundaryOrAnywhere
}
DividerSmallHor {
id: divider2
width: parent.width - 24
anchors {
top: info_text.bottom
topMargin: 18
horizontalCenter: parent.horizontalCenter
}
}
Text {
id: new_in_version_text
color: styl.text_color_primary
anchors {
top: divider2.bottom
topMargin: 24
horizontalCenter: parent.horizontalCenter
}
text: qsTr("New in this version:")
font {pixelSize: 18; family: "Ubuntu"}
}
Text {
id: whats_new_text
color: styl.text_color_primary
width: parent.width - 96
anchors {
top: new_in_version_text.bottom
topMargin: 12
horizontalCenter: parent.horizontalCenter
}
text:
"- option to select within couple colour themes for the program's look" + "\n" +
"- redesigned Timer and Stopwatch" + "\n" +
"- keyboard friendly way to set Timer" + "\n" +
"- option to set digital mode" + "\n" +
"- performance improvements" + "\n" +
"- some bugs fixed"
wrapMode: Text.WrapAtWordBoundaryOrAnywhere
font {pixelSize: 14; family: "Ubuntu"}
}
Button {
id: ok_button
width: 200
anchors {
bottom: parent.bottom
bottomMargin: 24
horizontalCenter: parent.horizontalCenter
}
buttoncolor: styl.button_back_color_ok
buttontext: "OK, get me to Zeegaree Lite!"
button_ma.onClicked: {
whats_new.scale = 0
whats_new.visible = false
}
}
}