Merge pull request #1255 from esphome/bump-1.19.0b7

1.19.0b7
This commit is contained in:
Jesse Hills 2021-06-17 05:55:35 +12:00 committed by GitHub
commit aa0b3f4284
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
9 changed files with 80 additions and 35 deletions

View File

@ -0,0 +1,27 @@
// https://github.com/microsoft/vscode-dev-containers/tree/v0.183.0/containers/python-3
{
"name": "ESPHome - docs",
"image": "mcr.microsoft.com/vscode/devcontainers/python:0-3.6",
"postCreateCommand": "pip3 install -r requirements.txt",
"forwardPorts": [8000],
"settings": {
"python.pythonPath": "/usr/local/bin/python",
"python.languageServer": "Pylance",
"python.linting.enabled": true,
"python.linting.pylintEnabled": true,
"python.formatting.autopep8Path": "/usr/local/py-utils/bin/autopep8",
"python.formatting.blackPath": "/usr/local/py-utils/bin/black",
"python.formatting.yapfPath": "/usr/local/py-utils/bin/yapf",
"python.linting.banditPath": "/usr/local/py-utils/bin/bandit",
"python.linting.flake8Path": "/usr/local/py-utils/bin/flake8",
"python.linting.mypyPath": "/usr/local/py-utils/bin/mypy",
"python.linting.pycodestylePath": "/usr/local/py-utils/bin/pycodestyle",
"python.linting.pydocstylePath": "/usr/local/py-utils/bin/pydocstyle",
"python.linting.pylintPath": "/usr/local/py-utils/bin/pylint"
},
"extensions": [
"ms-python.python",
"ms-python.vscode-pylance"
]
}

View File

@ -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.0b6
PROJECT_NUMBER = 1.19.0b7
# 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

View File

@ -1,5 +1,5 @@
ESPHOME_PATH = ../esphome
ESPHOME_REF = v1.19.0b6
ESPHOME_REF = v1.19.0b7
.PHONY: html html-strict cleanhtml deploy help webserver Makefile netlify netlify-api api netlify-dependencies svg2png copy-svg2png
@ -21,14 +21,16 @@ help:
api:
mkdir -p _build/html/api
@if [ ! -d "$(ESPHOME_PATH)" ]; then \
git clone --branch $(ESPHOME_REF) https://github.com/esphome/esphome.git $(ESPHOME_PATH); \
git clone --branch $(ESPHOME_REF) https://github.com/esphome/esphome.git $(ESPHOME_PATH) || \
git clone --branch beta https://github.com/esphome/esphome.git $(ESPHOME_PATH); \
fi
ESPHOME_PATH=$(ESPHOME_PATH) doxygen Doxygen
netlify-api: netlify-dependencies
mkdir -p _build/html/api
@if [ ! -d "$(ESPHOME_PATH)" ]; then \
git clone --branch $(ESPHOME_REF) https://github.com/esphome/esphome.git $(ESPHOME_PATH); \
git clone --branch $(ESPHOME_REF) https://github.com/esphome/esphome.git $(ESPHOME_PATH) || \
git clone --branch beta https://github.com/esphome/esphome.git $(ESPHOME_PATH); \
fi
ESPHOME_PATH=$(ESPHOME_PATH) ../doxybin/doxygen Doxygen

View File

