Skip to content

Commit

Permalink
Fix compilation error in ESP32 Core v3.1.x
Browse files Browse the repository at this point in the history
  • Loading branch information
mobizt committed Dec 5, 2024
1 parent 187eb7e commit 00031f3
Show file tree
Hide file tree
Showing 12 changed files with 315 additions and 179 deletions.
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ESP-Google-Sheet-Client",
"version": "1.4.4",
"version": "1.4.5",
"keywords": "communication, REST, esp32, esp8266, raspberrypi, arduino",
"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",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name=ESP-Google-Sheet-Client

version=1.4.4
version=1.4.5

author=Mobizt

Expand Down
6 changes: 3 additions & 3 deletions src/ESP_Google_Sheet_Client.h
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
#ifndef ESP_GOOGLE_SHEET_CLIENT_VERSION
#define ESP_GOOGLE_SHEET_CLIENT_VERSION "1.4.4"
#define ESP_GOOGLE_SHEET_CLIENT_VERSION "1.4.5"
#endif

/**
* Google Sheet Client, ESP_Google_Sheet_Client.h v1.4.3
* Google Sheet Client, ESP_Google_Sheet_Client.h v1.4.5
*
* This library supports Espressif ESP8266 and ESP32 MCUs
*
* Created March 25, 2023
* Created December 5, 2024
*
* The MIT License (MIT)
* Copyright (c) 2023 K. Suwatchai (Mobizt)
Expand Down
18 changes: 0 additions & 18 deletions src/client/SSLClient/Custom_ESP_SSLClient_FS.h

This file was deleted.

8 changes: 4 additions & 4 deletions src/client/SSLClient/ESP_SSLClient.h
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/**
*
* The ESP SSL Client Class, ESP_SSLClient.h v2.1.5
* The ESP SSL Client Class, ESP_SSLClient.h v2.1.13
*
* Created August 22, 2023
* Created December 5, 2024
*
* The MIT License (MIT)
* Copyright (c) 2023 K. Suwatchai (Mobizt)
Expand Down Expand Up @@ -47,7 +47,7 @@ class ESP_SSLClient : public BSSL_TCP_Client
class ESP_SSLClient2 : public BSSL_TCP_Client
{
public:
ESP_SSLClient2(Client &client, bool enableSSL = true) : _base_client(client)
explicit ESP_SSLClient2(Client &client, bool enableSSL = true) : _base_client(client)
{
setClient(&_base_client, enableSSL);
};
Expand All @@ -68,7 +68,7 @@ class ESP_SSLClient
class ESP_SSLClient2
{
public:
ESP_SSLClient2(Client &client, bool enableSSL = true) : _base_client(client){};
explicit ESP_SSLClient2(Client &client, bool enableSSL = true) : _base_client(client){};
~ESP_SSLClient2(){};

private:
Expand Down
Loading

0 comments on commit 00031f3

Please sign in to comment.