mirror of
https://github.com/twonlyapp/twonly-app.git
synced 2026-04-18 14:42:54 +00:00
bump version
Some checks are pending
Flutter analyze & test / flutter_analyze_and_test (push) Waiting to run
Some checks are pending
Flutter analyze & test / flutter_analyze_and_test (push) Waiting to run
This commit is contained in:
parent
02ae72f679
commit
fdb11d1a9b
3 changed files with 3 additions and 3 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## 0.1.2
|
## 0.1.3
|
||||||
|
|
||||||
- New: Developer settings to reduce flames
|
- New: Developer settings to reduce flames
|
||||||
- New: Clicking on “Text Notifications” will now open the chat directly (Android only)
|
- New: Clicking on “Text Notifications” will now open the chat directly (Android only)
|
||||||
|
|
|
||||||
|
|
@ -131,7 +131,7 @@ class _UserListItem extends State<GroupListItem> {
|
||||||
// only shows the last message in case there was no newer messages which already got deleted
|
// only shows the last message in case there was no newer messages which already got deleted
|
||||||
// This prevents, that it will show that a images got stored 10 days ago...
|
// This prevents, that it will show that a images got stored 10 days ago...
|
||||||
if (newLastMessage.createdAt.isAfter(
|
if (newLastMessage.createdAt.isAfter(
|
||||||
widget.group.lastMessageExchange.subtract(const Duration(minutes: 10)),
|
widget.group.lastMessageExchange.subtract(const Duration(days: 2)),
|
||||||
)) {
|
)) {
|
||||||
_currentMessage = newLastMessage;
|
_currentMessage = newLastMessage;
|
||||||
_previewMessages = [newLastMessage];
|
_previewMessages = [newLastMessage];
|
||||||
|
|
|
||||||
|
|
@ -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.1+101
|
version: 0.1.2+102
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ^3.11.0
|
sdk: ^3.11.0
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue