From f5063d6c2ce8ff78d7667c58fc7efd30eece1e8e Mon Sep 17 00:00:00 2001 From: Jesse Hills <3060199+jesserockz@users.noreply.github.com> Date: Wed, 23 Jun 2021 19:39:39 +1200 Subject: [PATCH 1/6] Bump version to v1.19.3 --- Doxygen | 2 +- Makefile | 2 +- _static/version | 2 +- conf.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Doxygen b/Doxygen index 54f62553d..eb1caef4c 100644 --- a/Doxygen +++ b/Doxygen @@ -38,7 +38,7 @@ PROJECT_NAME = "ESPHome" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 1.19.2 +PROJECT_NUMBER = 1.19.3 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/Makefile b/Makefile index d776c23ac..1bc775987 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ ESPHOME_PATH = ../esphome -ESPHOME_REF = v1.19.2 +ESPHOME_REF = v1.19.3 .PHONY: html html-strict cleanhtml deploy help webserver Makefile netlify netlify-api api netlify-dependencies svg2png copy-svg2png diff --git a/_static/version b/_static/version index ac25b2cc7..74ac6bd38 100644 --- a/_static/version +++ b/_static/version @@ -1 +1 @@ -1.19.2 \ No newline at end of file +1.19.3 \ No newline at end of file diff --git a/conf.py b/conf.py index 31bf1be12..adda93946 100644 --- a/conf.py +++ b/conf.py @@ -69,7 +69,7 @@ author = "Otto Winter" # The short X.Y version. version = "1.19" # The full version, including alpha/beta/rc tags. -release = "1.19.2" +release = "1.19.3" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. From 741da8ef44e885d62b7afd967e16d3ad623b386a Mon Sep 17 00:00:00 2001 From: Jesse Hills <3060199+jesserockz@users.noreply.github.com> Date: Wed, 23 Jun 2021 19:40:31 +1200 Subject: [PATCH 2/6] Update changelog for 1.19.3 --- changelog/v1.19.0.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/changelog/v1.19.0.rst b/changelog/v1.19.0.rst index 729cda2d3..b209e64d9 100644 --- a/changelog/v1.19.0.rst +++ b/changelog/v1.19.0.rst @@ -85,6 +85,11 @@ Release 1.19.2 - June 21 - Allow wifi setup to proceed when there is no sta or ap :esphomepr:`1931` by :ghuser:`jesserockz` - Fix bad climate control enum :esphomepr:`1942` by :ghuser:`jesserockz` +Release 1.19.3 - June 23 +------------------------ + +- Bump esphome-dashboard to 20210622.0 :esphomepr:`1955` by :ghuser:`jesserockz` + Full list of changes -------------------- From 3bd1c31f83e7bc44e4f8ade97044ac8117008094 Mon Sep 17 00:00:00 2001 From: Jesse Hills <3060199+jesserockz@users.noreply.github.com> Date: Wed, 23 Jun 2021 19:40:49 +1200 Subject: [PATCH 3/6] Update supporters for 1.19.3 --- guides/supporters.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/guides/supporters.rst b/guides/supporters.rst index 14ad9ed63..4a5c4678f 100644 --- a/guides/supporters.rst +++ b/guides/supporters.rst @@ -251,6 +251,7 @@ Contributors - `Jason Hines (@jasonehines) `__ - `JbLb (@jblb) `__ - `James Callaghan (@jcallaghan) `__ +- `Josh Willox (@jcwillox) `__ - `Joshua Dadswell (@jdads1) `__ - `jeff-h (@jeff-h) `__ - `Jeff Rescignano (@JeffResc) `__ @@ -591,4 +592,4 @@ Contributors - `San (@zhujunsan) `__ - `Christian Zufferey (@zuzu59) `__ -*This page was last updated June 21, 2021.* +*This page was last updated June 23, 2021.* From ae64f94c31dd81727164c8f428cb39de68d29587 Mon Sep 17 00:00:00 2001 From: Jesse Hills <3060199+jesserockz@users.noreply.github.com> Date: Thu, 24 Jun 2021 01:36:54 +1200 Subject: [PATCH 4/6] Replace AUTO with HEAT_COOL (#1270) --- components/climate/index.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/climate/index.rst b/components/climate/index.rst index af5a460d4..57b585a64 100644 --- a/components/climate/index.rst +++ b/components/climate/index.rst @@ -7,7 +7,7 @@ Climate Component ESPHome has support for climate devices. Climate devices can represent different types of hardware, but the defining factor is that climate devices have a settable target temperature -and can be put in different modes like HEAT, COOL, AUTO or OFF. +and can be put in different modes like HEAT, COOL, HEAT_COOL or OFF. .. figure:: images/climate-ui.png :align: center @@ -65,14 +65,14 @@ This is an :ref:`Action ` for setting parameters for climate devi - climate.control: id: my_climate - mode: AUTO + mode: HEAT_COOL target_temperature: 25°C Configuration variables: - **id** (**Required**, :ref:`config-id`): The ID of the climate device to control. - **mode** (*Optional*, string, :ref:`templatable `): Put the climate device - in a specific mode. One of ``OFF``, ``AUTO``, ``COOL`` and ``HEAT``. + in a specific mode. One of ``OFF``, ``HEAT_COOL``, ``COOL`` and ``HEAT``. - **target_temperature** (*Optional*, float, :ref:`templatable `): Set the target temperature of a climate device. - **target_temperature_low** (*Optional*, float, :ref:`templatable `): Set the From 33abdcde3976126796bd57992ecc206720bbadc4 Mon Sep 17 00:00:00 2001 From: haade <76404800+haade-administrator@users.noreply.github.com> Date: Wed, 23 Jun 2021 16:23:51 +0200 Subject: [PATCH 5/6] Update diy.rst (#1261) * Update diy.rst add lines with config github * Update guides/diy.rst * Update guides/diy.rst Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com> --- guides/diy.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/guides/diy.rst b/guides/diy.rst index f1478240f..f61c143c7 100644 --- a/guides/diy.rst +++ b/guides/diy.rst @@ -94,6 +94,7 @@ Sample Configurations - `ESP32 Higrow Plant Moisture Sensor `__ by :ghuser:`WoLpH` - `Send push notification to phone when dryer cycle has finished `__ by :ghuser:`jeffehobbs` - `ESP8266 Smart Sprinkler Project `__ by `Self Hosted Home `__ +- `ESP8266 lysignal Yunshan 7v-30v `__ by :ghuser:`haade-administrator` - `LOHAS RGBW/CWWW Smart bulbs `__ by `digiblurDIY `__ - `ESPHome with MakerLife Weather Station Kit `__ by :ghuser:`mkuoppa` - `ESPHome DIY Multisensor Cat Feeder `__ by :ghuser:`335iguy` From b5ca33fde08a7e27701d1186d3190b858548048e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20S=C3=B8rensen?= Date: Wed, 23 Jun 2021 21:15:47 +0200 Subject: [PATCH 6/6] Override document title for index (#1246) --- _templates/layout.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/_templates/layout.html b/_templates/layout.html index c8b9d9a29..eb07f1a6e 100644 --- a/_templates/layout.html +++ b/_templates/layout.html @@ -36,6 +36,9 @@