added "feedback" and "follow us" buttons in menu

This commit is contained in:
Dorian Zedler 2019-03-14 09:03:00 +01:00
parent 321a8ea1f1
commit 717c8f98d3
4 changed files with 28 additions and 2 deletions

View File

@ -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

View File

@ -1,5 +1,5 @@
<?xml version="1.0"?>
<manifest package="com.itsblue.flgvertretungtest" xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="1.0.1" android:versionCode="15" android:installLocation="auto">
<manifest package="com.itsblue.flgvertretung" xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="1.0.2" android:versionCode="16" android:installLocation="auto">
<application android:hardwareAccelerated="true" android:name="org.qtproject.qt5.android.bindings.QtApplication" android:label="fannyapp" android:icon="@drawable/icon">
<activity android:configChanges="orientation|uiMode|screenLayout|screenSize|smallestScreenSize|layoutDirection|locale|fontScale|keyboard|keyboardHidden|navigation" android:name="com.itsblue.flgvertretung.MainActivity" android:label="fannyapp" android:screenOrientation="unspecified" android:launchMode="singleTop">

View File

@ -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")
}
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB