Update version

This commit is contained in:
Christian Pauly 2021-05-28 22:47:11 +02:00
parent f9bec90f3d
commit 14f3bb6e8a
3 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,8 @@
## v0.31.3 - 2021-05-28
### Fixes
* Build Linux
* Multiline keyboard on web and desktop
## v0.31.2 - 2021-05-28

View File

@ -1,3 +1,4 @@
import 'package:fluffychat/utils/platform_infos.dart';
import 'package:flutter/material.dart';
import 'package:flutter/foundation.dart';
import 'package:famedlysdk/famedlysdk.dart';
@ -288,7 +289,7 @@ class InputBar extends StatelessWidget {
return null;
}),
SubmitLineIntent: CallbackAction(onInvoke: (i) {
if (PlatformInfos.kIsWeb || PlatformInfos.isDesktop){
if (PlatformInfos.isWeb || PlatformInfos.isDesktop) {
onSubmitted(controller.text);
}
return null;

View File

@ -1,7 +1,7 @@
name: fluffychat
description: Chat with your friends.
publish_to: none
version: 0.31.2+0
version: 0.31.3+0
environment:
sdk: ">=2.6.0 <3.0.0"