Merge pull request #399 from twonlyapp/dev
Some checks are pending
Publish on Github / build_and_publish (push) Waiting to run

- Improved: Show input indicator in the chat overview as well 
- Improved: Username change error handling
- Fix: Phantom push notification 
- Fix: Start in chat, if configured
- Fix: Smaller UI fixes
This commit is contained in:
Tobi 2026-04-20 14:37:15 +02:00 committed by GitHub
commit a5352734c7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 6 additions and 4 deletions

View file

@ -1,6 +1,6 @@
# Changelog
## 0.1.6
## 0.1.7
- Improved: Show input indicator in the chat overview as well
- Improved: Username change error handling

View file

@ -78,7 +78,8 @@ class MessagesDao extends DatabaseAccessor<TwonlyDB> with _$MessagesDaoMixin {
// messages in groups will only be removed in case all members have received it...
// so ensuring that this message is not shown in the messages anymore
(t.openedAt.isBiggerThanValue(deletionTime) |
t.openedAt.isNull()),
t.openedAt.isNull() |
t.mediaStored.equals(true)),
)
..orderBy([(t) => OrderingTerm.desc(t.createdAt)])
..limit(1))
@ -98,7 +99,8 @@ class MessagesDao extends DatabaseAccessor<TwonlyDB> with _$MessagesDaoMixin {
// messages in groups will only be removed in case all members have received it...
// so ensuring that this message is not shown in the messages anymore
(t.openedAt.isBiggerThanValue(deletionTime) |
t.openedAt.isNull()) &
t.openedAt.isNull() |
t.mediaStored.equals(true)) &
(t.isDeletedFromSender.equals(true) |
(t.type.equals(MessageType.text.name).not() |
t.type.equals(MessageType.media.name).not()) |

View file

@ -3,7 +3,7 @@ description: "twonly, a privacy-friendly way to connect with friends through sec
publish_to: 'none'
version: 0.1.6+106
version: 0.1.7+107
environment:
sdk: ^3.11.0