diff --git a/README.md b/README.md
index 8f430a9..22d6c97 100644
--- a/README.md
+++ b/README.md
@@ -93,5 +93,6 @@ This project uses
- The Telegram Database Library (TDLib) - available on [GitHub.com](https://github.com/tdlib/td). Thanks for making it available under the conditions of the Boost Software License 1.0! Details about the license of TDLib in [its license file](https://github.com/tdlib/td/blob/master/LICENSE_1_0.txt).
- Emoji parsing and artwork by [Twitter Emoji (Twemoji)](http://twitter.github.io/twemoji/), copyright 2018 Twitter, Inc and other contributors, Code licensed under the [MIT License](http://opensource.org/licenses/MIT), Graphics licensed under [CC-BY 4.0](https://creativecommons.org/licenses/by/4.0/)
- Animated sticker parsing and animation by [rlottie](https://github.com/Samsung/rlottie), copyright 2020 Samsung Electronics Co., Ltd. and [other contributors](https://github.com/Samsung/rlottie/blob/master/AUTHORS), Code licensed under the [MIT License](https://github.com/Samsung/rlottie/blob/master/licenses/COPYING.MIT), some rlottie components [licensed under other licenses](https://github.com/Samsung/rlottie/blob/master/COPYING).
+- Reverse geocoding for location attachments by [OpenStreetMap Nominatim](https://wiki.openstreetmap.org/wiki/Nominatim).
Thanks to the maintainers of the used components and - again - all contributors to Fernschreiber!
diff --git a/qml/pages/AboutPage.qml b/qml/pages/AboutPage.qml
index 7f0e6cb..a687a49 100644
--- a/qml/pages/AboutPage.qml
+++ b/qml/pages/AboutPage.qml
@@ -332,6 +332,28 @@ Page {
onLinkActivated: Qt.openUrlExternally("https://github.com/Samsung/rlottie")
}
+ Label {
+ x: Theme.horizontalPageMargin
+ width: parent.width - ( 2 * Theme.horizontalPageMargin )
+ text: qsTr("This project uses OpenStreetMap Nominatim for reverse geocoding of location attachments. Thanks for making it available as web service!")
+ font.pixelSize: Theme.fontSizeExtraSmall
+ wrapMode: Text.Wrap
+ anchors {
+ horizontalCenter: parent.horizontalCenter
+ }
+ }
+
+ Text {
+ text: "" + qsTr("Open OSM Nominatim Wiki") + ""
+ anchors {
+ horizontalCenter: parent.horizontalCenter
+ }
+ font.pixelSize: Theme.fontSizeSmall
+ linkColor: Theme.highlightColor
+
+ onLinkActivated: Qt.openUrlExternally("https://wiki.openstreetmap.org/wiki/Nominatim")
+ }
+
Label {
id: separatorLabel
x: Theme.horizontalPageMargin
diff --git a/rpm/harbour-fernschreiber.changes b/rpm/harbour-fernschreiber.changes
index d13a131..58da1dc 100644
--- a/rpm/harbour-fernschreiber.changes
+++ b/rpm/harbour-fernschreiber.changes
@@ -12,6 +12,21 @@
# * date Author's Name version-release
# - Summary of changes
+* Sun May 30 2021 Sebastian J. Wolf 0.9
+- Enhanced information for location attachments (accuracy, nearest location as plain text using OSM Nominatim)
+- Sticker picker performance optimizations - thanks to jgibbon
+- Updated rlottie library (for animated stickers)
+- Add option to focus text input when entering a chat - thanks to santoshmanikandan
+- Add option to display stickers as emojis
+- Fix: Correct message sent/read indicator after messages were sent, see https://github.com/Wunderfitz/harbour-fernschreiber/issues/407
+- Fix: Disable auto-scroll when app is in background, see https://github.com/Wunderfitz/harbour-fernschreiber/issues/410
+- Fix: Adjust scroll position when keyboard is hidden, see https://github.com/Wunderfitz/harbour-fernschreiber/issues/418
+- Fix: Chat of recently joined contact now shows up properly
+- Fix: Opening Fernschreiber from a notification should no longer result in an error message, see https://github.com/Wunderfitz/harbour-fernschreiber/issues/412
+- Fix: Improve handling for additional options drawer - thanks to monich
+- Fix: Avoid newline in text input when using send by enter - thanks to santoshmanikandan
+
+
* Tue Mar 02 2021 Sebastian J. Wolf 0.8.2
- Prepare aarch64 build
- Updated Polish translation - thanks to atlochowski
diff --git a/rpm/harbour-fernschreiber.spec b/rpm/harbour-fernschreiber.spec
index 8c7b527..ceca5d7 100644
--- a/rpm/harbour-fernschreiber.spec
+++ b/rpm/harbour-fernschreiber.spec
@@ -12,7 +12,7 @@ Name: harbour-fernschreiber
Summary: Fernschreiber is a Telegram client for Sailfish OS
Version: 0.9
-Release: 2
+Release: 3
Group: Qt/Qt
License: LICENSE
URL: http://werkwolf.eu/
diff --git a/rpm/harbour-fernschreiber.yaml b/rpm/harbour-fernschreiber.yaml
index 56624f1..1fc0724 100644
--- a/rpm/harbour-fernschreiber.yaml
+++ b/rpm/harbour-fernschreiber.yaml
@@ -1,7 +1,7 @@
Name: harbour-fernschreiber
Summary: Fernschreiber is a Telegram client for Sailfish OS
Version: 0.9
-Release: 2
+Release: 3
# The contents of the Group field should be one of the groups listed here:
# https://github.com/mer-tools/spectacle/blob/master/data/GROUPS
Group: Qt/Qt
diff --git a/translations/harbour-fernschreiber-de.ts b/translations/harbour-fernschreiber-de.ts
index eeec32d..de14338 100644
--- a/translations/harbour-fernschreiber-de.ts
+++ b/translations/harbour-fernschreiber-de.ts
@@ -95,6 +95,14 @@
Aktive Sitzungen
+
+
+ Dieses Projekt nutzt OpenStreetMap Nominatim für das reverse Geokodieren von Standort-Anhängen. Vielen Dank dafür, dass es als Web-Service zur Verfügung gestellt wird!
+
+
+
+ OSM Nominatim-Wiki öffnen
+
ActiveSessionsPage
diff --git a/translations/harbour-fernschreiber-en.ts b/translations/harbour-fernschreiber-en.ts
index 69be9cb..6ec8ac2 100644
--- a/translations/harbour-fernschreiber-en.ts
+++ b/translations/harbour-fernschreiber-en.ts
@@ -95,6 +95,14 @@
Active Sessions
+
+
+ This project uses OpenStreetMap Nominatim for reverse geocoding of location attachments. Thanks for making it available as web service!
+
+
+
+ Open OSM Nominatim Wiki
+
ActiveSessionsPage
diff --git a/translations/harbour-fernschreiber-es.ts b/translations/harbour-fernschreiber-es.ts
index 1876445..b515a81 100644
--- a/translations/harbour-fernschreiber-es.ts
+++ b/translations/harbour-fernschreiber-es.ts
@@ -95,6 +95,14 @@
Sesiones activas
+
+
+
+
+
+
+
+
ActiveSessionsPage
diff --git a/translations/harbour-fernschreiber-fi.ts b/translations/harbour-fernschreiber-fi.ts
index 917d847..71ba985 100644
--- a/translations/harbour-fernschreiber-fi.ts
+++ b/translations/harbour-fernschreiber-fi.ts
@@ -95,6 +95,14 @@
Aktiiviset istunnot
+
+
+
+
+
+
+
+
ActiveSessionsPage
diff --git a/translations/harbour-fernschreiber-hu.ts b/translations/harbour-fernschreiber-hu.ts
index ed14a78..200c297 100644
--- a/translations/harbour-fernschreiber-hu.ts
+++ b/translations/harbour-fernschreiber-hu.ts
@@ -95,6 +95,14 @@
+
+
+
+
+
+
+
+
ActiveSessionsPage
diff --git a/translations/harbour-fernschreiber-it.ts b/translations/harbour-fernschreiber-it.ts
index 5d20e91..31fc4c7 100644
--- a/translations/harbour-fernschreiber-it.ts
+++ b/translations/harbour-fernschreiber-it.ts
@@ -95,6 +95,14 @@
+
+
+
+
+
+
+
+
ActiveSessionsPage
diff --git a/translations/harbour-fernschreiber-pl.ts b/translations/harbour-fernschreiber-pl.ts
index 48b01d8..4cb65d1 100644
--- a/translations/harbour-fernschreiber-pl.ts
+++ b/translations/harbour-fernschreiber-pl.ts
@@ -95,6 +95,14 @@
Aktywne sesje
+
+
+
+
+
+
+
+
ActiveSessionsPage
diff --git a/translations/harbour-fernschreiber-ru.ts b/translations/harbour-fernschreiber-ru.ts
index 2bc8dc4..148c5fe 100644
--- a/translations/harbour-fernschreiber-ru.ts
+++ b/translations/harbour-fernschreiber-ru.ts
@@ -95,6 +95,14 @@
Активные сеансы
+
+
+
+
+
+
+
+
ActiveSessionsPage
diff --git a/translations/harbour-fernschreiber-sk.ts b/translations/harbour-fernschreiber-sk.ts
index 30c6884..119c79a 100644
--- a/translations/harbour-fernschreiber-sk.ts
+++ b/translations/harbour-fernschreiber-sk.ts
@@ -95,6 +95,14 @@
Aktívne relácie
+
+
+
+
+
+
+
+
ActiveSessionsPage
diff --git a/translations/harbour-fernschreiber-sv.ts b/translations/harbour-fernschreiber-sv.ts
index 1b99ee7..4138a6e 100644
--- a/translations/harbour-fernschreiber-sv.ts
+++ b/translations/harbour-fernschreiber-sv.ts
@@ -95,6 +95,14 @@
Aktiva sessioner
+
+
+
+
+
+
+
+
ActiveSessionsPage
diff --git a/translations/harbour-fernschreiber-zh_CN.ts b/translations/harbour-fernschreiber-zh_CN.ts
index 32d5712..ad2e6e8 100644
--- a/translations/harbour-fernschreiber-zh_CN.ts
+++ b/translations/harbour-fernschreiber-zh_CN.ts
@@ -95,6 +95,14 @@
登录设备情况
+
+
+
+
+
+
+
+
ActiveSessionsPage
diff --git a/translations/harbour-fernschreiber.ts b/translations/harbour-fernschreiber.ts
index 2701efb..7cac97a 100644
--- a/translations/harbour-fernschreiber.ts
+++ b/translations/harbour-fernschreiber.ts
@@ -95,6 +95,14 @@
+
+
+
+
+
+
+
+
ActiveSessionsPage