diff --git a/CHANGELOG.md b/CHANGELOG.md index d1029ad..52d3360 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,10 +4,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). -## unreleased +## [1.0.2] - 2019-03-14 ### Hinzugefügt - Dunkler Modus - ssl (https) Verschlüsselung +- "Support" und "Folge uns" Tasen in den Einstellungen ### Behoben - Fehler, der dafür sorgte, dass fälschlicherweise 'keine Verbindung zum server' angezeigt wurde diff --git a/android-sources/AndroidManifest.xml b/android-sources/AndroidManifest.xml index 47e4724..fb55b7d 100644 --- a/android-sources/AndroidManifest.xml +++ b/android-sources/AndroidManifest.xml @@ -1,5 +1,5 @@ - + diff --git a/qml/Forms/SettingsForm.qml b/qml/Forms/SettingsForm.qml index fc9de02..fa95140 100644 --- a/qml/Forms/SettingsForm.qml +++ b/qml/Forms/SettingsForm.qml @@ -210,5 +210,30 @@ Page { } } + SettingsDelegate { + width: parent.width + + title: "Folge uns" + description: "Sein immer der Erste, der über Neuerungen informiert ist - folge unserem Telegram-Channel" + + showForwardIcon: false + + onClicked: { + Qt.openUrlExternally("https://t.me/FlgQtAg") + } + } + + SettingsDelegate { + width: parent.width + + title: "Feedback / Support" + description: "Wende dich mit deinen Fragen oder Anregungen direkt an uns - über unseren Telegram-Support" + + showForwardIcon: false + + onClicked: { + Qt.openUrlExternally("https://t.me/FlgQtAgSupportbot") + } + } } } diff --git a/shared/graphics/Icon Big square.png b/shared/graphics/Icon Big square.png new file mode 100644 index 0000000..079afc9 Binary files /dev/null and b/shared/graphics/Icon Big square.png differ