Prepare release 0.9
This commit is contained in:
parent
d2df4ddf16
commit
d668c8666e
17 changed files with 136 additions and 2 deletions
|
@ -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).
|
- 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/)
|
- 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).
|
- 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!
|
Thanks to the maintainers of the used components and - again - all contributors to Fernschreiber!
|
||||||
|
|
|
@ -332,6 +332,28 @@ Page {
|
||||||
onLinkActivated: Qt.openUrlExternally("https://github.com/Samsung/rlottie")
|
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: "<a href=\"https://wiki.openstreetmap.org/wiki/Nominatim\">" + qsTr("Open OSM Nominatim Wiki") + "</a>"
|
||||||
|
anchors {
|
||||||
|
horizontalCenter: parent.horizontalCenter
|
||||||
|
}
|
||||||
|
font.pixelSize: Theme.fontSizeSmall
|
||||||
|
linkColor: Theme.highlightColor
|
||||||
|
|
||||||
|
onLinkActivated: Qt.openUrlExternally("https://wiki.openstreetmap.org/wiki/Nominatim")
|
||||||
|
}
|
||||||
|
|
||||||
Label {
|
Label {
|
||||||
id: separatorLabel
|
id: separatorLabel
|
||||||
x: Theme.horizontalPageMargin
|
x: Theme.horizontalPageMargin
|
||||||
|
|
|
@ -12,6 +12,21 @@
|
||||||
# * date Author's Name <author's email> version-release
|
# * date Author's Name <author's email> version-release
|
||||||
# - Summary of changes
|
# - Summary of changes
|
||||||
|
|
||||||
|
* Sun May 30 2021 Sebastian J. Wolf <sebastian@ygriega.de> 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 <sebastian@ygriega.de> 0.8.2
|
* Tue Mar 02 2021 Sebastian J. Wolf <sebastian@ygriega.de> 0.8.2
|
||||||
- Prepare aarch64 build
|
- Prepare aarch64 build
|
||||||
- Updated Polish translation - thanks to atlochowski
|
- Updated Polish translation - thanks to atlochowski
|
||||||
|
|
|
@ -12,7 +12,7 @@ Name: harbour-fernschreiber
|
||||||
|
|
||||||
Summary: Fernschreiber is a Telegram client for Sailfish OS
|
Summary: Fernschreiber is a Telegram client for Sailfish OS
|
||||||
Version: 0.9
|
Version: 0.9
|
||||||
Release: 2
|
Release: 3
|
||||||
Group: Qt/Qt
|
Group: Qt/Qt
|
||||||
License: LICENSE
|
License: LICENSE
|
||||||
URL: http://werkwolf.eu/
|
URL: http://werkwolf.eu/
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
Name: harbour-fernschreiber
|
Name: harbour-fernschreiber
|
||||||
Summary: Fernschreiber is a Telegram client for Sailfish OS
|
Summary: Fernschreiber is a Telegram client for Sailfish OS
|
||||||
Version: 0.9
|
Version: 0.9
|
||||||
Release: 2
|
Release: 3
|
||||||
# The contents of the Group field should be one of the groups listed here:
|
# The contents of the Group field should be one of the groups listed here:
|
||||||
# https://github.com/mer-tools/spectacle/blob/master/data/GROUPS
|
# https://github.com/mer-tools/spectacle/blob/master/data/GROUPS
|
||||||
Group: Qt/Qt
|
Group: Qt/Qt
|
||||||
|
|
|
@ -95,6 +95,14 @@
|
||||||
<source>Active Sessions</source>
|
<source>Active Sessions</source>
|
||||||
<translation>Aktive Sitzungen</translation>
|
<translation>Aktive Sitzungen</translation>
|
||||||
</message>
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>This project uses OpenStreetMap Nominatim for reverse geocoding of location attachments. Thanks for making it available as web service!</source>
|
||||||
|
<translation>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!</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>Open OSM Nominatim Wiki</source>
|
||||||
|
<translation>OSM Nominatim-Wiki öffnen</translation>
|
||||||
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>ActiveSessionsPage</name>
|
<name>ActiveSessionsPage</name>
|
||||||
|
|
|
@ -95,6 +95,14 @@
|
||||||
<source>Active Sessions</source>
|
<source>Active Sessions</source>
|
||||||
<translation>Active Sessions</translation>
|
<translation>Active Sessions</translation>
|
||||||
</message>
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>This project uses OpenStreetMap Nominatim for reverse geocoding of location attachments. Thanks for making it available as web service!</source>
|
||||||
|
<translation>This project uses OpenStreetMap Nominatim for reverse geocoding of location attachments. Thanks for making it available as web service!</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>Open OSM Nominatim Wiki</source>
|
||||||
|
<translation>Open OSM Nominatim Wiki</translation>
|
||||||
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>ActiveSessionsPage</name>
|
<name>ActiveSessionsPage</name>
|
||||||
|
|
|
@ -95,6 +95,14 @@
|
||||||
<source>Active Sessions</source>
|
<source>Active Sessions</source>
|
||||||
<translation>Sesiones activas</translation>
|
<translation>Sesiones activas</translation>
|
||||||
</message>
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>This project uses OpenStreetMap Nominatim for reverse geocoding of location attachments. Thanks for making it available as web service!</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>Open OSM Nominatim Wiki</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>ActiveSessionsPage</name>
|
<name>ActiveSessionsPage</name>
|
||||||
|
|
|
@ -95,6 +95,14 @@
|
||||||
<source>Active Sessions</source>
|
<source>Active Sessions</source>
|
||||||
<translation>Aktiiviset istunnot</translation>
|
<translation>Aktiiviset istunnot</translation>
|
||||||
</message>
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>This project uses OpenStreetMap Nominatim for reverse geocoding of location attachments. Thanks for making it available as web service!</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>Open OSM Nominatim Wiki</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>ActiveSessionsPage</name>
|
<name>ActiveSessionsPage</name>
|
||||||
|
|
|
@ -95,6 +95,14 @@
|
||||||
<source>Active Sessions</source>
|
<source>Active Sessions</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>This project uses OpenStreetMap Nominatim for reverse geocoding of location attachments. Thanks for making it available as web service!</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>Open OSM Nominatim Wiki</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>ActiveSessionsPage</name>
|
<name>ActiveSessionsPage</name>
|
||||||
|
|
|
@ -95,6 +95,14 @@
|
||||||
<source>Active Sessions</source>
|
<source>Active Sessions</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>This project uses OpenStreetMap Nominatim for reverse geocoding of location attachments. Thanks for making it available as web service!</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>Open OSM Nominatim Wiki</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>ActiveSessionsPage</name>
|
<name>ActiveSessionsPage</name>
|
||||||
|
|
|
@ -95,6 +95,14 @@
|
||||||
<source>Active Sessions</source>
|
<source>Active Sessions</source>
|
||||||
<translation>Aktywne sesje</translation>
|
<translation>Aktywne sesje</translation>
|
||||||
</message>
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>This project uses OpenStreetMap Nominatim for reverse geocoding of location attachments. Thanks for making it available as web service!</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>Open OSM Nominatim Wiki</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>ActiveSessionsPage</name>
|
<name>ActiveSessionsPage</name>
|
||||||
|
|
|
@ -95,6 +95,14 @@
|
||||||
<source>Active Sessions</source>
|
<source>Active Sessions</source>
|
||||||
<translation>Активные сеансы</translation>
|
<translation>Активные сеансы</translation>
|
||||||
</message>
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>This project uses OpenStreetMap Nominatim for reverse geocoding of location attachments. Thanks for making it available as web service!</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>Open OSM Nominatim Wiki</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>ActiveSessionsPage</name>
|
<name>ActiveSessionsPage</name>
|
||||||
|
|
|
@ -95,6 +95,14 @@
|
||||||
<source>Active Sessions</source>
|
<source>Active Sessions</source>
|
||||||
<translation>Aktívne relácie</translation>
|
<translation>Aktívne relácie</translation>
|
||||||
</message>
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>This project uses OpenStreetMap Nominatim for reverse geocoding of location attachments. Thanks for making it available as web service!</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>Open OSM Nominatim Wiki</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>ActiveSessionsPage</name>
|
<name>ActiveSessionsPage</name>
|
||||||
|
|
|
@ -95,6 +95,14 @@
|
||||||
<source>Active Sessions</source>
|
<source>Active Sessions</source>
|
||||||
<translation>Aktiva sessioner</translation>
|
<translation>Aktiva sessioner</translation>
|
||||||
</message>
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>This project uses OpenStreetMap Nominatim for reverse geocoding of location attachments. Thanks for making it available as web service!</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>Open OSM Nominatim Wiki</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>ActiveSessionsPage</name>
|
<name>ActiveSessionsPage</name>
|
||||||
|
|
|
@ -95,6 +95,14 @@
|
||||||
<source>Active Sessions</source>
|
<source>Active Sessions</source>
|
||||||
<translation>登录设备情况</translation>
|
<translation>登录设备情况</translation>
|
||||||
</message>
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>This project uses OpenStreetMap Nominatim for reverse geocoding of location attachments. Thanks for making it available as web service!</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>Open OSM Nominatim Wiki</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>ActiveSessionsPage</name>
|
<name>ActiveSessionsPage</name>
|
||||||
|
|
|
@ -95,6 +95,14 @@
|
||||||
<source>Active Sessions</source>
|
<source>Active Sessions</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>This project uses OpenStreetMap Nominatim for reverse geocoding of location attachments. Thanks for making it available as web service!</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>Open OSM Nominatim Wiki</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>ActiveSessionsPage</name>
|
<name>ActiveSessionsPage</name>
|
||||||
|
|
Loading…
Reference in a new issue