Update for Speech corrections. New version and some deprecation chnges.
This commit is contained in:
parent
d4599cbf5f
commit
0314ddf9ef
|
@ -1 +1 @@
|
||||||
2021.3.2
|
2021.4.3
|
|
@ -63,7 +63,7 @@
|
||||||
|
|
||||||
- service: script.speech_engine
|
- service: script.speech_engine
|
||||||
data:
|
data:
|
||||||
value1: "It is getting a little dark inside the house because of the {{trigger.entity_id.split('_')[2]|replace('precip','rain')|replace('counter','lightning') }} {{trigger.entity_id.split('_')[3]|replace('intensity',' ')}} outside. I will turn on some extra lights in the living room."
|
value1: "It is getting a little dark inside the house because of the {{trigger.entity_id.split('_')[2]|replace('precip','rain')|replace('counter','lightning')|replace('carlo','rain') }} {{trigger.entity_id.split('_')[3]|replace('intensity',' ')| replace('carlo','and clouds')}} outside. I will turn on some extra lights in the living room."
|
||||||
call_window_check: 1
|
call_window_check: 1
|
||||||
call_garage_check: 1
|
call_garage_check: 1
|
||||||
|
|
||||||
|
|
|
@ -91,7 +91,6 @@ frontend:
|
||||||
discovery:
|
discovery:
|
||||||
|
|
||||||
updater:
|
updater:
|
||||||
include_used_components: true
|
|
||||||
|
|
||||||
sun:
|
sun:
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
# Read all about this and more at https://vCloudInfo.com
|
# Read all about this and more at https://vCloudInfo.com
|
||||||
# HomeKit control file.
|
# HomeKit control file.
|
||||||
######################################################################################################
|
######################################################################################################
|
||||||
# auto_start: false
|
|
||||||
filter:
|
filter:
|
||||||
include_domains:
|
include_domains:
|
||||||
- climate
|
- climate
|
||||||
|
|
File diff suppressed because one or more lines are too long
Binary file not shown.
|
@ -0,0 +1,24 @@
|
||||||
|
import nodeResolve from "@rollup/plugin-node-resolve";
|
||||||
|
import json from "@rollup/plugin-json";
|
||||||
|
import typescript from "rollup-plugin-typescript2";
|
||||||
|
import { terser } from "rollup-plugin-terser";
|
||||||
|
import babel from "@rollup/plugin-babel";
|
||||||
|
|
||||||
|
const dev = process.env.ROLLUP_WATCH;
|
||||||
|
|
||||||
|
export default {
|
||||||
|
input: "src/main.ts",
|
||||||
|
output: {
|
||||||
|
file: "auto-entities.js",
|
||||||
|
format: "es",
|
||||||
|
},
|
||||||
|
plugins: [
|
||||||
|
nodeResolve(),
|
||||||
|
json(),
|
||||||
|
typescript(),
|
||||||
|
babel({
|
||||||
|
exclude: "node_modules/**",
|
||||||
|
}),
|
||||||
|
!dev && terser({ format: { comments: false } }),
|
||||||
|
],
|
||||||
|
};
|
Binary file not shown.
|
@ -1,10 +0,0 @@
|
||||||
const path = require('path')
|
|
||||||
|
|
||||||
module.exports = {
|
|
||||||
entry: './src/main.js',
|
|
||||||
mode: 'production',
|
|
||||||
output: {
|
|
||||||
filename: 'auto-entities.js',
|
|
||||||
path: path.resolve(__dirname)
|
|
||||||
}
|
|
||||||
}
|
|
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
Before Width: | Height: | Size: 62 KiB After Width: | Height: | Size: 62 KiB |
Loading…
Reference in New Issue