From b3a0337a6abd9df4f7c69f50faf46ff2febad40b Mon Sep 17 00:00:00 2001 From: Aruna Tennakoon Date: Sun, 4 Aug 2024 15:22:50 +0700 Subject: [PATCH 1/3] fix: arduino lint errors --- LICENSE.txt | 4 ++++ changelog.md | 5 +++++ library.json | 2 +- library.properties | 4 ++-- src/SinricProVersion.h | 2 +- 5 files changed, 13 insertions(+), 4 deletions(-) create mode 100644 LICENSE.txt diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..b2e1b2a --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,4 @@ +Copyright (c) 2019-2025 Sinric. All rights reserved. +Licensed under Creative Commons Attribution-Share Alike (CC BY-SA) + +This file is part of the Sinric Pro (https://github.com/sinricpro/teleport-arduino-esp32-library/) \ No newline at end of file diff --git a/changelog.md b/changelog.md index 97b863e..7cfe062 100644 --- a/changelog.md +++ b/changelog.md @@ -1,4 +1,9 @@ # Changelog + +## Version 3.2.1 + - Fixed Arduino Lint errors + - LICENSE.txt added + ## Version 3.2.0 ### New - Support OTA Updates diff --git a/library.json b/library.json index 74cbc87..d6440f5 100644 --- a/library.json +++ b/library.json @@ -13,7 +13,7 @@ "maintainer": true } ], - "version": "3.2.0", + "version": "3.2.1", "frameworks": "arduino", "platforms": [ "espressif8266", diff --git a/library.properties b/library.properties index ce30026..fae5230 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=SinricPro -version=3.2.0 +version=3.2.1 author=Boris Jaeger maintainer=Boris Jaeger sentence=Library for https://sinric.pro - simple way to connect your device to alexa @@ -9,5 +9,5 @@ url=https://sinricpro.github.io/esp8266-esp32-sdk/index.html architectures=esp8266,esp32,rp2040 repository=https://github.com/sinricpro/esp8266-esp32-sdk.git license=CC-BY-SA -depends=ArduinoJson@7.0.3,WebSockets@2.4.0 +depends=ArduinoJson (>=7.0.3), WebSockets (>=2.4.0) includes=SinricPro.h diff --git a/src/SinricProVersion.h b/src/SinricProVersion.h index 875d214..12758f4 100644 --- a/src/SinricProVersion.h +++ b/src/SinricProVersion.h @@ -6,7 +6,7 @@ // Version Configuration #define SINRICPRO_VERSION_MAJOR 3 #define SINRICPRO_VERSION_MINOR 2 -#define SINRICPRO_VERSION_REVISION 0 +#define SINRICPRO_VERSION_REVISION 1 #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 \ No newline at end of file From f1d4a0cad46c1ded73c36e6e7ef18e41f81b9b60 Mon Sep 17 00:00:00 2001 From: Aruna Tennakoon Date: Sun, 4 Aug 2024 15:25:18 +0700 Subject: [PATCH 2/3] fix: url --- LICENSE.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LICENSE.txt b/LICENSE.txt index b2e1b2a..636f3d9 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,4 +1,4 @@ Copyright (c) 2019-2025 Sinric. All rights reserved. Licensed under Creative Commons Attribution-Share Alike (CC BY-SA) -This file is part of the Sinric Pro (https://github.com/sinricpro/teleport-arduino-esp32-library/) \ No newline at end of file +This file is part of the Sinric Pro (https://github.com/sinricpro/esp8266-esp32-sdk/) \ No newline at end of file From ee2be665c0cde21ac1065cd426af3fa25487a800 Mon Sep 17 00:00:00 2001 From: Aruna Tennakoon Date: Sun, 4 Aug 2024 15:33:01 +0700 Subject: [PATCH 3/3] fix: lint error: url --- library.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library.properties b/library.properties index fae5230..6d52c19 100644 --- a/library.properties +++ b/library.properties @@ -5,7 +5,7 @@ maintainer=Boris Jaeger sentence=Library for https://sinric.pro - simple way to connect your device to alexa paragraph=Simple way to control your IOT development boards like ESP8226 or ESP32 with Amazon Alexa or Google Home category=Communication -url=https://sinricpro.github.io/esp8266-esp32-sdk/index.html +url=https://github.com/sinricpro/esp8266-esp32-sdk/ architectures=esp8266,esp32,rp2040 repository=https://github.com/sinricpro/esp8266-esp32-sdk.git license=CC-BY-SA