Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/build-esp8266-esp32.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install --upgrade platformio
pip install intelhex
- name: Step 6 - Install library dependencies
run: |
pio pkg install -l "bblanchon/ArduinoJson" -l "links2004/WebSockets" -g
Expand Down
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## Version 3.5.2
Fixed:
- Fix: Force OTA update does not work [#430](https://github.com/sinricpro/esp8266-esp32-sdk/issues/430)

## Version 3.5.1
Fixed:
- Fix: sendPowerSensorEvent sets factor even when specified.
Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
}
],
"homepage": "https://sinric.pro",
"version": "3.5.1",
"version": "3.5.2",
"frameworks": "arduino",
"platforms": ["espressif8266", "espressif32", "raspberrypi"],
"dependencies": [
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=SinricPro
version=3.5.1
version=3.5.2
author=Boris Jaeger <sivar2311@gmail.com>
maintainer=Boris Jaeger <sivar2311@gmail.com>
sentence=Library for https://sinric.pro - simple way to connect your device to alexa
Expand Down
2 changes: 1 addition & 1 deletion src/SinricProModuleCommandHandler.h
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ bool SinricProModuleCommandHandler::handleRequest(SinricProRequest &request) {
int major = request.request_value[FSTR_OTA_version][FSTR_OTA_major];
int minor = request.request_value[FSTR_OTA_version][FSTR_OTA_minor];
int patch = request.request_value[FSTR_OTA_version][FSTR_OTA_patch];
bool forceUpdate = request.request_value[FSTR_OTA_version][FSTR_OTA_forceUpdate] | false;
bool forceUpdate = request.request_value[FSTR_OTA_forceUpdate] | false;
return _otaUpdateCallbackHandler(url, major, minor, patch, forceUpdate);
}
else if (strcmp(FSTR_SETTINGS_setSetting, request.action.c_str()) == 0 && _setSettingCallbackHandler) {
Expand Down
2 changes: 1 addition & 1 deletion src/SinricProVersion.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// Version Configuration
#define SINRICPRO_VERSION_MAJOR 3
#define SINRICPRO_VERSION_MINOR 5
#define SINRICPRO_VERSION_REVISION 1
#define SINRICPRO_VERSION_REVISION 2
#define SINRICPRO_VERSION STR(SINRICPRO_VERSION_MAJOR) "." STR(SINRICPRO_VERSION_MINOR) "." STR(SINRICPRO_VERSION_REVISION)
#define SINRICPRO_VERSION_STR "SinricPro (v" SINRICPRO_VERSION ")"
#define SINRICPRO_VERISON_INT SINRICPRO_VERSION_MAJOR * 1000000 + SINRICPRO_VERSION_MINOR * 1000 + SINRICPRO_VERSION_REVISION