diff --git a/qml/pages/AboutPage.qml b/qml/pages/AboutPage.qml index d843d3f..b613c80 100644 --- a/qml/pages/AboutPage.qml +++ b/qml/pages/AboutPage.qml @@ -59,7 +59,7 @@ Page { } Label { - text: "Fernschreiber 0.7.1" + text: "Fernschreiber 0.8" horizontalAlignment: Text.AlignHCenter font.pixelSize: Theme.fontSizeExtraLarge anchors { diff --git a/rpm/harbour-fernschreiber.changes b/rpm/harbour-fernschreiber.changes index 774b6a6..446a86f 100644 --- a/rpm/harbour-fernschreiber.changes +++ b/rpm/harbour-fernschreiber.changes @@ -12,6 +12,27 @@ # * date Author's Name version-release # - Summary of changes +* Mon Feb 22 2021 Sebastian J. Wolf 0.7 +- Tap on a sticker to show overlay with the corresponding sticker set +- Sticker set overlay allows to uninstall it +- Redesign sticker picker, improve loading time +- Additional context menu to prevent the normal one from becoming too big, see https://github.com/Wunderfitz/harbour-fernschreiber/issues/216 +- Manage all Telegram sessions for current user (see About -> Active Sessions) +- Forward message now directly available in (additional) context menu +- Use different background colors for muted chats - thanks to monich +- Enable storage optimizer per default +- [SFOS 4] Disable contacts sync as no longer possible, see https://forum.sailfishos.org/t/4-0-1-45-non-jailed-contacts-sqlite-database-no-longer-updated/4724 +- Fix: Found private chats no longer appear automatically in the chat list +- Fix: Stickers can now be sent as replies +- Fix: Message sticker highlight and click behavior now aligned with other message types - thanks to monich +- Fix: Don't auto-scroll if context menu is opened, see https://github.com/Wunderfitz/harbour-fernschreiber/issues/139 +- Fix: Deleted in-reply-to messages are now shown with a placeholder, see https://github.com/Wunderfitz/harbour-fernschreiber/issues/374 +- Fix: Sort text replacements better to avoid overlaps in case of special characters, see https://github.com/Wunderfitz/harbour-fernschreiber/issues/334 +- Fix: Trigger mark-as-read (almost) immediately after opening chat (plus configurable delay) +- Fix: [SFOS 4] Documents app can no longer access all directories, always download before calling it +- Fix: [SFOS 4] Forwarding a message no longer causes the page stack to become invalid (navigating back was no longer working) +- Several translations updated - thanks to all contributors + * Fri Feb 5 2021 Sebastian J. Wolf 0.7 - Massively extended bot support - thanks to jgibbon - Option to change first name, last name, username diff --git a/rpm/harbour-fernschreiber.spec b/rpm/harbour-fernschreiber.spec index 97dd7bf..d285820 100644 --- a/rpm/harbour-fernschreiber.spec +++ b/rpm/harbour-fernschreiber.spec @@ -11,8 +11,8 @@ Name: harbour-fernschreiber # << macros Summary: Fernschreiber is a Telegram client for Sailfish OS -Version: 0.7.1 -Release: 5 +Version: 0.8 +Release: 1 Group: Qt/Qt License: LICENSE URL: http://werkwolf.eu/ diff --git a/rpm/harbour-fernschreiber.yaml b/rpm/harbour-fernschreiber.yaml index 5994827..a03e9b2 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.7.1 -Release: 5 +Version: 0.8 +Release: 1 # 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/src/tdlibwrapper.cpp b/src/tdlibwrapper.cpp index 09c3600..6a96d24 100644 --- a/src/tdlibwrapper.cpp +++ b/src/tdlibwrapper.cpp @@ -1853,7 +1853,7 @@ void TDLibWrapper::setInitialParameters() QSettings hardwareSettings("/etc/hw-release", QSettings::NativeFormat); initialParameters.insert("device_model", hardwareSettings.value("NAME", "Unknown Mobile Device").toString()); initialParameters.insert("system_version", QSysInfo::prettyProductName()); - initialParameters.insert("application_version", "0.7.1"); + initialParameters.insert("application_version", "0.8"); initialParameters.insert("enable_storage_optimizer", appSettings->storageOptimizer()); // initialParameters.insert("use_test_dc", true); requestObject.insert("parameters", initialParameters);