Skip to content
This repository was archived by the owner on Feb 24, 2021. It is now read-only.

Commit dea2eb6

Browse files
Merge master into dependabot/npm_and_yarn/master/material-design-icons-iconfont-6.1.0
2 parents d970fd1 + a44e6a1 commit dea2eb6

File tree

12 files changed

+1013
-151
lines changed

12 files changed

+1013
-151
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,22 @@ All notable changes to this project will be documented in this file. Dates are d
44

55
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
66

7+
#### [v4.0.6](https://github.com/OpenZWave/Zwave2Mqtt/compare/v4.0.5...v4.0.6)
8+
9+
> 4 November 2020
10+
11+
- feat(ui): save items per page in local storage [`#816`](https://github.com/OpenZWave/Zwave2Mqtt/pull/816)
12+
- chore(deps): bump chrisns/openzwave in /docker [`#815`](https://github.com/OpenZWave/Zwave2Mqtt/pull/815)
13+
- fix(hass): misuse drying state for Full Power mode [`#775`](https://github.com/OpenZWave/Zwave2Mqtt/pull/775)
14+
- chore(deps): bump actions/setup-node from v1 to v2.1.2 [`#768`](https://github.com/OpenZWave/Zwave2Mqtt/pull/768)
15+
- chore(deps): bump prismjs from 1.21.0 to 1.22.0 [`#778`](https://github.com/OpenZWave/Zwave2Mqtt/pull/778)
16+
- chore(deps): bump socket.io-client from 2.3.0 to 2.3.1 [`#759`](https://github.com/OpenZWave/Zwave2Mqtt/pull/759)
17+
- chore(deps): bump pascalgn/automerge-action from v0.11.0 to v0.12.0 [`#772`](https://github.com/OpenZWave/Zwave2Mqtt/pull/772)
18+
- fix(ui): vuetify deprecation `.native` [`#797`](https://github.com/OpenZWave/Zwave2Mqtt/pull/797)
19+
- feat(hass): add deviceId '881-21-2' for Eurotronic Spirit Z-Wave Plus device [`#799`](https://github.com/OpenZWave/Zwave2Mqtt/pull/799)
20+
- fix: update last active on value changes [`#798`](https://github.com/OpenZWave/Zwave2Mqtt/pull/798)
21+
- fix: allow `/` char in name and location #790 [`#796`](https://github.com/OpenZWave/Zwave2Mqtt/pull/796)
22+
723
#### [v4.0.5](https://github.com/OpenZWave/Zwave2Mqtt/compare/v4.0.4...v4.0.5)
824

925
> 16 October 2020
@@ -26,6 +42,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
2642
- docker: update ozw to version 1.6.1382 [`#748`](https://github.com/OpenZWave/Zwave2Mqtt/pull/748)
2743
- feat(hass): Eurotronic Stella Z thermostat [`#746`](https://github.com/OpenZWave/Zwave2Mqtt/pull/746)
2844
- fix: Rows per page not set correctly (#793) [`#792`](https://github.com/OpenZWave/Zwave2Mqtt/issues/792)
45+
- Release 4.0.5 [`43601f5`](https://github.com/OpenZWave/Zwave2Mqtt/commit/43601f51ac2b8d52a7269f8caf7d20d66398af26)
2946
- fix tag list composition [`55e0dc0`](https://github.com/OpenZWave/Zwave2Mqtt/commit/55e0dc0b69bd212130305989793037c33e588383)
3047
- fix tag list composition [`50cf1ad`](https://github.com/OpenZWave/Zwave2Mqtt/commit/50cf1add8ed6d52b90898c0fcd78cc9f90d5a63f)
3148
- fix tag list composition [`0e95d46`](https://github.com/OpenZWave/Zwave2Mqtt/commit/0e95d46235559c735e142b908c6f55a14a5753b5)

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ----------------
22
# STEP 1:
3-
FROM chrisns/openzwave:alpine-1.6.1392 as ozw
3+
FROM chrisns/openzwave:alpine-1.6.1545 as ozw
44

55
# ----------------
66
# STEP 2:

hass/devices.js

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,13 +87,22 @@ const SPIRIT_ZWAVE_PLUS = {
8787
type: 'climate',
8888
object_id: 'thermostat',
8989
values: ['64-1-0', '49-1-1', '67-1-1', '67-1-11'],
90-
mode_map: { off: 'Off', heat: 'Heat', cool: 'Heat Eco' },
91-
setpoint_topic: { Heat: '67-1-1', 'Heat Eco': '67-1-11' },
90+
mode_map: {
91+
off: 'Off',
92+
heat: 'Heat',
93+
cool: 'Heat Eco',
94+
drying: 'Full Power'
95+
},
96+
setpoint_topic: {
97+
Heat: '67-1-1',
98+
'Heat Eco': '67-1-11',
99+
'Full Power': '67-1-1'
100+
},
92101
default_setpoint: '67-1-1',
93102
discovery_payload: {
94103
min_temp: 8,
95104
max_temp: 28,
96-
modes: ['off', 'heat', 'cool'],
105+
modes: ['off', 'heat', 'cool', 'drying'],
97106
mode_state_topic: '64-1-0',
98107
mode_command_topic: true,
99108
current_temperature_topic: '49-1-1',

0 commit comments

Comments
 (0)