mirror of
https://github.com/twonlyapp/twonly-app.git
synced 2026-04-22 13:02:54 +00:00
Merge pull request #399 from twonlyapp/dev
Some checks are pending
Publish on Github / build_and_publish (push) Waiting to run
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:
commit
a5352734c7
3 changed files with 6 additions and 4 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## 0.1.6
|
## 0.1.7
|
||||||
|
|
||||||
- Improved: Show input indicator in the chat overview as well
|
- Improved: Show input indicator in the chat overview as well
|
||||||
- Improved: Username change error handling
|
- Improved: Username change error handling
|
||||||
|
|
|
||||||
|
|
@ -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...
|
// 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
|
// so ensuring that this message is not shown in the messages anymore
|
||||||
(t.openedAt.isBiggerThanValue(deletionTime) |
|
(t.openedAt.isBiggerThanValue(deletionTime) |
|
||||||
t.openedAt.isNull()),
|
t.openedAt.isNull() |
|
||||||
|
t.mediaStored.equals(true)),
|
||||||
)
|
)
|
||||||
..orderBy([(t) => OrderingTerm.desc(t.createdAt)])
|
..orderBy([(t) => OrderingTerm.desc(t.createdAt)])
|
||||||
..limit(1))
|
..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...
|
// 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
|
// so ensuring that this message is not shown in the messages anymore
|
||||||
(t.openedAt.isBiggerThanValue(deletionTime) |
|
(t.openedAt.isBiggerThanValue(deletionTime) |
|
||||||
t.openedAt.isNull()) &
|
t.openedAt.isNull() |
|
||||||
|
t.mediaStored.equals(true)) &
|
||||||
(t.isDeletedFromSender.equals(true) |
|
(t.isDeletedFromSender.equals(true) |
|
||||||
(t.type.equals(MessageType.text.name).not() |
|
(t.type.equals(MessageType.text.name).not() |
|
||||||
t.type.equals(MessageType.media.name).not()) |
|
t.type.equals(MessageType.media.name).not()) |
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ description: "twonly, a privacy-friendly way to connect with friends through sec
|
||||||
|
|
||||||
publish_to: 'none'
|
publish_to: 'none'
|
||||||
|
|
||||||
version: 0.1.6+106
|
version: 0.1.7+107
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ^3.11.0
|
sdk: ^3.11.0
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue