1.0.0 alpha1

This commit is contained in:
Yegor Vialov
2020-05-03 14:26:46 +00:00
parent 4492a08d6b
commit 8aa0e03187
5 changed files with 10 additions and 4 deletions

View File

@ -540,6 +540,12 @@ class _MainPageState extends State<MainPage> with WidgetsBindingObserver, Ticker
child: Text("Login with long-lived token", style: Theme.of(context).textTheme.button),
color: Theme.of(context).primaryColor,
onPressed: () => eventBus.fire(ShowTokenLoginPopupEvent(goBackFirst: false))
),
Container(height: 20,),
FlatButton(
child: Text("Connection settings", style: Theme.of(context).textTheme.button),
color: Theme.of(context).primaryColor,
onPressed: () => Navigator.of(context).pushNamed('/connection-settings')
)
]
)

View File

@ -24,7 +24,7 @@ class _WhatsNewPageState extends State<WhatsNewPage> {
error = "";
});
http.Response response;
response = await http.get("http://ha-client.app/service/whats_new_0.8.5.md");
response = await http.get("http://ha-client.app/service/whats_new_1.0.0.md");
if (response.statusCode == 200) {
setState(() {
data = response.body;