mirror of
https://github.com/esphome/esphome-docs.git
synced 2025-01-11 20:02:12 +01:00
commit
6ed16a936e
2
Doxygen
2
Doxygen
@ -38,7 +38,7 @@ PROJECT_NAME = "ESPHome"
|
|||||||
# could be handy for archiving the generated documentation or if some version
|
# could be handy for archiving the generated documentation or if some version
|
||||||
# control system is used.
|
# control system is used.
|
||||||
|
|
||||||
PROJECT_NUMBER = 2021.9.0b1
|
PROJECT_NUMBER = 2021.9.0b2
|
||||||
|
|
||||||
# Using the PROJECT_BRIEF tag one can provide an optional one line description
|
# 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
|
# for a project that appears at the top of each page and should give viewer a
|
||||||
|
2
Makefile
2
Makefile
@ -1,5 +1,5 @@
|
|||||||
ESPHOME_PATH = ../esphome
|
ESPHOME_PATH = ../esphome
|
||||||
ESPHOME_REF = 2021.9.0b1
|
ESPHOME_REF = 2021.9.0b2
|
||||||
|
|
||||||
.PHONY: html html-strict cleanhtml deploy help webserver Makefile netlify netlify-api api netlify-dependencies svg2png copy-svg2png
|
.PHONY: html html-strict cleanhtml deploy help webserver Makefile netlify netlify-api api netlify-dependencies svg2png copy-svg2png
|
||||||
|
|
||||||
|
@ -1 +1 @@
|
|||||||
2021.9.0b1
|
2021.9.0b2
|
@ -36,9 +36,6 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<script>
|
<script>
|
||||||
if (window.location.pathname === "/") {
|
|
||||||
window.document.title = "ESPHome"
|
|
||||||
}
|
|
||||||
var old = window.localStorage.getItem("version");
|
var old = window.localStorage.getItem("version");
|
||||||
if (old === null) { window.localStorage.setItem("version", "{{ version }}");
|
if (old === null) { window.localStorage.setItem("version", "{{ version }}");
|
||||||
} else if (old !== "{{ version }}") {
|
} else if (old !== "{{ version }}") {
|
||||||
|
@ -23,6 +23,12 @@ API Encryption
|
|||||||
will need to upgrade their client libraries (e.g. ``aioesphomeapi``) before they can connect and communicate to
|
will need to upgrade their client libraries (e.g. ``aioesphomeapi``) before they can connect and communicate to
|
||||||
devices with encryption. This is scheduled to be available in Home Assistant 2021.10.
|
devices with encryption. This is scheduled to be available in Home Assistant 2021.10.
|
||||||
|
|
||||||
|
Git Packages
|
||||||
|
------------
|
||||||
|
|
||||||
|
:ref:`Packages<config-git_packages>` have been extended to allow loading (multiple) YAML file(s) from a git repo.
|
||||||
|
Take a look at the examples to see how to use them.
|
||||||
|
|
||||||
Midea AC
|
Midea AC
|
||||||
--------
|
--------
|
||||||
|
|
||||||
@ -65,6 +71,12 @@ Breaking Changes
|
|||||||
- Remove last_reset_type and convert all those sensors to TOTAL_INCREASING :esphomepr:`2233` by :ghuser:`jesserockz` (breaking-change)
|
- Remove last_reset_type and convert all those sensors to TOTAL_INCREASING :esphomepr:`2233` by :ghuser:`jesserockz` (breaking-change)
|
||||||
- Midea support v2 :esphomepr:`2188` by :ghuser:`dudanov` (breaking-change)
|
- Midea support v2 :esphomepr:`2188` by :ghuser:`dudanov` (breaking-change)
|
||||||
|
|
||||||
|
Beta Fixes
|
||||||
|
^^^^^^^^^^
|
||||||
|
|
||||||
|
- Fix a few ESP32-C3 compiler issues :esphomepr:`2265` by :ghuser:`jesserockz`
|
||||||
|
- sm300d2: Accept (undocumented) 0x80 checksum offset. :esphomepr:`2263` by :ghuser:`poptix`
|
||||||
|
|
||||||
All changes
|
All changes
|
||||||
^^^^^^^^^^^
|
^^^^^^^^^^^
|
||||||
|
|
||||||
@ -131,6 +143,8 @@ All changes
|
|||||||
- pm1006: add support for sending a measurement request :esphomepr:`2214` by :ghuser:`Habbie`
|
- pm1006: add support for sending a measurement request :esphomepr:`2214` by :ghuser:`Habbie`
|
||||||
- SGP40 sensor start-up fix :esphomepr:`2178` by :ghuser:`kbx81`
|
- SGP40 sensor start-up fix :esphomepr:`2178` by :ghuser:`kbx81`
|
||||||
- PMSA003i Update state_class and async :esphomepr:`2216` by :ghuser:`sjtrny`
|
- PMSA003i Update state_class and async :esphomepr:`2216` by :ghuser:`sjtrny`
|
||||||
|
- Fix a few ESP32-C3 compiler issues :esphomepr:`2265` by :ghuser:`jesserockz`
|
||||||
|
- sm300d2: Accept (undocumented) 0x80 checksum offset. :esphomepr:`2263` by :ghuser:`poptix`
|
||||||
|
|
||||||
Past Changelogs
|
Past Changelogs
|
||||||
---------------
|
---------------
|
||||||
|
2
conf.py
2
conf.py
@ -69,7 +69,7 @@ author = "Otto Winter"
|
|||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
version = "2021.9"
|
version = "2021.9"
|
||||||
# The full version, including alpha/beta/rc tags.
|
# The full version, including alpha/beta/rc tags.
|
||||||
release = "2021.9.0b1"
|
release = "2021.9.0b2"
|
||||||
|
|
||||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||||
# for a list of supported languages.
|
# for a list of supported languages.
|
||||||
|
@ -349,11 +349,14 @@ merged with the services definitions from main config file.
|
|||||||
switch:
|
switch:
|
||||||
- !include common/switch/restart_switch.config.yaml
|
- !include common/switch/restart_switch.config.yaml
|
||||||
|
|
||||||
|
.. _config-git_packages:
|
||||||
|
|
||||||
Remote/git Packages
|
Remote/git Packages
|
||||||
*******************
|
*******************
|
||||||
|
|
||||||
Packages can also be loaded from a git repository by utilizing the correct config syntax.
|
Packages can also be loaded from a git repository by utilizing the correct config syntax.
|
||||||
|
:ref:`config-substitutions` can be used inside the remote packages which allows users to override
|
||||||
|
them locally with their own subsitution value.
|
||||||
|
|
||||||
.. code-block:: yaml
|
.. code-block:: yaml
|
||||||
|
|
||||||
|
@ -508,6 +508,7 @@ Contributors
|
|||||||
- `Marcus Kempe (@plopp) <https://github.com/plopp>`__
|
- `Marcus Kempe (@plopp) <https://github.com/plopp>`__
|
||||||
- `DK (@poldim) <https://github.com/poldim>`__
|
- `DK (@poldim) <https://github.com/poldim>`__
|
||||||
- `polyfaces (@polyfaces) <https://github.com/polyfaces>`__
|
- `polyfaces (@polyfaces) <https://github.com/polyfaces>`__
|
||||||
|
- `poptix (@poptix) <https://github.com/poptix>`__
|
||||||
- `Iván Povedano (@pove) <https://github.com/pove>`__
|
- `Iván Povedano (@pove) <https://github.com/pove>`__
|
||||||
- `pplucky (@pplucky) <https://github.com/pplucky>`__
|
- `pplucky (@pplucky) <https://github.com/pplucky>`__
|
||||||
- `probonopd (@probonopd) <https://github.com/probonopd>`__
|
- `probonopd (@probonopd) <https://github.com/probonopd>`__
|
||||||
@ -697,4 +698,4 @@ Contributors
|
|||||||
- `ZTX18 (@ZTX18) <https://github.com/ZTX18>`__
|
- `ZTX18 (@ZTX18) <https://github.com/ZTX18>`__
|
||||||
- `Christian Zufferey (@zuzu59) <https://github.com/zuzu59>`__
|
- `Christian Zufferey (@zuzu59) <https://github.com/zuzu59>`__
|
||||||
|
|
||||||
*This page was last updated September 9, 2021.*
|
*This page was last updated September 10, 2021.*
|
||||||
|
Loading…
Reference in New Issue
Block a user