mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-31 23:36:50 +00:00
Merge branch 'current' into next
This commit is contained in:
commit
c0e9792227
@ -1,43 +0,0 @@
|
|||||||
---
|
|
||||||
layout: page
|
|
||||||
title: "BloomSky Binary Sensor"
|
|
||||||
description: "Instructions on how to set up BloomSky binary sensors within Home Assistant."
|
|
||||||
date: 2016-02-22 07:00
|
|
||||||
sidebar: true
|
|
||||||
comments: false
|
|
||||||
sharing: true
|
|
||||||
footer: true
|
|
||||||
logo: bloomsky.png
|
|
||||||
ha_category: Environment
|
|
||||||
ha_release: 0.14
|
|
||||||
ha_iot_class: "Cloud Polling"
|
|
||||||
---
|
|
||||||
|
|
||||||
The `bloomsky` binary sensor platform allows you to get data from your BloomSky device.
|
|
||||||
|
|
||||||
To get your BloomSky binary sensors working with Home Assistant, follow the instructions for the [BloomSky component](/components/bloomsky/) first.
|
|
||||||
|
|
||||||
## {% linkable_title Configuration %}
|
|
||||||
|
|
||||||
To use your BloomSky binary sensor in your installation, add the following to your `configuration.yaml` file:
|
|
||||||
|
|
||||||
```yaml
|
|
||||||
# Example configuration.yaml entry
|
|
||||||
binary_sensor:
|
|
||||||
- platform: bloomsky
|
|
||||||
monitored_conditions:
|
|
||||||
- Night
|
|
||||||
- Rain
|
|
||||||
```
|
|
||||||
|
|
||||||
{% configuration %}
|
|
||||||
monitored_conditions:
|
|
||||||
description: "The sensors that you wish to monitor on all of your devices. Select from these options:"
|
|
||||||
required: true
|
|
||||||
type: list
|
|
||||||
keys:
|
|
||||||
night:
|
|
||||||
description: Night
|
|
||||||
rain:
|
|
||||||
description: Rain
|
|
||||||
{% endconfiguration %}
|
|
@ -1,35 +0,0 @@
|
|||||||
---
|
|
||||||
layout: page
|
|
||||||
title: "Linode Binary Sensor"
|
|
||||||
description: "Instructions on how to set up Linode binary sensors within Home Assistant."
|
|
||||||
date: 2017-10-20 08:00
|
|
||||||
sidebar: true
|
|
||||||
comments: false
|
|
||||||
sharing: true
|
|
||||||
footer: true
|
|
||||||
ha_category: System Monitor
|
|
||||||
logo: linode.png
|
|
||||||
ha_release: 0.57
|
|
||||||
ha_iot_class: "Cloud Polling"
|
|
||||||
---
|
|
||||||
|
|
||||||
The `linode` binary sensor platform allows you to monitor your Linode nodes.
|
|
||||||
|
|
||||||
## {% linkable_title Configuration %}
|
|
||||||
|
|
||||||
Add the following to your `configuration.yaml` file:
|
|
||||||
|
|
||||||
```yaml
|
|
||||||
# Example configuration.yaml entry
|
|
||||||
binary_sensor:
|
|
||||||
- platform: linode
|
|
||||||
nodes:
|
|
||||||
- 'myvpsname'
|
|
||||||
```
|
|
||||||
|
|
||||||
{% configuration %}
|
|
||||||
nodes:
|
|
||||||
description: List of VPSs you want to control.
|
|
||||||
required: true
|
|
||||||
type: string
|
|
||||||
{% endconfiguration %}
|
|
@ -8,12 +8,24 @@ comments: false
|
|||||||
sharing: true
|
sharing: true
|
||||||
footer: true
|
footer: true
|
||||||
logo: bloomsky.png
|
logo: bloomsky.png
|
||||||
ha_category: Environment
|
ha_category:
|
||||||
|
- Environment
|
||||||
|
- Binary Sensor
|
||||||
|
- Camera
|
||||||
|
- Sensor
|
||||||
ha_release: 0.14
|
ha_release: 0.14
|
||||||
ha_iot_class: "Cloud Polling"
|
ha_iot_class: "Cloud Polling"
|
||||||
|
redirect_from:
|
||||||
|
- /components/binary_sensor.bloomsky/
|
||||||
---
|
---
|
||||||
|
|
||||||
The `bloomsky` component allows you to access your [BloomSky](https://www.bloomsky.com/) weather station's [sensors](/components/sensor.bloomsky), [binary sensors](/components/binary_sensor.bloomsky), and [camera](/components/camera.bloomsky) from Home Assistant.
|
The `bloomsky` component allows you to access your [BloomSky](https://www.bloomsky.com/) weather station's.
|
||||||
|
|
||||||
|
There is currently support for the following device types within Home Assistant:
|
||||||
|
|
||||||
|
- [Binary Sensor](#binary-sensor)
|
||||||
|
- [Camera](#camera)
|
||||||
|
- [Sensor](#sensor)
|
||||||
|
|
||||||
## {% linkable_title Setup %}
|
## {% linkable_title Setup %}
|
||||||
|
|
||||||
@ -35,3 +47,91 @@ api_key:
|
|||||||
required: true
|
required: true
|
||||||
type: string
|
type: string
|
||||||
{% endconfiguration %}
|
{% endconfiguration %}
|
||||||
|
|
||||||
|
## {% linkable_title Binary Sensor %}
|
||||||
|
|
||||||
|
The `bloomsky` binary sensor platform allows you to get data from your BloomSky device.
|
||||||
|
|
||||||
|
To get your BloomSky binary sensors working with Home Assistant, follow the instructions above first.
|
||||||
|
|
||||||
|
### {% linkable_title Configuration %}
|
||||||
|
|
||||||
|
To use your BloomSky binary sensor in your installation, add the following to your `configuration.yaml` file:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
# Example configuration.yaml entry
|
||||||
|
binary_sensor:
|
||||||
|
- platform: bloomsky
|
||||||
|
monitored_conditions:
|
||||||
|
- Night
|
||||||
|
- Rain
|
||||||
|
```
|
||||||
|
|
||||||
|
{% configuration %}
|
||||||
|
monitored_conditions:
|
||||||
|
description: "The sensors that you wish to monitor on all of your devices. Select from these options:"
|
||||||
|
required: true
|
||||||
|
type: list
|
||||||
|
keys:
|
||||||
|
night:
|
||||||
|
description: Night
|
||||||
|
rain:
|
||||||
|
description: Rain
|
||||||
|
{% endconfiguration %}
|
||||||
|
|
||||||
|
## {% linkable_title Camera %}
|
||||||
|
|
||||||
|
The `bloomsky` camera component allows you to view the current photo created by the camera in the [BloomSky](https://www.bloomsky.com) weather station. This can work in concert with [BloomSky sensors](#sensor).
|
||||||
|
|
||||||
|
### {% linkable_title Configuration %}
|
||||||
|
|
||||||
|
To enable this camera in your installation, set up the BloomSky component with your API key and add the following to your `configuration.yaml` file:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
# Example configuration.yaml entry
|
||||||
|
camera:
|
||||||
|
- platform: bloomsky
|
||||||
|
```
|
||||||
|
|
||||||
|
## {% linkable_title Sensor %}
|
||||||
|
|
||||||
|
The `bloomsky` sensor component allows you to view the measurements made by sensors in the [BloomSky](https://www.bloomsky.com) weather station. This can work in concert with the [BloomSky camera](#camera).
|
||||||
|
|
||||||
|
### {% linkable_title Configuration %}
|
||||||
|
|
||||||
|
To enable these sensors in your installation, set up the BloomSky component with your API key add the following to your `configuration.yaml` file:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
# Example configuration.yaml entry
|
||||||
|
sensor:
|
||||||
|
platform: bloomsky
|
||||||
|
monitored_conditions:
|
||||||
|
- Temperature
|
||||||
|
- Humidity
|
||||||
|
- Pressure
|
||||||
|
- UVIndex
|
||||||
|
- Luminance
|
||||||
|
- Voltage
|
||||||
|
```
|
||||||
|
|
||||||
|
{% configuration %}
|
||||||
|
monitored_conditions:
|
||||||
|
description: "The sensors that you wish to monitor on all of your devices. Select from these options:"
|
||||||
|
required: true
|
||||||
|
type: list
|
||||||
|
keys:
|
||||||
|
humidity:
|
||||||
|
description: Humidity
|
||||||
|
luminance:
|
||||||
|
description: Luminance
|
||||||
|
pressure:
|
||||||
|
description: Pressure
|
||||||
|
temperature:
|
||||||
|
description: Temperature
|
||||||
|
uvindex:
|
||||||
|
description: UVIndex
|
||||||
|
voltage:
|
||||||
|
description: Voltage
|
||||||
|
{% endconfiguration %}
|
||||||
|
|
||||||
|
More conditions are available using the [BloomSky binary sensor](#binary-sensor) component.
|
@ -1,26 +0,0 @@
|
|||||||
---
|
|
||||||
layout: page
|
|
||||||
title: "BloomSky Camera"
|
|
||||||
description: "Instructions on how to integrate the BloomSky camera within Home Assistant."
|
|
||||||
date: 2016-02-03 20:00
|
|
||||||
sidebar: true
|
|
||||||
comments: false
|
|
||||||
sharing: true
|
|
||||||
footer: true
|
|
||||||
logo: bloomsky.png
|
|
||||||
ha_category: Camera
|
|
||||||
ha_release: 0.13
|
|
||||||
ha_iot_class: "Local Polling"
|
|
||||||
---
|
|
||||||
|
|
||||||
The `bloomsky` camera component allows you to view the current photo created by the camera in the [BloomSky](https://www.bloomsky.com) weather station. This can work in concert with [BloomSky sensors](/components/sensor.bloomsky).
|
|
||||||
|
|
||||||
## {% linkable_title Configuration %}
|
|
||||||
|
|
||||||
To enable this camera in your installation, set up the [BloomSky component](/components/bloomsky) with your API key and add the following to your `configuration.yaml` file:
|
|
||||||
|
|
||||||
```yaml
|
|
||||||
# Example configuration.yaml entry
|
|
||||||
camera:
|
|
||||||
- platform: bloomsky
|
|
||||||
```
|
|
@ -1,26 +0,0 @@
|
|||||||
---
|
|
||||||
layout: page
|
|
||||||
title: "Daikin AC"
|
|
||||||
description: "Instructions on how to integrate Daikin AC(s) with Home Assistant."
|
|
||||||
date: 2017-12-03 05:00
|
|
||||||
sidebar: true
|
|
||||||
comments: false
|
|
||||||
sharing: true
|
|
||||||
footer: true
|
|
||||||
logo: daikin.png
|
|
||||||
ha_category: Climate
|
|
||||||
ha_release: 0.59
|
|
||||||
ha_iot_class: "Local Polling"
|
|
||||||
---
|
|
||||||
|
|
||||||
|
|
||||||
The `daikin` climate platform integrates Daikin air conditioning systems into Home Assistant, enabling control of setting the following parameters:
|
|
||||||
|
|
||||||
- **mode** (cool, heat, dry, fan only or auto)
|
|
||||||
- **fan speed** (on supported models)
|
|
||||||
- **target temperature**
|
|
||||||
- **swing mode** (on supported models)
|
|
||||||
|
|
||||||
Current temperature is displayed.
|
|
||||||
|
|
||||||
For configuration instructions, see [the Daikin component](/components/daikin/).
|
|
@ -8,13 +8,23 @@ comments: false
|
|||||||
sharing: true
|
sharing: true
|
||||||
footer: true
|
footer: true
|
||||||
logo: daikin.png
|
logo: daikin.png
|
||||||
ha_category: Climate
|
ha_category:
|
||||||
|
- Climate
|
||||||
|
- Sensor
|
||||||
ha_release: 0.59
|
ha_release: 0.59
|
||||||
ha_iot_class: "Local Polling"
|
ha_iot_class: "Local Polling"
|
||||||
|
redirect_from:
|
||||||
|
- /components/climate.daikin/
|
||||||
|
- /components/sensor.daikin/
|
||||||
---
|
---
|
||||||
|
|
||||||
The `daikin` component integrates Daikin air conditioning systems into Home Assistant.
|
The `daikin` component integrates Daikin air conditioning systems into Home Assistant.
|
||||||
|
|
||||||
|
There is currently support for the following device types within Home Assistant:
|
||||||
|
|
||||||
|
- [Climate](#climate)
|
||||||
|
- [Sensor](#sensor)
|
||||||
|
|
||||||
## {% linkable_title Supported hardware %}
|
## {% linkable_title Supported hardware %}
|
||||||
|
|
||||||
**Only** the European versions of Daikin AC (models BRP069A41, 42, 43, 45).
|
**Only** the European versions of Daikin AC (models BRP069A41, 42, 43, 45).
|
||||||
@ -39,5 +49,23 @@ hosts:
|
|||||||
description: List of IP addresses or hostnames.
|
description: List of IP addresses or hostnames.
|
||||||
required: false
|
required: false
|
||||||
default: All discovered hosts
|
default: All discovered hosts
|
||||||
type: list
|
type: list
|
||||||
{% endconfiguration %}
|
{% endconfiguration %}
|
||||||
|
|
||||||
|
## {% linkable_title Climate %}
|
||||||
|
|
||||||
|
The `daikin` climate platform integrates Daikin air conditioning systems into Home Assistant, enabling control of setting the following parameters:
|
||||||
|
|
||||||
|
- **mode** (cool, heat, dry, fan only or auto)
|
||||||
|
- **fan speed** (on supported models)
|
||||||
|
- **target temperature**
|
||||||
|
- **swing mode** (on supported models)
|
||||||
|
|
||||||
|
Current temperature is displayed.
|
||||||
|
|
||||||
|
## {% linkable_title Sensor %}
|
||||||
|
|
||||||
|
The `daikin` sensor platform integrates Daikin air conditioning systems into Home Assistant, enabling displaying the following parameters:
|
||||||
|
|
||||||
|
- Inside temperature
|
||||||
|
- Outside temperature
|
@ -7,23 +7,34 @@ sidebar: true
|
|||||||
comments: false
|
comments: false
|
||||||
sharing: true
|
sharing: true
|
||||||
footer: true
|
footer: true
|
||||||
ha_category: System Monitor
|
ha_category:
|
||||||
|
- System Monitor
|
||||||
|
- Binary Sensor
|
||||||
|
- Switch
|
||||||
logo: linode.png
|
logo: linode.png
|
||||||
ha_release: 0.57
|
ha_release: 0.57
|
||||||
ha_iot_class: "Cloud Polling"
|
ha_iot_class: "Cloud Polling"
|
||||||
|
redirect_from:
|
||||||
|
- /components/binary_sensor.linode/
|
||||||
|
- /components/switch.linode/
|
||||||
---
|
---
|
||||||
|
|
||||||
The `linode` component allows you to access the information about your [Linode](https://linode.com) systems from Home Assistant.
|
The `linode` component allows you to access the information about your [Linode](https://linode.com) systems from Home Assistant.
|
||||||
|
|
||||||
|
There is currently support for the following device types within Home Assistant:
|
||||||
|
|
||||||
|
- [Binary Sensor](#binary-sensor)
|
||||||
|
- [Switch](#switch)
|
||||||
|
|
||||||
## {% linkable_title Setup %}
|
## {% linkable_title Setup %}
|
||||||
|
|
||||||
Obtain your oAuth2 Access Token from Linode account.
|
Obtain your oAuth2 Access Token from Linode account.
|
||||||
|
|
||||||
* <http://cloud.linode.com>
|
- <http://cloud.linode.com>
|
||||||
* Log in
|
- Log in
|
||||||
* Select API Tokens
|
- Select API Tokens
|
||||||
* Create a Personal Access Token,
|
- Create a Personal Access Token,
|
||||||
* Assigned scope (Please choose the least possible access required.)
|
- Assigned scope (Please choose the least possible access required.)
|
||||||
|
|
||||||
## {% linkable_title Configuration %}
|
## {% linkable_title Configuration %}
|
||||||
|
|
||||||
@ -41,3 +52,45 @@ linode:
|
|||||||
required: true
|
required: true
|
||||||
type: string
|
type: string
|
||||||
{% endconfiguration %}
|
{% endconfiguration %}
|
||||||
|
|
||||||
|
## {% linkable_title Binary Sensor %}
|
||||||
|
|
||||||
|
The `linode` binary sensor platform allows you to monitor your Linode nodes.
|
||||||
|
|
||||||
|
Add the following to your `configuration.yaml` file:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
# Example configuration.yaml entry
|
||||||
|
binary_sensor:
|
||||||
|
- platform: linode
|
||||||
|
nodes:
|
||||||
|
- 'myvpsname'
|
||||||
|
```
|
||||||
|
|
||||||
|
{% configuration %}
|
||||||
|
nodes:
|
||||||
|
description: List of VPSs you want to control.
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
{% endconfiguration %}
|
||||||
|
|
||||||
|
## {% linkable_title Switch %}
|
||||||
|
|
||||||
|
The `linode` switch platform allows you to turn your Linode nodes on and off.
|
||||||
|
|
||||||
|
Add the following to your `configuration.yaml` file:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
# Example configuration.yaml entry
|
||||||
|
switch:
|
||||||
|
- platform: linode
|
||||||
|
nodes:
|
||||||
|
- 'myvpsname'
|
||||||
|
```
|
||||||
|
|
||||||
|
{% configuration linode %}
|
||||||
|
nodes:
|
||||||
|
description: List of VPSs you want to control.
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
{% endconfiguration %}
|
||||||
|
@ -1,56 +0,0 @@
|
|||||||
---
|
|
||||||
layout: page
|
|
||||||
title: "BloomSky Sensor"
|
|
||||||
description: "Instructions on how to integrate the BloomSky sensors within Home Assistant."
|
|
||||||
date: 2016-02-03 20:00
|
|
||||||
sidebar: true
|
|
||||||
comments: false
|
|
||||||
sharing: true
|
|
||||||
footer: true
|
|
||||||
logo: bloomsky.png
|
|
||||||
ha_category: Sensor
|
|
||||||
ha_release: 0.14
|
|
||||||
ha_iot_class: "Cloud Polling"
|
|
||||||
---
|
|
||||||
|
|
||||||
|
|
||||||
The `bloomsky` sensor component allows you to view the measurements made by sensors in the [BloomSky](https://www.bloomsky.com) weather station. This can work in concert with the [BloomSky camera](/components/camera.bloomsky).
|
|
||||||
|
|
||||||
## {% linkable_title Configuration %}
|
|
||||||
|
|
||||||
To enable these sensors in your installation, set up the [BloomSky component](/components/bloomsky) with your API key add the following to your `configuration.yaml` file:
|
|
||||||
|
|
||||||
```yaml
|
|
||||||
# Example configuration.yaml entry
|
|
||||||
sensor:
|
|
||||||
platform: bloomsky
|
|
||||||
monitored_conditions:
|
|
||||||
- Temperature
|
|
||||||
- Humidity
|
|
||||||
- Pressure
|
|
||||||
- UVIndex
|
|
||||||
- Luminance
|
|
||||||
- Voltage
|
|
||||||
```
|
|
||||||
|
|
||||||
{% configuration %}
|
|
||||||
monitored_conditions:
|
|
||||||
description: "The sensors that you wish to monitor on all of your devices. Select from these options:"
|
|
||||||
required: true
|
|
||||||
type: list
|
|
||||||
keys:
|
|
||||||
humidity:
|
|
||||||
description: Humidity
|
|
||||||
luminance:
|
|
||||||
description: Luminance
|
|
||||||
pressure:
|
|
||||||
description: Pressure
|
|
||||||
temperature:
|
|
||||||
description: Temperature
|
|
||||||
uvindex:
|
|
||||||
description: UVIndex
|
|
||||||
voltage:
|
|
||||||
description: Voltage
|
|
||||||
{% endconfiguration %}
|
|
||||||
|
|
||||||
More conditions are available using the [BloomSky binary sensor](/components/binary_sensor.bloomsky) component.
|
|
@ -22,8 +22,8 @@ To enable this sensor, add the following lines to your `configuration.yaml`. You
|
|||||||
```yaml
|
```yaml
|
||||||
sensor:
|
sensor:
|
||||||
- platform: crimereports
|
- platform: crimereports
|
||||||
name: <any name>
|
name: NAME_FOR_SENSOR
|
||||||
radius: <your radius>
|
radius: RADIUS
|
||||||
```
|
```
|
||||||
|
|
||||||
{% configuration %}
|
{% configuration %}
|
||||||
|
@ -1,22 +0,0 @@
|
|||||||
---
|
|
||||||
layout: page
|
|
||||||
title: "Daikin AC Sensor"
|
|
||||||
description: "Instructions on how to integrate Daikin AC(s) with Home Assistant."
|
|
||||||
date: 2017-12-03 05:00
|
|
||||||
sidebar: true
|
|
||||||
comments: false
|
|
||||||
sharing: true
|
|
||||||
footer: true
|
|
||||||
logo: daikin.png
|
|
||||||
ha_category: Environment
|
|
||||||
ha_release: 0.59
|
|
||||||
ha_iot_class: "Local Polling"
|
|
||||||
---
|
|
||||||
|
|
||||||
|
|
||||||
The `daikin` sensor platform integrates Daikin air conditioning systems into Home Assistant, enabling displaying the following parameters:
|
|
||||||
|
|
||||||
- Inside temperature
|
|
||||||
- Outside temperature
|
|
||||||
|
|
||||||
For installation instructions, see [the Daikin component](/components/daikin/).
|
|
@ -1,33 +0,0 @@
|
|||||||
---
|
|
||||||
layout: page
|
|
||||||
title: "Linode Switch"
|
|
||||||
description: "Instructions on how to set up Linode switch within Home Assistant."
|
|
||||||
date: 2017-10-20 08:00
|
|
||||||
sidebar: true
|
|
||||||
comments: false
|
|
||||||
sharing: true
|
|
||||||
footer: true
|
|
||||||
ha_category: System Monitor
|
|
||||||
logo: linode.png
|
|
||||||
ha_release: 0.57
|
|
||||||
ha_iot_class: "Cloud Polling"
|
|
||||||
---
|
|
||||||
|
|
||||||
The `linode` switch platform allows you to turn your Linode nodes on and off.
|
|
||||||
|
|
||||||
Add the following to your `configuration.yaml` file:
|
|
||||||
|
|
||||||
```yaml
|
|
||||||
# Example configuration.yaml entry
|
|
||||||
switch:
|
|
||||||
- platform: linode
|
|
||||||
nodes:
|
|
||||||
- 'myvpsname'
|
|
||||||
```
|
|
||||||
|
|
||||||
{% configuration linode %}
|
|
||||||
nodes:
|
|
||||||
description: List of VPSs you want to control.
|
|
||||||
required: true
|
|
||||||
type: string
|
|
||||||
{% endconfiguration %}
|
|
@ -10,7 +10,7 @@ footer: true
|
|||||||
redirect_from: /getting-started/browsers/
|
redirect_from: /getting-started/browsers/
|
||||||
---
|
---
|
||||||
|
|
||||||
Home Assistant requires a web browser to show the frontend and supports all major modern browsers. We don't test the web interface against all available browsers but this page tracks different browsers on various operating systems and should help you to pick a browser which works. The "Release" column contains the release number which were tested. This doesn't mean that older or newer releases not work.
|
Home Assistant requires a web browser to show the frontend and supports all major modern browsers. We don't test the web interface against all available browsers but this page tracks different browsers on various operating systems and should help you to pick a browser which works. The "Release" column contains the release number which was tested. This doesn't mean that older or newer releases are not work.
|
||||||
|
|
||||||
If a browser is listed as working but you are still having problems, it is possible that some add-on or extension may be the problem. Some add-ons or extension are known to cause issue with the frontend, but it's not possible to test them all. If you are having issues with the frontend displaying correctly, you should disable all your add-ons or extensions and enable them one at a time.
|
If a browser is listed as working but you are still having problems, it is possible that some add-on or extension may be the problem. Some add-ons or extension are known to cause issue with the frontend, but it's not possible to test them all. If you are having issues with the frontend displaying correctly, you should disable all your add-ons or extensions and enable them one at a time.
|
||||||
|
|
||||||
@ -50,7 +50,8 @@ We would appreciate if you help to keep this page up-to-date and add feedback.
|
|||||||
| [w3m] | 0.5.3 | fails | display the icon shown while loading HA |
|
| [w3m] | 0.5.3 | fails | display the icon shown while loading HA |
|
||||||
| [Epiphany] | 3.18.5 | works | |
|
| [Epiphany] | 3.18.5 | works | |
|
||||||
| [surf] | 0.7 | works | |
|
| [surf] | 0.7 | works | |
|
||||||
| [Chrome] | 69.0.3497.100 | works | |
|
| [Chrome] | 71.0.3578.98 | works | |
|
||||||
|
| [Waterfox] | 56.2.6 | fails | |
|
||||||
|
|
||||||
## {% linkable_title Android %}
|
## {% linkable_title Android %}
|
||||||
|
|
||||||
@ -87,4 +88,5 @@ There are reports that devices running with iOS prior to iOS 10, especially old
|
|||||||
[Tor Browser]: https://www.torproject.org/
|
[Tor Browser]: https://www.torproject.org/
|
||||||
[Uzbl]: http://www.uzbl.org/
|
[Uzbl]: http://www.uzbl.org/
|
||||||
[w3m]: http://w3m.sourceforge.net/
|
[w3m]: http://w3m.sourceforge.net/
|
||||||
|
[Waterfox]: https://www.waterfoxproject.org
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user