Skip to content

Commit

Permalink
Merge pull request #2 from arendst/development
Browse files Browse the repository at this point in the history
Pull request to catch up to arendst/Tasmota development branch.
  • Loading branch information
tthk committed Jul 14, 2020
2 parents 3462c7f + 8dbcf48 commit 676c3dd
Show file tree
Hide file tree
Showing 12 changed files with 713 additions and 536 deletions.
8 changes: 4 additions & 4 deletions RELEASENOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ While fallback or downgrading is common practice it was never supported due to S

## Supported Core versions

This release will be supported from ESP8266/Arduino library Core version **2.7.1** due to reported security and stability issues on previous Core version. This will also support gzipped binaries.
This release will be supported from ESP8266/Arduino library Core version **2.7.2** due to reported security and stability issues on previous Core version. This will also support gzipped binaries.

Although it might still compile on previous Core versions all support will be removed in the near future.

Expand All @@ -35,7 +35,7 @@ For initial configuration this release supports Webserver based **WifiManager**

## Provided Binary Downloads

The following binary downloads have been compiled with ESP8266/Arduino library core version **2.7.1**.
The following binary downloads have been compiled with ESP8266/Arduino library core version **2.7.2**.

- **tasmota.bin** = The Tasmota version with most drivers. **RECOMMENDED RELEASE BINARY**
- **tasmota-BG.bin** to **tasmota-TW.bin** = The Tasmota version in different languages.
Expand All @@ -52,7 +52,7 @@ The following binary downloads have been compiled with ESP8266/Arduino library c

## Changelog

### Version 8.4.0 George
### Version 8.3.1.6

- Change IRremoteESP8266 library updated to v2.7.7
- Change Adafruit_SGP30 library from v1.0.3 to v1.2.0 (#8519)
Expand Down Expand Up @@ -94,4 +94,4 @@ The following binary downloads have been compiled with ESP8266/Arduino library c
- Add compile time interlock parameters (#8759)
- Add compile time user template (#8766)
- Add rotary encoder support for light dimmer and optional color temperature if button1 still pressed (#8670)
- Add support for switches/relays using an AC detection circuitry e.g. MOES MS-104B / BlitzWolf SS5 / etc. (#8606)
- Add support for switches/relays using an AC detection circuitry e.g. MOES MS-104B or BlitzWolf SS5 (#8606)
13 changes: 7 additions & 6 deletions tasmota/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
## Released

### 8.4.0 20200716

- Release George

## Unreleased (development)

### 8.3.1.6 20200617
Expand All @@ -17,6 +11,7 @@
- Add compile time interlock parameters (#8759)
- Add compile time user template (#8766)
- Add rotary encoder support for light dimmer and optional color temperature if button1 still pressed (#8670)
- Add support for switches/relays using an AC detection circuitry e.g. MOES MS-104B or BlitzWolf SS5 (#8606)
- Fix exception or watchdog on rule re-entry (#8757)
- Change ESP32 USER GPIO template representation decreasing template message size
- Change define USE_TASMOTA_SLAVE into USE_TASMOTA_CLIENT
Expand Down Expand Up @@ -67,6 +62,8 @@
- Add support for VEML6075 UVA/UVB/UVINDEX Sensor by device111 (#8432)
- Add support for VEML7700 Ambient light intensity Sensor by device111 (#8432)

## Released

### 8.3.1 20200518

- Release Fred
Expand All @@ -83,6 +80,8 @@
- Change Quick Power Cycle detection from 4 to 7 power interrupts (#4066)
- Fix default state of ``SetOption73 0`` for button decoupling and send multi-press and hold MQTT messages

## Released

### 8.3.0 20200514

- Release Fred
Expand Down Expand Up @@ -167,6 +166,8 @@
- Add support for unreachable (unplugged) Zigbee devices in Philips Hue emulation and Alexa
- Add support for 64x48 SSD1306 OLED (#6740)

## Released

### 8.2.0 20200321

- Release Elliot
Expand Down
2 changes: 1 addition & 1 deletion tasmota/support_button.ino
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ void ButtonHandler(void)
}
}
#ifdef ROTARY_V1
if (!((0 == button_index) && RotaryButtonPressed())) {
if (!RotaryButtonPressed(button_index)) {
#endif
if (!Settings.flag3.mqtt_buttons && single_press && SendKey(KEY_BUTTON, button_index + Button.press_counter[button_index], POWER_TOGGLE)) { // Execute Toggle command via MQTT if ButtonTopic is set
// Success
Expand Down
Loading

0 comments on commit 676c3dd

Please sign in to comment.