mirror of
https://github.com/arendst/Tasmota.git
synced 2025-07-29 13:46:37 +00:00
Merge branch 'development' into tasmota_slave
This commit is contained in:
commit
c72e427da3
2
.github/issue-close-app.yml
vendored
2
.github/issue-close-app.yml
vendored
@ -10,7 +10,7 @@ comment: >-
|
|||||||
Filling the template is required so standard questions don't need to be asked again each time.
|
Filling the template is required so standard questions don't need to be asked again each time.
|
||||||
Our ability to provide assistance is greatly hampered if few minutes are not taken to complete the issue template
|
Our ability to provide assistance is greatly hampered if few minutes are not taken to complete the issue template
|
||||||
with the requested information. The details requested potentially affect which options to pursue. The small amount
|
with the requested information. The details requested potentially affect which options to pursue. The small amount
|
||||||
of time you spend completing the template will also help the volunteers providing the assistance to you, to reduce
|
of time you will spend completing the template will also help the volunteers, providing assistance to you, to reduce
|
||||||
the time required to help you.
|
the time required to help you.
|
||||||
|
|
||||||
Please, could you be so kind on completing the [issue template](https://github.com/arendst/Tasmota/issues/new/choose) in order to have more information so as to properly help you?
|
Please, could you be so kind on completing the [issue template](https://github.com/arendst/Tasmota/issues/new/choose) in order to have more information so as to properly help you?
|
||||||
|
@ -1,7 +1,10 @@
|
|||||||
## Unreleased (development)
|
## Unreleased (development)
|
||||||
|
|
||||||
- TasmotaSlave bugfix for buffer overrun on Tele
|
### 7.1.0.1 20191130
|
||||||
- TasmotaSlave add support for executing commands on Tasmota
|
|
||||||
|
- Fix slider for devices with one or two channels like only white or white/yellow
|
||||||
|
- Fix TasmotaSlave buffer overrun on Tele
|
||||||
|
- Add support for TasmotaSlave executing commands on Tasmota
|
||||||
|
|
||||||
## Released
|
## Released
|
||||||
|
|
||||||
|
@ -20,6 +20,6 @@
|
|||||||
#ifndef _TASMOTA_VERSION_H_
|
#ifndef _TASMOTA_VERSION_H_
|
||||||
#define _TASMOTA_VERSION_H_
|
#define _TASMOTA_VERSION_H_
|
||||||
|
|
||||||
const uint32_t VERSION = 0x07010000;
|
const uint32_t VERSION = 0x07010001;
|
||||||
|
|
||||||
#endif // _TASMOTA_VERSION_H_
|
#endif // _TASMOTA_VERSION_H_
|
||||||
|
@ -154,9 +154,11 @@ const char HTTP_SCRIPT_ROOT[] PROGMEM =
|
|||||||
|
|
||||||
const char HTTP_SCRIPT_ROOT_PART2[] PROGMEM =
|
const char HTTP_SCRIPT_ROOT_PART2[] PROGMEM =
|
||||||
"function lc(v,i,p){"
|
"function lc(v,i,p){"
|
||||||
"if(v=='h'||v=='d'){" // Hue or Brightness changed so change Saturation colors too
|
"if(eb('s')){" // Check if Saturation is in DOM otherwise javascript fails on la()
|
||||||
"var sl=eb('sl4').value;"
|
"if(v=='h'||v=='d'){" // Hue or Brightness changed so change Saturation colors too
|
||||||
"eb('s').style.background='linear-gradient(to right,rgb('+sl+'%%,'+sl+'%%,'+sl+'%%),hsl('+eb('sl2').value+',100%%,50%%))';"
|
"var sl=eb('sl4').value;"
|
||||||
|
"eb('s').style.background='linear-gradient(to right,rgb('+sl+'%%,'+sl+'%%,'+sl+'%%),hsl('+eb('sl2').value+',100%%,50%%))';"
|
||||||
|
"}"
|
||||||
"}"
|
"}"
|
||||||
"la('&'+v+i+'='+p);"
|
"la('&'+v+i+'='+p);"
|
||||||
"}"
|
"}"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user