From 7ad78d1b7dc82f81f08981ac9a684d168c8153f2 Mon Sep 17 00:00:00 2001 From: Christian Pauly Date: Mon, 17 Feb 2020 08:21:28 +0000 Subject: [PATCH 1/3] Update web/index.html --- web/index.html | 1 + 1 file changed, 1 insertion(+) diff --git a/web/index.html b/web/index.html index 8fa5e96d..bf6942eb 100644 --- a/web/index.html +++ b/web/index.html @@ -2,6 +2,7 @@ + fluffychat From 0f8e44fd781ec1403e38aaf8ac9debc6d0ffcae5 Mon Sep 17 00:00:00 2001 From: Christian Pauly Date: Mon, 17 Feb 2020 11:55:06 +0000 Subject: [PATCH 2/3] Update pubspec.yaml --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 9e2dcc85..7dd87893 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -27,7 +27,7 @@ dependencies: famedlysdk: git: url: https://gitlab.com/famedly/famedlysdk.git - ref: b7dea7c6a5634f68816be9323ce78669b7d0ff0f + ref: 75c1dc1c566e848adebee08e7c882b267ff0797e localstorage: ^3.0.1+4 bubble: ^1.1.9+1 From 9de161acc70e26a5f0fbf9c07fde4dbda723d6d7 Mon Sep 17 00:00:00 2001 From: Christian Pauly Date: Mon, 17 Feb 2020 12:38:27 +0000 Subject: [PATCH 3/3] Update lib/views/chat_list.dart, pubspec.yaml, CHANGELOG.md files --- CHANGELOG.md | 4 ++++ lib/views/chat_list.dart | 6 ++---- pubspec.yaml | 2 +- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ae51049d..22c3ee86 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# Version 0.8.2 - 2020-02-17 +### Fixes +- SpeedDial labels not visible in light mode + # Version 0.8.1 - 2020-02-16 ### New features - Dark mode diff --git a/lib/views/chat_list.dart b/lib/views/chat_list.dart index cfbbfa25..e5235449 100644 --- a/lib/views/chat_list.dart +++ b/lib/views/chat_list.dart @@ -202,7 +202,7 @@ class _ChatListState extends State { backgroundColor: Colors.blue, label: I18n.of(context).createNewGroup, labelStyle: - TextStyle(fontSize: 18.0, color: blackWhiteColor(context)), + TextStyle(fontSize: 18.0, color: Colors.black), onTap: () => Navigator.of(context).pushAndRemoveUntil( AppRoute.defaultRoute(context, NewGroupView()), (r) => r.isFirst), @@ -214,9 +214,7 @@ class _ChatListState extends State { label: I18n.of(context).newPrivateChat, labelStyle: TextStyle( fontSize: 18.0, - color: Theme.of(context).brightness == Brightness.light - ? Colors.white - : Colors.black), + color: Colors.black), onTap: () => Navigator.of(context).pushAndRemoveUntil( AppRoute.defaultRoute(context, NewPrivateChatView()), (r) => r.isFirst), diff --git a/pubspec.yaml b/pubspec.yaml index 7dd87893..9f328397 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -11,7 +11,7 @@ description: Chat with your friends. # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. # Read more about iOS versioning at # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html -version: 0.8.1+26 +version: 0.8.2+27 environment: sdk: ">=2.6.0 <3.0.0"