Changelog update

This commit is contained in:
Theo Arends 2019-12-09 15:15:16 +01:00
parent 6a73d28876
commit dfee90bd61
4 changed files with 20 additions and 11 deletions

View File

@ -1,20 +1,29 @@
## Unreleased (development) ## Unreleased (development)
### 7.1.2.4 20191209
- Change HTTP CORS from command ``SetOption73 0/1`` to ``Cors <cors_domain>`` allowing user control of specific CORS domain by Shantur Rathore (#7066)
- Add Wifi Signal Strength in dBm in addition to RSSI Wifi Experience by Andreas Schultz (#7145)
- Add Yaw, Pitch and Roll support for MPU6050 by Philip Barclay (#7058)
### 7.1.2.3 20191208 ### 7.1.2.3 20191208
- Redesign Exception reporting removing exception details from both MQTT info and Status 1. Now consolidated in Status 12 if available. - Redesign Exception reporting removing exception details from both MQTT info and Status 1. Now consolidated in Status 12 if available.
### 7.1.2.2 20191206 ### 7.1.2.2 20191206
- Add command ``SerialConfig 0..23`` or ``SerialConfig 8N1`` to select Serial Config (#7108) - Remove rule trigger ``tele_power1#state`` due to compatibility
- Add save call stack in RTC memory in case of crash, command ``Status 12`` to dump the stack - Add command ``SerialConfig 0..23`` or ``SerialConfig 8N1`` to select Serial Config based in PR by Luis Teixeira (#7108)
- Add save call stack in RTC memory in case of crash, command ``Status 12`` to dump the stack by Stefan Hadinger
- Add Home Assistant force update by Frederico Leoni (#7140, #7074)
### 7.1.2.1 20191206 ### 7.1.2.1 20191206
- Add rule var ``%topic%`` (#5522) - Add SML bus decoder syntax support for byte order by Gerhard Mutz (#7112)
- Add rule triggers ``tele_power1#state`` and multiple ``tele-wifi1#xxx`` (#7093) - Add rule var ``%topic%`` by Adrian Scillato (#5522)
- Add experimental support for stepper motor shutter control - Add rule triggers ``tele_power1#state`` and multiple ``tele-wifi1#xxx`` by Adrian Scillato (#7093)
- Add optional USE_MQTT_TLS to tasmota-minimal.bin (#7115) - Add experimental support for stepper motor shutter control by Stefan Bode
- Add optional USE_MQTT_TLS to tasmota-minimal.bin by Bohdan Kmit (#7115)
## Released ## Released

View File

@ -132,7 +132,8 @@
#define WEB_PASSWORD "" // [WebPassword] Web server Admin mode Password for WEB_USERNAME (empty string = Disable) #define WEB_PASSWORD "" // [WebPassword] Web server Admin mode Password for WEB_USERNAME (empty string = Disable)
#define FRIENDLY_NAME "Tasmota" // [FriendlyName] Friendlyname up to 32 characters used by webpages and Alexa #define FRIENDLY_NAME "Tasmota" // [FriendlyName] Friendlyname up to 32 characters used by webpages and Alexa
#define EMULATION EMUL_NONE // [Emulation] Select Belkin WeMo (single relay/light) or Hue Bridge emulation (multi relay/light) (EMUL_NONE, EMUL_WEMO or EMUL_HUE) #define EMULATION EMUL_NONE // [Emulation] Select Belkin WeMo (single relay/light) or Hue Bridge emulation (multi relay/light) (EMUL_NONE, EMUL_WEMO or EMUL_HUE)
#define CORS_DOMAIN "" // [CorsDomain] CORS Domain for preflight requests #define CORS_DOMAIN "" // [Cors] CORS Domain for preflight requests
// -- HTTP GUI Colors ----------------------------- // -- HTTP GUI Colors -----------------------------
// HTML hex color codes. Only 3 and 6 digit hex string values are supported!! See https://www.w3schools.com/colors/colors_hex.asp // HTML hex color codes. Only 3 and 6 digit hex string values are supported!! See https://www.w3schools.com/colors/colors_hex.asp
// Light theme - pre v7 // Light theme - pre v7

View File

@ -437,9 +437,9 @@ struct SYSCFG {
uint8_t free_e9f[1]; // E9F uint8_t free_e9f[1]; // E9F
uint8_t web_color2[2][3]; // EA0 - Needs to be on integer / 3 distance from web_color uint8_t web_color2[2][3]; // EA0 - Needs to be on integer / 3 distance from web_color
char cors_domain[33]; // EA6
char cors_domain[33]; // EC1 uint8_t free_ec1[293]; // EC1
uint8_t free_ea4[293]; // EA6
uint32_t i2c_drivers[3]; // FEC I2cDriver uint32_t i2c_drivers[3]; // FEC I2cDriver
uint32_t cfg_timestamp; // FF8 uint32_t cfg_timestamp; // FF8

View File

@ -1181,7 +1181,6 @@ void SettingsDelta(void)
if (Settings.version < 0x07010202) { if (Settings.version < 0x07010202) {
Settings.serial_config = TS_SERIAL_8N1; Settings.serial_config = TS_SERIAL_8N1;
} }
if (Settings.version < 0x07010204) { if (Settings.version < 0x07010204) {
if (Settings.flag3.ex_cors_enabled == 1) { if (Settings.flag3.ex_cors_enabled == 1) {
strlcpy(Settings.cors_domain, CORS_ENABLED_ALL, sizeof(Settings.cors_domain)); strlcpy(Settings.cors_domain, CORS_ENABLED_ALL, sizeof(Settings.cors_domain));