diff --git a/rpm/harbour-fernschreiber.changes b/rpm/harbour-fernschreiber.changes index c82e82f..4af99be 100644 --- a/rpm/harbour-fernschreiber.changes +++ b/rpm/harbour-fernschreiber.changes @@ -12,6 +12,18 @@ # * date Author's Name version-release # - Summary of changes +* Fri Dec 4 2020 Sebastian J. Wolf 0.5.1 +- Add verification badge to verified chats - thanks to monich +- Improve preview of wide images - thanks to monich +- Fix: Editing functionality (was broken with newlines and didn't update correctly) +- Fix: Show single message in a chat if on receiving side +- Allow any screen orientation for picker dialogs - thanks to monich +- Fix: Long tap on image preview items - thanks to monich and jgibbon +- Press effect for image preview items - thanks to monich +- Fix: Chat Page flickable misplaced under some circumstances +- Fix: Short text for 'myself' short messages of channels in chat list +- Several translations updated - thanks to all contributors + * Mon Nov 30 2020 Sebastian J. Wolf 0.5 - Support secret chats - Support Telegram contacts & synchronization with local contacts DB on request diff --git a/rpm/harbour-fernschreiber.spec b/rpm/harbour-fernschreiber.spec index 95c4c64..ec37d3a 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.5.1 -Release: 1 +Release: 2 Group: Qt/Qt License: LICENSE URL: http://werkwolf.eu/ diff --git a/rpm/harbour-fernschreiber.yaml b/rpm/harbour-fernschreiber.yaml index d9b87b4..b803f43 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.5.1 -Release: 1 +Release: 2 # 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/chatmodel.cpp b/src/chatmodel.cpp index 3050e6e..7a40f30 100644 --- a/src/chatmodel.cpp +++ b/src/chatmodel.cpp @@ -223,7 +223,7 @@ void ChatModel::handleMessagesReceived(const QVariantList &messages, int totalCo if (!this->messagesToBeAdded.isEmpty() && (this->messagesToBeAdded.size() + this->messages.size()) < 10 && !this->inReload) { LOG("Only a few messages received in first call, loading more..."); this->inReload = true; - this->tdLibWrapper->getChatHistory(this->chatId, this->messagesToBeAdded.first().toMap().value(ID).toLongLong()); + this->tdLibWrapper->getChatHistory(this->chatId, this->messagesToBeAdded.first().toMap().value(ID).toLongLong(), 0); } else { LOG("Messages loaded, notifying chat UI..."); this->inReload = false;