mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-12-02 17:29:34 +01:00
Update version
This commit is contained in:
parent
f9bec90f3d
commit
14f3bb6e8a
@ -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
|
## v0.31.2 - 2021-05-28
|
||||||
|
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
import 'package:fluffychat/utils/platform_infos.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:flutter/foundation.dart';
|
import 'package:flutter/foundation.dart';
|
||||||
import 'package:famedlysdk/famedlysdk.dart';
|
import 'package:famedlysdk/famedlysdk.dart';
|
||||||
@ -288,7 +289,7 @@ class InputBar extends StatelessWidget {
|
|||||||
return null;
|
return null;
|
||||||
}),
|
}),
|
||||||
SubmitLineIntent: CallbackAction(onInvoke: (i) {
|
SubmitLineIntent: CallbackAction(onInvoke: (i) {
|
||||||
if (PlatformInfos.kIsWeb || PlatformInfos.isDesktop){
|
if (PlatformInfos.isWeb || PlatformInfos.isDesktop) {
|
||||||
onSubmitted(controller.text);
|
onSubmitted(controller.text);
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
name: fluffychat
|
name: fluffychat
|
||||||
description: Chat with your friends.
|
description: Chat with your friends.
|
||||||
publish_to: none
|
publish_to: none
|
||||||
version: 0.31.2+0
|
version: 0.31.3+0
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=2.6.0 <3.0.0"
|
sdk: ">=2.6.0 <3.0.0"
|
||||||
|
Loading…
Reference in New Issue
Block a user