Skip to content

Commit 00031f3

Browse files
committed
Fix compilation error in ESP32 Core v3.1.x
1 parent 187eb7e commit 00031f3

File tree

12 files changed

+315
-179
lines changed

12 files changed

+315
-179
lines changed

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ESP-Google-Sheet-Client",
3-
"version": "1.4.4",
3+
"version": "1.4.5",
44
"keywords": "communication, REST, esp32, esp8266, raspberrypi, arduino",
55
"description": "Arduino Google Sheet REST client library for Arduino devices. This library allows devices to communicate with Google Sheet API to read, edit and delete the spreadsheets",
66
"repository": {

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name=ESP-Google-Sheet-Client
22

3-
version=1.4.4
3+
version=1.4.5
44

55
author=Mobizt
66

src/ESP_Google_Sheet_Client.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
#ifndef ESP_GOOGLE_SHEET_CLIENT_VERSION
2-
#define ESP_GOOGLE_SHEET_CLIENT_VERSION "1.4.4"
2+
#define ESP_GOOGLE_SHEET_CLIENT_VERSION "1.4.5"
33
#endif
44

55
/**
6-
* Google Sheet Client, ESP_Google_Sheet_Client.h v1.4.3
6+
* Google Sheet Client, ESP_Google_Sheet_Client.h v1.4.5
77
*
88
* This library supports Espressif ESP8266 and ESP32 MCUs
99
*
10-
* Created March 25, 2023
10+
* Created December 5, 2024
1111
*
1212
* The MIT License (MIT)
1313
* Copyright (c) 2023 K. Suwatchai (Mobizt)

src/client/SSLClient/Custom_ESP_SSLClient_FS.h

Lines changed: 0 additions & 18 deletions
This file was deleted.

src/client/SSLClient/ESP_SSLClient.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
22
*
3-
* The ESP SSL Client Class, ESP_SSLClient.h v2.1.5
3+
* The ESP SSL Client Class, ESP_SSLClient.h v2.1.13
44
*
5-
* Created August 22, 2023
5+
* Created December 5, 2024
66
*
77
* The MIT License (MIT)
88
* Copyright (c) 2023 K. Suwatchai (Mobizt)
@@ -47,7 +47,7 @@ class ESP_SSLClient : public BSSL_TCP_Client
4747
class ESP_SSLClient2 : public BSSL_TCP_Client
4848
{
4949
public:
50-
ESP_SSLClient2(Client &client, bool enableSSL = true) : _base_client(client)
50+
explicit ESP_SSLClient2(Client &client, bool enableSSL = true) : _base_client(client)
5151
{
5252
setClient(&_base_client, enableSSL);
5353
};
@@ -68,7 +68,7 @@ class ESP_SSLClient
6868
class ESP_SSLClient2
6969
{
7070
public:
71-
ESP_SSLClient2(Client &client, bool enableSSL = true) : _base_client(client){};
71+
explicit ESP_SSLClient2(Client &client, bool enableSSL = true) : _base_client(client){};
7272
~ESP_SSLClient2(){};
7373

7474
private:

0 commit comments

Comments
 (0)