From 20e47d32479797477da20e4637143b084967fcba Mon Sep 17 00:00:00 2001 From: unknown Date: Fri, 1 Mar 2024 09:12:56 +0700 Subject: [PATCH] Minor update for internal client. --- library.json | 2 +- library.properties | 2 +- src/client/FB_TCP_Client.h | 8 ++++++-- src/core/Firebase_Client_Version.h | 5 ++--- 4 files changed, 10 insertions(+), 7 deletions(-) diff --git a/library.json b/library.json index cdc118a..b66ef27 100644 --- a/library.json +++ b/library.json @@ -1,6 +1,6 @@ { "name": "Firebase ESP32 Client", - "version": "4.4.11", + "version": "4.4.12", "keywords": "communication, REST, esp32, arduino", "description": "The secure, fast and reliable Firebase Realtime database library to read, store, update, delete, listen, backup, and restore data. You can also read and modify the database security rules with this library.", "repository": { diff --git a/library.properties b/library.properties index 2612941..fa7ea87 100644 --- a/library.properties +++ b/library.properties @@ -1,6 +1,6 @@ name=Firebase ESP32 Client -version=4.4.11 +version=4.4.12 author=Mobizt diff --git a/src/client/FB_TCP_Client.h b/src/client/FB_TCP_Client.h index 8887722..92689d2 100644 --- a/src/client/FB_TCP_Client.h +++ b/src/client/FB_TCP_Client.h @@ -1,7 +1,7 @@ /** - * Firebase TCP Client v1.0.3 + * Firebase TCP Client v1.0.4 * - * Created December 27, 2023 + * Created March 1, 2024 * * The MIT License (MIT) * Copyright (c) 2022 K. Suwatchai (Mobizt) @@ -32,7 +32,11 @@ #include "./FB_Const.h" #include "./mbfs/MB_FS.h" #include "./FB_Utils.h" +#if __has_include() +#include +#else #include "./client/SSLClient/ESP_SSLClient.h" +#endif #include "./FB_Network.h" #if defined(ESP32) diff --git a/src/core/Firebase_Client_Version.h b/src/core/Firebase_Client_Version.h index 49f579f..9901e10 100644 --- a/src/core/Firebase_Client_Version.h +++ b/src/core/Firebase_Client_Version.h @@ -1,6 +1,5 @@ #ifndef FIREBASE_CLIENT_VERSION -#define FIREBASE_CLIENT_VERSION "4.4.11" -#define FIREBASE_CLIENT_VERSION_NUM 40411 +#define FIREBASE_CLIENT_VERSION "4.4.12" +#define FIREBASE_CLIENT_VERSION_NUM 40412 -#define FIREBASE_CLIENT_VERSION_CHECK(ver) (true) #endif \ No newline at end of file