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"