1.0.0 alpha1
This commit is contained in:
@ -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')
|
||||
)
|
||||
]
|
||||
)
|
||||
|
@ -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;
|
||||
|
Reference in New Issue
Block a user