From c90cc683b8226fd9bdc89e95956d6fea6ad1ee3d Mon Sep 17 00:00:00 2001 From: unknown Date: Sat, 17 Feb 2024 22:10:54 +0700 Subject: [PATCH] Update RTDB. --- LICENSE | 2 +- README.md | 2 +- library.json | 2 +- library.properties | 2 +- src/README.md | 2 +- src/core/Firebase_Client_Version.h | 4 ++-- src/rtdb/FB_RTDB.cpp | 8 ++++---- src/rtdb/FB_RTDB.h | 4 ++-- 8 files changed, 13 insertions(+), 13 deletions(-) diff --git a/LICENSE b/LICENSE index c22fc230..820cb05e 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2023 mobizt +Copyright (c) 2024 mobizt Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 69333d01..30ad1bb1 100644 --- a/README.md +++ b/README.md @@ -1908,7 +1908,7 @@ The result of the above code The MIT License (MIT) -Copyright (c) 2023 K. Suwatchai (Mobizt) +Copyright (c) 2024 K. Suwatchai (Mobizt) Permission is hereby granted, free of charge, to any person returning a copy of diff --git a/library.json b/library.json index 3f3cd644..1e8c76db 100644 --- a/library.json +++ b/library.json @@ -1,6 +1,6 @@ { "name": "Firebase ESP8266 Client", - "version": "4.4.10", + "version": "4.4.11", "keywords": "communication, REST, esp8266, 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 b9040bcd..13e2410d 100644 --- a/library.properties +++ b/library.properties @@ -1,6 +1,6 @@ name=Firebase ESP8266 Client -version=4.4.10 +version=4.4.11 author=Mobizt diff --git a/src/README.md b/src/README.md index 4785401b..eb589573 100644 --- a/src/README.md +++ b/src/README.md @@ -4967,7 +4967,7 @@ e.g. to(), to(), to() The MIT License (MIT) -Copyright (c) 2023 K. Suwatchai (Mobizt) +Copyright (c) 2024 K. Suwatchai (Mobizt) Permission is hereby granted, free of charge, to any person returning a copy of diff --git a/src/core/Firebase_Client_Version.h b/src/core/Firebase_Client_Version.h index 1d943963..49f579fb 100644 --- a/src/core/Firebase_Client_Version.h +++ b/src/core/Firebase_Client_Version.h @@ -1,6 +1,6 @@ #ifndef FIREBASE_CLIENT_VERSION -#define FIREBASE_CLIENT_VERSION "4.4.10" -#define FIREBASE_CLIENT_VERSION_NUM 40410 +#define FIREBASE_CLIENT_VERSION "4.4.11" +#define FIREBASE_CLIENT_VERSION_NUM 40411 #define FIREBASE_CLIENT_VERSION_CHECK(ver) (true) #endif \ No newline at end of file diff --git a/src/rtdb/FB_RTDB.cpp b/src/rtdb/FB_RTDB.cpp index a3873874..72c55a49 100644 --- a/src/rtdb/FB_RTDB.cpp +++ b/src/rtdb/FB_RTDB.cpp @@ -1,8 +1,8 @@ /** - * Google's Firebase Realtime Database class, FB_RTDB.cpp version 2.1.1 + * Google's Firebase Realtime Database class, FB_RTDB.cpp version 2.1.2 * - * Created September 13, 2023 + * Created February 17, 2024 * * The MIT License (MIT) * Copyright (c) 2023 K. Suwatchai (Mobizt) @@ -1352,14 +1352,14 @@ uint8_t FB_RTDB::readQueueFileSdFat(FirebaseData *fbdo, MBFS_SD_FILE &file, Queu while (file.available()) { - Core.ut.FBUtils::idle(); + FBUtils::idle(); if (arr.readFrom(file)) { if (mode == 1) { for (size_t i = 0; i < arr.size(); i++) { - Core.ut.FBUtils::idle(); + FBUtils::idle(); arr.get(result, i); if (result.success) { diff --git a/src/rtdb/FB_RTDB.h b/src/rtdb/FB_RTDB.h index 2338f57c..2a713177 100644 --- a/src/rtdb/FB_RTDB.h +++ b/src/rtdb/FB_RTDB.h @@ -1,8 +1,8 @@ /** - * Google's Firebase Realtime Database class, FB_RTDB.h version 2.1.1 + * Google's Firebase Realtime Database class, FB_RTDB.cpp version 2.1.2 * - * Created September 13, 2023 + * Created February 17, 2024 * * The MIT License (MIT) * Copyright (c) 2023 K. Suwatchai (Mobizt)