mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-08 09:56:52 +00:00
Merge branch 'current' into next
This commit is contained in:
commit
d6aed6e1a0
@ -100,9 +100,9 @@ social:
|
||||
|
||||
# Home Assistant release details
|
||||
current_major_version: 0
|
||||
current_minor_version: 102
|
||||
current_patch_version: 3
|
||||
date_released: 2019-11-29
|
||||
current_minor_version: 103
|
||||
current_patch_version: 0
|
||||
date_released: 2019-12-11
|
||||
|
||||
# Either # or the anchor link to latest release notes in the blog post.
|
||||
# Must be prefixed with a # and have double quotes around it.
|
||||
|
@ -10,9 +10,15 @@ $header-subtitle-font-family: $heading-font-family !default;
|
||||
.heading {
|
||||
font-family: $heading-font-family;
|
||||
}
|
||||
.sans { font-family: $sans; }
|
||||
.serif { font-family: $serif; }
|
||||
.mono { font-family: $mono; }
|
||||
.sans {
|
||||
font-family: $sans;
|
||||
}
|
||||
.serif {
|
||||
font-family: $serif;
|
||||
}
|
||||
.mono {
|
||||
font-family: $mono;
|
||||
}
|
||||
|
||||
body > header h1 {
|
||||
font-size: 2.2em;
|
||||
@ -37,75 +43,172 @@ h1 {
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 992px) {
|
||||
body { font-size: 1.15em; }
|
||||
h1 { font-size: 2.6em; line-height: 1.2em; }
|
||||
body {
|
||||
font-size: 1.15em;
|
||||
}
|
||||
h1 {
|
||||
font-size: 2.6em;
|
||||
line-height: 1.2em;
|
||||
}
|
||||
}
|
||||
|
||||
#{headings()}{
|
||||
#{headings()} {
|
||||
@extend .heading;
|
||||
text-rendering: optimizelegibility;
|
||||
margin-bottom: 1em;
|
||||
font-weight: bold;
|
||||
}
|
||||
h2, section h1 {
|
||||
h2,
|
||||
section h1 {
|
||||
font-size: 1.5em;
|
||||
}
|
||||
h3, section h2, section section h1 {
|
||||
h3,
|
||||
section h2,
|
||||
section section h1 {
|
||||
font-size: 1.3em;
|
||||
}
|
||||
h4, section h3, section section h2, section section section h1 {
|
||||
h4,
|
||||
section h3,
|
||||
section section h2,
|
||||
section section section h1 {
|
||||
font-size: 1em;
|
||||
}
|
||||
h5, section h4, section section h3 {
|
||||
font-size: .9em;
|
||||
h5,
|
||||
section h4,
|
||||
section section h3 {
|
||||
font-size: 0.9em;
|
||||
}
|
||||
h6, section h5, section section h4, section section section h3 {
|
||||
font-size: .8em;
|
||||
h6,
|
||||
section h5,
|
||||
section section h4,
|
||||
section section section h3 {
|
||||
font-size: 0.8em;
|
||||
}
|
||||
|
||||
p, article blockquote, ul, ol { margin-bottom: 1.5em; }
|
||||
|
||||
ul { list-style-type: disc;
|
||||
ul { list-style-type: circle; margin-bottom: 0px;
|
||||
ul { list-style-type: square; margin-bottom: 0px; }}}
|
||||
|
||||
ol { list-style-type: decimal;
|
||||
ol { list-style-type: lower-alpha; margin-bottom: 0px;
|
||||
ol { list-style-type: lower-roman; margin-bottom: 0px; }}}
|
||||
|
||||
ul, ol { &, ul, ol { margin-left: 1.3em; }}
|
||||
ul, ol { ul, ol { margin-bottom: 0em; }}
|
||||
|
||||
strong { font-weight: bold; }
|
||||
|
||||
em { font-style: italic; }
|
||||
|
||||
sup, sub { font-size: 0.75em; position: relative; display: inline-block; padding: 0 .2em; line-height: .8em;}
|
||||
sup { top: -.5em; }
|
||||
sub { bottom: -.5em; }
|
||||
|
||||
a[rev='footnote']{ font-size: .75em; padding: 0 .3em; line-height: 1; }
|
||||
|
||||
q { font-style: italic;
|
||||
&:before { content: "\201C"; }
|
||||
&:after { content: "\201D"; }
|
||||
p,
|
||||
article blockquote,
|
||||
ul,
|
||||
ol {
|
||||
margin-bottom: 1.5em;
|
||||
}
|
||||
|
||||
em, dfn { font-style: italic; }
|
||||
ul {
|
||||
list-style-type: disc;
|
||||
ul {
|
||||
list-style-type: circle;
|
||||
margin-bottom: 0px;
|
||||
ul {
|
||||
list-style-type: square;
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
strong, dfn { font-weight: bold; }
|
||||
ol {
|
||||
list-style-type: decimal;
|
||||
ol {
|
||||
list-style-type: lower-alpha;
|
||||
margin-bottom: 0px;
|
||||
ol {
|
||||
list-style-type: lower-roman;
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
del, s { text-decoration: line-through; }
|
||||
ul,
|
||||
ol {
|
||||
&,
|
||||
ul,
|
||||
ol {
|
||||
margin-left: 1.3em;
|
||||
}
|
||||
}
|
||||
ul,
|
||||
ol {
|
||||
ul,
|
||||
ol {
|
||||
margin-bottom: 0em;
|
||||
}
|
||||
}
|
||||
|
||||
abbr, acronym { border-bottom: 1px dotted; cursor: help; }
|
||||
strong {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
pre, code, tt { @extend .mono; }
|
||||
em {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
hr { margin-bottom: 0.2em; }
|
||||
sup,
|
||||
sub {
|
||||
font-size: 0.75em;
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
padding: 0 0.2em;
|
||||
line-height: 0.8em;
|
||||
}
|
||||
sup {
|
||||
top: -0.5em;
|
||||
}
|
||||
sub {
|
||||
bottom: -0.5em;
|
||||
}
|
||||
|
||||
small { font-size: .8em; }
|
||||
a[rev="footnote"] {
|
||||
font-size: 0.75em;
|
||||
padding: 0 0.3em;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
big { font-size: 1.2em; }
|
||||
q {
|
||||
font-style: italic;
|
||||
&:before {
|
||||
content: '"';
|
||||
}
|
||||
&:after {
|
||||
content: '"';
|
||||
}
|
||||
}
|
||||
|
||||
em,
|
||||
dfn {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
strong,
|
||||
dfn {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
del,
|
||||
s {
|
||||
text-decoration: line-through;
|
||||
}
|
||||
|
||||
abbr,
|
||||
acronym {
|
||||
border-bottom: 1px dotted;
|
||||
cursor: help;
|
||||
}
|
||||
|
||||
pre,
|
||||
code,
|
||||
tt {
|
||||
@extend .mono;
|
||||
}
|
||||
|
||||
hr {
|
||||
margin-bottom: 0.2em;
|
||||
}
|
||||
|
||||
small {
|
||||
font-size: 0.8em;
|
||||
}
|
||||
|
||||
big {
|
||||
font-size: 1.2em;
|
||||
}
|
||||
|
||||
article blockquote {
|
||||
$bq-margin: 1.2em;
|
||||
@ -114,11 +217,21 @@ article blockquote {
|
||||
font-size: 1.2em;
|
||||
line-height: 1.5em;
|
||||
padding-left: 1em;
|
||||
border-left: 4px solid rgba($text-color-light, .5);
|
||||
border-left: 4px solid rgba($text-color-light, 0.5);
|
||||
cite {
|
||||
font-style: italic;
|
||||
a { color: $text-color-light !important; word-wrap: break-word; }
|
||||
&:before { content: '\2014'; padding:{right: .3em; left: .3em;} color: $text-color-light; }
|
||||
a {
|
||||
color: $text-color-light !important;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
&:before {
|
||||
content: "\2014";
|
||||
padding: {
|
||||
right: 0.3em;
|
||||
left: 0.3em;
|
||||
}
|
||||
color: $text-color-light;
|
||||
}
|
||||
}
|
||||
@media only screen and (min-width: 992px) {
|
||||
padding-left: 1.5em;
|
||||
@ -138,7 +251,7 @@ article blockquote {
|
||||
/* Pull out to the right, modular scale based margins. */
|
||||
float: right;
|
||||
width: 45%;
|
||||
margin: .5em 0 1em 1.5em;
|
||||
margin: 0.5em 0 1em 1.5em;
|
||||
|
||||
/* Baseline correction */
|
||||
position: relative;
|
||||
@ -150,7 +263,7 @@ article blockquote {
|
||||
.pullquote-left:before {
|
||||
/* Make left pullquotes align properly. */
|
||||
float: left;
|
||||
margin: .5em 1.5em 1em 0;
|
||||
margin: 0.5em 1.5em 1em 0;
|
||||
}
|
||||
|
||||
/* @extend this to force long lines of continuous text to wrap */
|
||||
@ -161,4 +274,3 @@ article blockquote {
|
||||
white-space: pre-wrap;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
|
@ -5,12 +5,11 @@
|
||||
/**
|
||||
* If English quotes are set in `_vars.scss`, define them here.
|
||||
*/
|
||||
@if $english-quotes == true{
|
||||
$open-quote: \201C;
|
||||
$close-quote: \201D;
|
||||
@if $english-quotes == true {
|
||||
$open-quote: '"';
|
||||
$close-quote: '"';
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Big up @boblet: html5doctor.com/blockquote-q-cite
|
||||
*/
|
||||
@ -18,55 +17,52 @@
|
||||
/**
|
||||
* Inline quotes.
|
||||
*/
|
||||
q{
|
||||
quotes:"\2018" "\2019" "#{$open-quote}" "#{$close-quote}";
|
||||
q {
|
||||
quotes: "\2018""\2019""#{$open-quote}""#{$close-quote}";
|
||||
|
||||
&:before{
|
||||
content:"\2018";
|
||||
content:open-quote;
|
||||
}
|
||||
&:after{
|
||||
content:"\2019";
|
||||
content:close-quote;
|
||||
}
|
||||
&:before {
|
||||
content: "\2018";
|
||||
content: open-quote;
|
||||
}
|
||||
&:after {
|
||||
content: "\2019";
|
||||
content: close-quote;
|
||||
}
|
||||
|
||||
q:before{
|
||||
content:"\201C";
|
||||
content:open-quote;
|
||||
}
|
||||
q:after{
|
||||
content:"\201D";
|
||||
content:close-quote;
|
||||
}
|
||||
q:before {
|
||||
content: '"';
|
||||
}
|
||||
q:after {
|
||||
content: '"';
|
||||
}
|
||||
}
|
||||
|
||||
blockquote{
|
||||
quotes:"#{$open-quote}" "#{$close-quote}";
|
||||
blockquote {
|
||||
quotes: "#{$open-quote}""#{$close-quote}";
|
||||
|
||||
p:before{
|
||||
content:"#{$open-quote}";
|
||||
content:open-quote;
|
||||
}
|
||||
p:after{
|
||||
content:"";
|
||||
content:no-close-quote;
|
||||
}
|
||||
p:last-of-type:after{
|
||||
content:"#{$close-quote}";
|
||||
content:close-quote;
|
||||
}
|
||||
p:before {
|
||||
content: "#{$open-quote}";
|
||||
content: open-quote;
|
||||
}
|
||||
p:after {
|
||||
content: "";
|
||||
content: no-close-quote;
|
||||
}
|
||||
p:last-of-type:after {
|
||||
content: "#{$close-quote}";
|
||||
content: close-quote;
|
||||
}
|
||||
|
||||
q:before{
|
||||
content:"\2018";
|
||||
content:open-quote;
|
||||
}
|
||||
q:after{
|
||||
content:"\2019";
|
||||
content:close-quote;
|
||||
}
|
||||
q:before {
|
||||
content: "\2018";
|
||||
content: open-quote;
|
||||
}
|
||||
q:after {
|
||||
content: "\2019";
|
||||
content: close-quote;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
<blockquote>
|
||||
@ -76,22 +72,22 @@ blockquote{
|
||||
</blockquote>
|
||||
*
|
||||
*/
|
||||
blockquote{
|
||||
/**
|
||||
blockquote {
|
||||
/**
|
||||
* .4em is roughly equal to the width of the opening “ that we wish to hang.
|
||||
*/
|
||||
text-indent:-0.41em;
|
||||
text-indent: -0.41em;
|
||||
|
||||
p:last-of-type{
|
||||
margin-bottom:0;
|
||||
}
|
||||
p:last-of-type {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.source{
|
||||
display:block;
|
||||
text-indent:0;
|
||||
.source {
|
||||
display: block;
|
||||
text-indent: 0;
|
||||
|
||||
&:before{
|
||||
content:"\2014";
|
||||
}
|
||||
&:before {
|
||||
content: "\2014";
|
||||
}
|
||||
}
|
||||
|
@ -1,7 +1,6 @@
|
||||
$meta-color: lighten($text-color, 20%);
|
||||
|
||||
article {
|
||||
|
||||
blockquote {
|
||||
@extend .clearfix;
|
||||
border-left: 2px solid $primary-color;
|
||||
@ -24,16 +23,17 @@ article {
|
||||
}
|
||||
}
|
||||
|
||||
.pullquote-left::before, .pullquote-right::before {
|
||||
@media only screen and (max-width: $palm-end){
|
||||
border-top: 1px dotted $primary-color;
|
||||
.pullquote-left::before,
|
||||
.pullquote-right::before {
|
||||
@media only screen and (max-width: $palm-end) {
|
||||
border-top: 1px dotted $primary-color;
|
||||
border-bottom: 1px dotted $primary-color;
|
||||
padding: 0 10px;
|
||||
width: 100%;
|
||||
}
|
||||
border: medium none;
|
||||
color: $primary-color;
|
||||
content: "\201C" attr(data-pullquote) "\201D";
|
||||
content: "\201C"attr(data-pullquote) "\201D";
|
||||
float: right;
|
||||
font-family: $serif;
|
||||
font-size: 1.4em;
|
||||
@ -42,7 +42,7 @@ article {
|
||||
margin: 0.3em 0 1em 1.5em;
|
||||
padding: 0;
|
||||
position: relative;
|
||||
top: 7px;
|
||||
top: 7px;
|
||||
width: 45%;
|
||||
}
|
||||
|
||||
@ -60,7 +60,9 @@ article {
|
||||
a {
|
||||
color: $meta-color;
|
||||
text-decoration: none;
|
||||
&:hover {text-decoration: underline;}
|
||||
&:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -105,7 +107,7 @@ article {
|
||||
}
|
||||
|
||||
&.post {
|
||||
@media only screen and (max-width: $palm-end){
|
||||
@media only screen and (max-width: $palm-end) {
|
||||
.tags {
|
||||
clear: both;
|
||||
margin-top: 7px;
|
||||
|
@ -1,6 +1,7 @@
|
||||
---
|
||||
title: "ATEN Rack PDU"
|
||||
description: "Instructions on how to integrate ATEN Rack PDUs into Home Assistant."
|
||||
logo: aten.png
|
||||
ha_category:
|
||||
- Switch
|
||||
ha_release: 0.103
|
||||
|
@ -1,6 +1,7 @@
|
||||
---
|
||||
title: "flume"
|
||||
description: "Documentation about the flume sensor."
|
||||
logo: flume.jpg
|
||||
ha_category:
|
||||
- Sensor
|
||||
ha_iot_class: Cloud Polling
|
||||
|
@ -324,7 +324,7 @@ The following conditions are available by device:
|
||||
|
||||
<div class='note warning'>
|
||||
|
||||
This feature is not designed to transfer your Home Assistant to a security system, neither Home Assistant nor Nest be liable to You for damages,
|
||||
This feature is not designed to transform your Home Assistant into a security system, neither Home Assistant nor Nest be liable to You for damages,
|
||||
or consequential damages of any character arising as a result of use this feature.
|
||||
|
||||
This feature does not depend on the [Nest Secure alarm system](https://nest.com/alarm-system/overview/) and is not a reflection of the status of that system,
|
||||
|
@ -76,5 +76,5 @@ monitored_conditions:
|
||||
total_download:
|
||||
description: Total bandwidth upload (Grace + Used) (gigabytes).
|
||||
used_remaining:
|
||||
description: Remaining bandwidth calucated from used and supplied total bandwidth (gigabytes).
|
||||
description: Remaining bandwidth calculated from used and supplied total bandwidth (gigabytes).
|
||||
{% endconfiguration %}
|
||||
|
1707
source/_posts/2019-12-11-release-103.markdown
Normal file
1707
source/_posts/2019-12-11-release-103.markdown
Normal file
File diff suppressed because it is too large
Load Diff
BIN
source/images/blog/2019-12-0.103/automation-actions.png
Normal file
BIN
source/images/blog/2019-12-0.103/automation-actions.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 55 KiB |
BIN
source/images/blog/2019-12-0.103/automation-yaml.png
Normal file
BIN
source/images/blog/2019-12-0.103/automation-yaml.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 41 KiB |
BIN
source/images/blog/2019-12-0.103/components.png
Normal file
BIN
source/images/blog/2019-12-0.103/components.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 44 KiB |
BIN
source/images/blog/2019-12-0.103/natural-language-area.png
Normal file
BIN
source/images/blog/2019-12-0.103/natural-language-area.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 24 KiB |
BIN
source/images/supported_brands/aten.png
Normal file
BIN
source/images/supported_brands/aten.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.2 KiB |
BIN
source/images/supported_brands/flume.jpg
Normal file
BIN
source/images/supported_brands/flume.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 11 KiB |
Loading…
x
Reference in New Issue
Block a user