Merge pull request #467 from estevez-dev/release/0.6.7

Release/0.6.7
This commit is contained in:
Yegor Vialov 2019-09-18 21:35:55 +03:00 committed by GitHub
commit 1dbe162bf0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View File

@ -134,7 +134,7 @@ EventBus eventBus = new EventBus();
final FirebaseMessaging _firebaseMessaging = FirebaseMessaging(); final FirebaseMessaging _firebaseMessaging = FirebaseMessaging();
FlutterLocalNotificationsPlugin flutterLocalNotificationsPlugin = new FlutterLocalNotificationsPlugin(); FlutterLocalNotificationsPlugin flutterLocalNotificationsPlugin = new FlutterLocalNotificationsPlugin();
const String appName = "HA Client"; const String appName = "HA Client";
const appVersionNumber = "0.6.7"; const appVersionNumber = "0.6.8";
const appVersionAdd = "alpha1"; const appVersionAdd = "alpha1";
const appVersion = "$appVersionNumber-$appVersionAdd"; const appVersion = "$appVersionNumber-$appVersionAdd";

View File

@ -87,7 +87,7 @@ class HAView {
} else { } else {
return return
Tab( Tab(
text: name.toUpperCase(), text: "${name?.toUpperCase() ?? "UNNAMED VIEW"}",
); );
} }
} else { } else {
@ -101,7 +101,7 @@ class HAView {
); );
} else { } else {
return Tab( return Tab(
text: linkedEntity.displayName.toUpperCase(), text: "${linkedEntity.displayName?.toUpperCase()}",
); );
} }

View File

@ -1,7 +1,7 @@
name: hass_client name: hass_client
description: Home Assistant Android Client description: Home Assistant Android Client
version: 0.6.7+672 version: 0.6.8+680
environment: environment:
sdk: ">=2.0.0-dev.68.0 <3.0.0" sdk: ">=2.0.0-dev.68.0 <3.0.0"