Skip to content

Commit ca4c542

Browse files
committed
Fix compilation error for SdFat.
1 parent 6bca424 commit ca4c542

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2023 mobizt
3+
Copyright (c) 2024 mobizt
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1817,7 +1817,7 @@ The result of the above code
18171817

18181818
The MIT License (MIT)
18191819

1820-
Copyright (c) 2023 K. Suwatchai (Mobizt)
1820+
Copyright (c) 2024 K. Suwatchai (Mobizt)
18211821

18221822

18231823
Permission is hereby granted, free of charge, to any person returning a copy of

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Firebase ESP32 Client",
3-
"version": "4.4.10",
3+
"version": "4.4.11",
44
"keywords": "communication, REST, esp32, arduino",
55
"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.",
66
"repository": {

library.properties

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

3-
version=4.4.10
3+
version=4.4.11
44

55
author=Mobizt
66

src/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5000,7 +5000,7 @@ e.g. to<String>(), to<int>(), to<bool>()
50005000

50015001
The MIT License (MIT)
50025002

5003-
Copyright (c) 2023 K. Suwatchai (Mobizt)
5003+
Copyright (c) 2024 K. Suwatchai (Mobizt)
50045004

50055005

50065006
Permission is hereby granted, free of charge, to any person returning a copy of

src/core/Firebase_Client_Version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#ifndef FIREBASE_CLIENT_VERSION
2-
#define FIREBASE_CLIENT_VERSION "4.4.10"
3-
#define FIREBASE_CLIENT_VERSION_NUM 40410
2+
#define FIREBASE_CLIENT_VERSION "4.4.11"
3+
#define FIREBASE_CLIENT_VERSION_NUM 40411
44

55
#define FIREBASE_CLIENT_VERSION_CHECK(ver) (true)
66
#endif

src/rtdb/FB_RTDB.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11

22
/**
3-
* Google's Firebase Realtime Database class, FB_RTDB.cpp version 2.1.1
3+
* Google's Firebase Realtime Database class, FB_RTDB.cpp version 2.1.2
44
*
5-
* Created September 13, 2023
5+
* Created February 17, 2024
66
*
77
* The MIT License (MIT)
88
* Copyright (c) 2023 K. Suwatchai (Mobizt)
@@ -1352,14 +1352,14 @@ uint8_t FB_RTDB::readQueueFileSdFat(FirebaseData *fbdo, MBFS_SD_FILE &file, Queu
13521352

13531353
while (file.available())
13541354
{
1355-
Core.ut.FBUtils::idle();
1355+
FBUtils::idle();
13561356
if (arr.readFrom(file))
13571357
{
13581358
if (mode == 1)
13591359
{
13601360
for (size_t i = 0; i < arr.size(); i++)
13611361
{
1362-
Core.ut.FBUtils::idle();
1362+
FBUtils::idle();
13631363
arr.get(result, i);
13641364
if (result.success)
13651365
{

src/rtdb/FB_RTDB.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11

22
/**
3-
* Google's Firebase Realtime Database class, FB_RTDB.h version 2.1.1
3+
* Google's Firebase Realtime Database class, FB_RTDB.cpp version 2.1.2
44
*
5-
* Created September 13, 2023
5+
* Created February 17, 2024
66
*
77
* The MIT License (MIT)
88
* Copyright (c) 2023 K. Suwatchai (Mobizt)

0 commit comments

Comments
 (0)