mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2025-01-23 18:44:10 +01:00
Update lib/views/chat.dart, CHANGELOG.md, pubspec.yaml files
This commit is contained in:
parent
05bdd5968a
commit
325aed437b
@ -1,3 +1,7 @@
|
|||||||
|
# Version 0.7.1 - 2020-02-10
|
||||||
|
### Fixed
|
||||||
|
- Replies with correct sender id
|
||||||
|
|
||||||
# Version 0.7.0 - 2020-02-10
|
# Version 0.7.0 - 2020-02-10
|
||||||
### New features
|
### New features
|
||||||
- Select mode in chat
|
- Select mode in chat
|
||||||
|
@ -153,7 +153,7 @@ class _ChatState extends State<_Chat> {
|
|||||||
"body": sendController.text,
|
"body": sendController.text,
|
||||||
};
|
};
|
||||||
if (replyEvent != null) {
|
if (replyEvent != null) {
|
||||||
String replyText = ("<${room.client.userID}> " + replyEvent.body);
|
String replyText = ("<${replyEvent.senderId}> " + replyEvent.body);
|
||||||
List<String> replyTextLines = replyText.split("\n");
|
List<String> replyTextLines = replyText.split("\n");
|
||||||
for (int i = 0; i < replyTextLines.length; i++) {
|
for (int i = 0; i < replyTextLines.length; i++) {
|
||||||
replyTextLines[i] = "> " + replyTextLines[i];
|
replyTextLines[i] = "> " + replyTextLines[i];
|
||||||
|
@ -11,7 +11,7 @@ description: Chat with your friends.
|
|||||||
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
|
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
|
||||||
# Read more about iOS versioning at
|
# Read more about iOS versioning at
|
||||||
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
|
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
|
||||||
version: 0.7.0+20
|
version: 0.7.1+21
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=2.6.0 <3.0.0"
|
sdk: ">=2.6.0 <3.0.0"
|
||||||
|
Loading…
Reference in New Issue
Block a user