@ -9,6 +9,10 @@ div.document {
margin-bottom: 50px;
}
div.body {
min-width: initial;
}
img.component-image {
border: none;
vertical-align: middle;
@ -37,7 +41,7 @@ table.docutils {
}
100% {
visibility: visible;
}
}
}
@keyframes blink_effect {
0% {
@ -57,14 +61,14 @@ table.docutils {
bottom: 0;
right: 0;
width: 100%;
background-color: rgba(20,20,20,0.8);
background-color: rgba(20, 20, 20, 0.8);
min-height: 26px;
font-size: 14px;
color: #ccc;
line-height: 26px;
padding: 8px 0 8px 30px;
z-index: 9999;
display: none
display: none;
}
.footer-button-container {
margin: 0 60px 0 10px;
@ -118,7 +122,6 @@ div.index-shields {
margin-right: auto;
}
.guide-container {
margin: 32px 0;
display: flex;
@ -126,18 +129,15 @@ div.index-shields {
}
.guide-card {
color: #004B6B;
color: #004b6b;
display: block;
height: auto;
width: 300px;
background-color: #f3f6f6;
border-radius: 8px;
box-shadow: -10px 10px 32px -12px #000;
box-shadow: 4px 4px 8px -4px #00000075;
padding-bottom: 8px;
}
.guide-card:not(:first-child) {
margin-left: -40px;
box-sizing: border-box;
}
.guide-card-title {
@ -152,14 +152,28 @@ div.index-shields {
white-space: pre-line;
}
@media screen and (min-width: 870px) {
.guide-card:first-child {
z-index: 100;
}
.guide-card:nth-child(2) {
z-index: 50;
}
.guide-card:not(:first-child) {
margin-left: -40px;
padding-left: 40px;
}
}
@media screen and (max-width: 870px) {
.guide-container {
flex-direction: column-reverse;
.guide-container {
flex-direction: column;
}
.guide-card {
width: 100%;
margin: 8px 0;
padding: 0px;
}
.guide-card:not(:first-child) {
margin-left: 0;
@ -167,4 +181,4 @@ div.index-shields {
.guide-card ul {
margin-left: 32px;
}
}
}

View File

@ -1 +1 @@
1.19.0b6
1.19.0b7

View File

@ -52,6 +52,7 @@ Beta Fixes
- fixes compatibility with esphome cfg vscode :esphomepr:`1911` by :ghuser:`glmnet`
- Bump dashboard to 20210615.0 :esphomepr:`1918` by :ghuser:`balloob`
- Shorten the ble name to prevent crash with long device names :esphomepr:`1920` by :ghuser:`jesserockz`
- Fix update-all from dashboard :esphomepr:`1924` by :ghuser:`frenck`
Notable Changes
---------------
@ -142,6 +143,7 @@ All changes
- Allow setting creator project name and version into code :esphomepr:`1872` by :ghuser:`jesserockz`
- Add platform and board to mdns response when API is used :esphomepr:`1871` by :ghuser:`jesserockz`
- Update ``total_pulses_`` at every detected pulse :esphomepr:`1875` by :ghuser:`rklomp`
- Fix update-all from dashboard :esphomepr:`1924` by :ghuser:`frenck`
Past Changelogs
---------------

View File

@ -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.0b6"
release = "1.19.0b7"
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View File

@ -587,4 +587,4 @@ Contributors
- `San (@zhujunsan) <https://github.com/zhujunsan>`__
- `Christian Zufferey (@zuzu59) <https://github.com/zuzu59>`__
*This page was last updated June 16, 2021.*
*This page was last updated June 17, 2021.*

View File

@ -17,27 +17,27 @@ ESPHome is a system to control your ESP8266/ESP32 by simple yet powerful configu
<div class="guide-container">
<div class="guide-card">
<h3 class="guide-card-title">Keeping up</h3>
<h3 class="guide-card-title">Getting started</h3>
<ul>
<li>
<a class="reference" href="/changelog/index.html">
Changelog
<a class="reference" href="/guides/getting_started_hassio.html">
ESPHome Dashboard
</a>
</li>
<li>
<a class="reference" href="/guides/supporters.html">
Supporters
<a class="reference" href="/guides/getting_started_command_line.html">
Command Line Interface
</a>
</li>
<li>
<a class="reference" href="/guides/contributing.html">
Contributing
<a class="reference" href="/guides/migrate_sonoff_tasmota.html">
Migrating from Tasmota
</a>
</li>
</ul>
<pre class="guide-code">
esphome:
&nbsp;&nbsp;name: Awesome
&nbsp;&nbsp;name: awesome
&nbsp;&nbsp;platform: ESP32
&nbsp;&nbsp;board: nodemcu-32s
</pre>
@ -68,21 +68,21 @@ ESPHome is a system to control your ESP8266/ESP32 by simple yet powerful configu
</ul>
</div>
<div class="guide-card">
<h3 class="guide-card-title">Getting started</h3>
<h3 class="guide-card-title">Keeping up</h3>
<ul>
<li>
<a class="reference" href="/guides/getting_started_hassio.html">
ESPHome Dashboard
<a class="reference" href="/changelog/index.html">
Changelog
</a>
</li>
<li>
<a class="reference" href="/guides/getting_started_command_line.html">
Command Line Interface
<a class="reference" href="/guides/supporters.html">
Supporters
</a>
</li>
<li>
<a class="reference" href="/guides/migrate_sonoff_tasmota.html">
Migrating from Tasmota
<a class="reference" href="/guides/contributing.html">
Contributing
</a>
</li>
</ul>