Compare commits

..

9 Commits

Author SHA1 Message Date
estevez-dev
885a516676 alpha2 2019-04-04 22:12:08 +03:00
estevez-dev
921b0e09b0 Merge branch 'terms_and_privacy' into 0.6.0-alpha1-1 2019-04-04 22:10:29 +03:00
estevez-dev
277c67fc6f Add padding for links in About dialog 2019-04-04 21:54:41 +03:00
estevez-dev
2a01ff8a03 Bump version in UI 2019-04-04 21:51:05 +03:00
estevez-dev
b246b7bc1d 0.5.3 and new build numbers 2019-04-04 21:44:16 +03:00
estevez-dev
e1868b9a14 Add privacy polici and terms and conditions links 2019-04-04 21:43:23 +03:00
estevez-dev
125f3ac16c Resolves #327 Timer duration parsing error 2019-04-04 21:38:23 +03:00
estevez-dev
be502b5668 Discord icon fix 2019-04-04 21:38:05 +03:00
estevez-dev
6f33fdca9f New app icon 2019-04-04 21:37:41 +03:00
2 changed files with 34 additions and 2 deletions

View File

@@ -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,

View File

@@ -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"