mirror of
https://github.com/esphome/esphome-docs.git
synced 2025-01-13 20:11:53 +01:00
Merge branch 'beta' into bump-1.19.0
This commit is contained in:
commit
43ee8db10f
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -119,6 +119,7 @@ Beta Fixes
|
||||
- fixes compatibility with esphome cfg vscode :esphomepr:`1911` by :ghuser:`glmnet` (cherry-picked)
|
||||
- Bump dashboard to 20210615.0 :esphomepr:`1918` by :ghuser:`balloob` (cherry-picked)
|
||||
- Shorten the ble name to prevent crash with long device names :esphomepr:`1920` by :ghuser:`jesserockz` (cherry-picked)
|
||||
- Fix update-all from dashboard :esphomepr:`1924` by :ghuser:`frenck`
|
||||
|
||||
All changes
|
||||
^^^^^^^^^^^
|
||||
@ -203,10 +204,7 @@ All changes
|
||||
- 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`
|
||||
- Simplify LightCall validation :esphomepr:`1874` by :ghuser:`oxan` (cherry-picked)
|
||||
- Simplify LightCall validation :esphomepr:`1874` by :ghuser:`oxan` (cherry-picked)
|
||||
- BLE loop use :esphomepr:`1882` by :ghuser:`jesserockz` (cherry-picked)
|
||||
- BLE loop use :esphomepr:`1882` by :ghuser:`jesserockz` (cherry-picked)
|
||||
- Add support for waveshare_epaper 1.54v2 :esphomepr:`1843` by :ghuser:`geoffdavis` (cherry-picked)
|
||||
- Add support for waveshare_epaper 1.54v2 :esphomepr:`1843` by :ghuser:`geoffdavis` (cherry-picked)
|
||||
- Update ambiguous command :esphomepr:`1889` by :ghuser:`jesserockz`
|
||||
- Configure clang-format for consistent pointer alignment :esphomepr:`1890` by :ghuser:`OttoWinter`
|
||||
@ -214,26 +212,20 @@ All changes
|
||||
- Avoid non-const globals and enable clang-tidy check :esphomepr:`1892` by :ghuser:`agners`
|
||||
- Convert st7735.cpp to use Unix line separators :esphomepr:`1894` by :ghuser:`oxan`
|
||||
- Ensure wifi is in at least station mode before starting improv :esphomepr:`1899` by :ghuser:`jesserockz` (cherry-picked)
|
||||
- Ensure wifi is in at least station mode before starting improv :esphomepr:`1899` by :ghuser:`jesserockz` (cherry-picked)
|
||||
- Move esp32_ble_server to its own component :esphomepr:`1898` by :ghuser:`jesserockz` (breaking-change) (cherry-picked) (new-integration)
|
||||
- Move esp32_ble_server to its own component :esphomepr:`1898` by :ghuser:`jesserockz` (breaking-change) (cherry-picked) (new-integration)
|
||||
- Add new wizard + allow installing firmware over webserial :esphomepr:`1887` by :ghuser:`balloob` (cherry-picked)
|
||||
- Add new wizard + allow installing firmware over webserial :esphomepr:`1887` by :ghuser:`balloob` (cherry-picked)
|
||||
- Split files in light component :esphomepr:`1893` by :ghuser:`oxan`
|
||||
- Fix CI by avoiding non-const global :esphomepr:`1907` by :ghuser:`oxan`
|
||||
- Adds support cpp to vscode :esphomepr:`1828` by :ghuser:`dentra`
|
||||
- Allow no networks or AP to be set. :esphomepr:`1908` by :ghuser:`jesserockz` (cherry-picked)
|
||||
- Allow no networks or AP to be set. :esphomepr:`1908` by :ghuser:`jesserockz` (cherry-picked)
|
||||
- Validate that either networks, ap, or improv is set up :esphomepr:`1910` by :ghuser:`jesserockz` (cherry-picked)
|
||||
- Validate that either networks, ap, or improv is set up :esphomepr:`1910` by :ghuser:`jesserockz` (cherry-picked)
|
||||
- Support ESP8266 Arduino 3.0.0 :esphomepr:`1897` by :ghuser:`agners`
|
||||
- Bump frontend to 20210614.0 :esphomepr:`1912` by :ghuser:`balloob` (cherry-picked)
|
||||
- Bump frontend to 20210614.0 :esphomepr:`1912` by :ghuser:`balloob` (cherry-picked)
|
||||
- Run script/setup in devcontainer instead of pip install :esphomepr:`1913` by :ghuser:`OttoWinter`
|
||||
- fixes compatibility with esphome cfg vscode :esphomepr:`1911` by :ghuser:`glmnet` (cherry-picked)
|
||||
- fixes compatibility with esphome cfg vscode :esphomepr:`1911` by :ghuser:`glmnet` (cherry-picked)
|
||||
- Bump dashboard to 20210615.0 :esphomepr:`1918` by :ghuser:`balloob` (cherry-picked)
|
||||
- Shorten the ble name to prevent crash with long device names :esphomepr:`1920` by :ghuser:`jesserockz` (cherry-picked)
|
||||
- Fix update-all from dashboard :esphomepr:`1924` by :ghuser:`frenck`
|
||||
|
||||
Past Changelogs
|
||||
---------------
|
||||
|
@ -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.*
|
||||
|
30
index.rst
30
index.rst
@ -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:
|
||||
name: Awesome
|
||||
name: awesome
|
||||
platform: ESP32
|
||||
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>
|
||||
|
Loading…
Reference in New Issue
Block a user