From cda17b12176ce4afc8dfd204a076e1ae6be282c1 Mon Sep 17 00:00:00 2001 From: Yegor Vialov Date: Fri, 14 Dec 2018 17:03:18 +0200 Subject: [PATCH] Resolves #232 --- lib/settings.page.dart | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lib/settings.page.dart b/lib/settings.page.dart index 4747fa3..28557a1 100644 --- a/lib/settings.page.dart +++ b/lib/settings.page.dart @@ -150,6 +150,10 @@ class _ConnectionSettingsPageState extends State { _newHassioPort = value; } ), + new Text( + "Try ports 80 and 443 if default is not working and you don't know why.", + style: TextStyle(color: Colors.grey), + ), new Row( mainAxisSize: MainAxisSize.min, children: [ @@ -170,6 +174,10 @@ class _ConnectionSettingsPageState extends State { ) ], ), + new Text( + "You should use access token for HA >= 0.84.1. Legacy password will not work there.", + style: TextStyle(color: Colors.grey), + ), new TextField( decoration: InputDecoration( labelText: _newAuthType == "access_token" ? "Access token" : "API password"