Skip to content

Commit e449c7f

Browse files
committed
bump version
1 parent 3ee59b2 commit e449c7f

14 files changed

+34
-46
lines changed

changeNew.md

Lines changed: 8 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,15 @@
1-
# v1.7.0
1+
# v1.8.0
22

33
## what's new
44

5-
### EspWebUI-Library
5+
### Timer: new option to set minimum or maximum time in combination with sunrise or sundown
66

7-
with this update, the basic WebUI functions were outsourced to a separate [EspWebUI](https://github.com/dewenni/EspWebUI) library.
8-
This should have no effect on the user experience, but it improves the handling of similar projects like [ESP_Buderus_KM271](https://github.com/dewenni/ESP_Buderus_KM271)
9-
10-
### support for received remote signals
11-
12-
As requested by some users, there is now also support for original remote controls. The signals from the remote controls are now captured, processed and also made available via MQTT. Further details can be found in the updated and extended readme.
13-
14-
### support for different ESP32 Chips
15-
16-
There is now also support for other ESP32 chips. This allows you a greater variance in the selection of your hardware.
17-
For the newly supported chips, a firmware file for OTA updates and one for initial flashing will be offered in future. The direct GitHub update via the WebUI should also work for the new chips.
18-
19-
Supported Chips:
20-
21-
- ESP32
22-
- ESP32-S2 (new)
23-
- ESP32-S3 (new)
24-
- ESP32-C3 (new)
25-
26-
### some minor WebUI improvements
27-
28-
- When a shutter command is executed in the WebUI, a message confirming the command is displayed for 2 seconds at the footer.
29-
- Add additional ESP-Chip infos in the system section of the WebUI
30-
- Add add additional error messages at the footer if Jarolift Keys or serial number not set
7+
Thanks to @blissi it is now possible to set additional minimum or maximum time in combination with sunrise or sundown.
8+
You can therefore define that the shutter should open at sunrise, but not before 06:30, for example
9+
Or close at sunset, but no later than 21:00
3110

3211
## changelog
3312

34-
- [UPDATE] ESP32Async/AsyncTCP @ 3.3.6
35-
- [UPDATE] ESP32Async/ESPAsyncWebServer @ 3.7.2
36-
- [UPDATE] bblanchon/ArduinoJson @ 7.3.1
37-
- [CHANGE] Basic WebUI functions were outsourced to a separate [EspWebUI](https://github.com/dewenni/EspWebUI) library
38-
- [FIX] update WiFi and Ethernet Status also if mqtt is not connected
39-
- [FIX] the entry of Jarolift Keys or the serial number was not accepted if you clicked on LOCK directly after the entry
40-
- [FIX] skip websocket connection if WebUI is located on localhost or github.io
41-
- [FEATURE] add additional error messages if Jarolift Keys or serial number not set
42-
- [FEATURE] When a shutter command is executed in the WebUI, a message confirming the command is displayed for 2 seconds at the footer.
43-
- [FEATURE] add support for received remote signals
44-
- [FEATURE] add support for multiple ESP32 Chips
45-
- [FEATURE] add additional ESP-Chip infos in the system section of the WebUI
13+
- [UPDATE] dewenni/EspWebUI @ 0.0.2
14+
- [FIX] bugfix github ota asset check #40
15+
- [FEATURE] Timer: new option to set minimum or maximum time in combination with sunrise or sundown #41

changelog.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
**Changelog**
22

3+
# v1.8.0
4+
5+
## what's new
6+
7+
### Timer: new option to set minimum or maximum time in combination with sunrise or sundown
8+
9+
Thanks to @blissi it is now possible to set additional minimum or maximum time in combination with sunrise or sundown.
10+
You can therefore define that the shutter should open at sunrise, but not before 06:30, for example
11+
Or close at sunset, but no later than 21:00
12+
13+
## changelog
14+
15+
- [UPDATE] dewenni/EspWebUI @ 0.0.2
16+
- [FIX] bugfix github ota asset check #40
17+
- [FEATURE] Timer: new option to set minimum or maximum time in combination with sunrise or sundown #41
18+
19+
---
20+
321
# v1.7.0
422

523
## what's new

include/config.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/*-------------------------------------------------------------------------------
55
General Configuration
66
--------------------------------------------------------------------------------*/
7-
#define VERSION "v1.7.0" // internal program version
7+
#define VERSION "v1.8.0" // internal program version
88

99
#define WIFI_RECONNECT 30000 // Delay between wifi reconnection tries
1010
#define MQTT_RECONNECT 10000 // Delay between mqtt reconnection tries
@@ -40,9 +40,9 @@ struct s_cfg_timer {
4040
bool sunday;
4141
uint16_t grp_mask; // Group mask for included channels
4242
bool use_min_time;
43-
char min_time_value[6]; // fixed Time value (hh:mm)
43+
char min_time_value[6]; // fixed Time value (hh:mm)
4444
bool use_max_time;
45-
char max_time_value[6]; // fixed Time value (hh:mm)
45+
char max_time_value[6]; // fixed Time value (hh:mm)
4646
};
4747

4848
struct s_cfg_geo {

platformio.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[platformio]
2-
default_envs = esp32
3-
;default_envs = esp32, esp32s2, esp32s3, esp32c3
2+
;default_envs = esp32
3+
default_envs = esp32, esp32s2, esp32s3, esp32c3
44

55
[env_common]
66
platform = https://github.com/pioarduino/platform-espressif32/releases/download/53.03.11/platform-espressif32.zip
Binary file not shown.
Binary file not shown.
-1.53 MB
Binary file not shown.
1.53 MB
Binary file not shown.

0 commit comments

Comments
 (0)