Compare commits
	
		
			9 Commits
		
	
	
		
			0.6.0-alph
			...
			0.6.0-alph
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
|  | 885a516676 | ||
|  | 921b0e09b0 | ||
|  | 277c67fc6f | ||
|  | 2a01ff8a03 | ||
|  | b246b7bc1d | ||
|  | e1868b9a14 | ||
|  | 125f3ac16c | ||
|  | be502b5668 | ||
|  | 6f33fdca9f | 
| @@ -105,7 +105,7 @@ part 'ui_widgets/config_panel_widget.dart'; | ||||
|  | ||||
| EventBus eventBus = new EventBus(); | ||||
| const String appName = "HA Client"; | ||||
| const appVersion = "0.6.0-alpha1"; | ||||
| const appVersion = "0.6.0-alpha2"; | ||||
|  | ||||
| void main() { | ||||
|   FlutterError.onError = (errorDetails) { | ||||
| @@ -452,6 +452,38 @@ class _MainPageState extends State<MainPage> with WidgetsBindingObserver, Ticker | ||||
|                   decoration: TextDecoration.underline | ||||
|                 ), | ||||
|               ), | ||||
|             ), | ||||
|             Container( | ||||
|               height: 10.0, | ||||
|             ), | ||||
|             GestureDetector( | ||||
|               onTap: () { | ||||
|                 Navigator.of(context).pop(); | ||||
|                 HAUtils.launchURLInCustomTab(context, "http://ha-client.homemade.systems/terms_and_conditions"); | ||||
|               }, | ||||
|               child: Text( | ||||
|                 "Terms and Conditions", | ||||
|                 style: TextStyle( | ||||
|                     color: Colors.blue, | ||||
|                     decoration: TextDecoration.underline | ||||
|                 ), | ||||
|               ), | ||||
|             ), | ||||
|             Container( | ||||
|               height: 10.0, | ||||
|             ), | ||||
|             GestureDetector( | ||||
|               onTap: () { | ||||
|                 Navigator.of(context).pop(); | ||||
|                 HAUtils.launchURLInCustomTab(context, "http://ha-client.homemade.systems/privacy_policy"); | ||||
|               }, | ||||
|               child: Text( | ||||
|                 "Privacy Policy", | ||||
|                 style: TextStyle( | ||||
|                     color: Colors.blue, | ||||
|                     decoration: TextDecoration.underline | ||||
|                 ), | ||||
|               ), | ||||
|             ) | ||||
|           ], | ||||
|           applicationName: appName, | ||||
|   | ||||
| @@ -1,7 +1,7 @@ | ||||
| name: hass_client | ||||
| description: Home Assistant Android Client | ||||
|  | ||||
| version: 0.6.0+101 | ||||
| version: 0.6.0+601 | ||||
|  | ||||
| environment: | ||||
|   sdk: ">=2.0.0-dev.68.0 <3.0.0" | ||||
|   | ||||
		Reference in New Issue
	
	Block a user