Skip to content
Snippets Groups Projects

Show ChangeLog

Merged Martin Straka requested to merge apk-show-changelog into develop
Viewing commit e3031004
Show latest version
1 file
+ 19
14
Preferences
Compare changes
@@ -34,8 +34,7 @@ Popup {
modal: true
property int preferredMinWidth: 280
property string logContent: qsTr("
Added a preferences editor.
property string logContent: qsTr("Added a preferences editor.
Using dedicated redirection URL to access donation page.
@@ -43,8 +42,7 @@ Popup {
Fixed white border around launcher icon in iOS.
On application start-up when INI configuration is missing the application searches for a copy before creating a blank INI file.
")
On application start-up when INI configuration is missing the application searches for a copy before creating a blank INI file.")
/* Public interface. */
function showChangeLog() {
@@ -73,21 +71,28 @@ Popup {
font.bold: true
text: qsTr("What is news?")
}
Flickable {
clip: true
Rectangle {
Layout.preferredWidth: root.preferredMinWidth
implicitHeight: preferredMinWidth
contentHeight: flickContent.implicitHeight
Pane {
id: flickContent
color: "transparent"
border.color: datovkaPalette.line
border.width: 1
Flickable {
anchors.fill: parent
AccessibleText {
id: changeLogText
width: parent.width
wrapMode: Text.WordWrap
anchors.margins: 1
contentHeight: flickContent.implicitHeight
clip: true
Pane {
id: flickContent
anchors.fill: parent
AccessibleText {
id: changeLogText
width: parent.width
wrapMode: Text.WordWrap
}
}
ScrollIndicator.vertical: ScrollIndicator {}
}
ScrollIndicator.vertical: ScrollIndicator {}
}
AccessibleButton {
Layout.alignment: Qt.AlignCenter