Skip to content

Commit cac4398

Browse files
committed
Fix the pushArray, setArray and pathExist bugs.
1 parent ca40a63 commit cac4398

13 files changed

+1498
-1549
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Firebase Arduino Client Library for ESP8266 and ESP32
22

33

4-
Google's Firebase Arduino Client Library for ESP8266 and ESP32 v 2.0.11
4+
Google's Firebase Arduino Client Library for ESP8266 and ESP32 v 2.0.12
55

66

77
This library supports ESP8266 and ESP32 MCU from Espressif. The following are platforms in which the libraries are also available (RTDB only).

keywords.txt

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -263,15 +263,16 @@ firebaseMethod KEYWORD2
263263
dataPath EYWORD2
264264

265265
#######################################
266-
# Struct (LITERAL1)
266+
# Struct (KEYWORD3)
267267
#######################################
268268

269-
FirebaseDataType LITERAL1
270-
FirebaseMethod LITERAL1
271-
QueueStorageType LITERAL1
272-
QueueItem LITERAL1
273-
token_info_t LITERAL1
274-
TokenInfo LITERAL1
269+
FirebaseDataType KEYWORD3
270+
FirebaseMethod KEYWORD3
271+
QueueStorageType KEYWORD3
272+
QueueItem KEYWORD3
273+
token_info_t KEYWORD3
274+
TokenInfo KEYWORD3
275+
fb_json_last_error_t KEYWORD3
275276

276277

277278

@@ -301,6 +302,8 @@ typeNum KEYWORD2
301302
success KEYWORD2
302303
getArray KEYWORD2
303304
getJson KEYWORD2
305+
setBufferLimit KEYWORD2
306+
getLastError KEYWORD2
304307

305308
######################################
306309
# Constants (LITERAL1)

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Firebase Arduino Client Library for ESP8266 and ESP32",
3-
"version": "2.0.11",
3+
"version": "2.0.12",
44
"keywords": "communication, REST, esp32, esp8266, arduino",
55
"description": "This client library provides the functions to work with Firebase Realtime database, Firestore, Storage and Cloud messaging.",
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 Arduino Client Library for ESP8266 and ESP32
22

3-
version=2.0.11
3+
version=2.0.12
44

55
author=Mobizt
66

src/Firebase_ESP_Client.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/**
2-
* Google's Firebase ESP Client Main class, Firebase_ESP_Client.h version 2.0.11
2+
* Google's Firebase ESP Client Main class, Firebase_ESP_Client.h version 2.0.12
33
*
44
* This library supports Espressif ESP8266 and ESP32
55
*
6-
* Created March 25, 2021
6+
* Created March 30, 2021
77
*
88
* This work is a part of Firebase ESP Client library
99
* Copyright (c) 2021 K. Suwatchai (Mobizt)

src/Firebase_ESP_Client.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/**
2-
* Google's Firebase ESP Client Main class, Firebase_ESP_Client.h version 2.0.11
2+
* Google's Firebase ESP Client Main class, Firebase_ESP_Client.h version 2.0.12
33
*
44
* This library supports Espressif ESP8266 and ESP32
55
*
6-
* Created March 25, 2021
6+
* Created March 30, 2021
77
*
88
* This work is a part of Firebase ESP Client library
99
* Copyright (c) 2021 K. Suwatchai (Mobizt)

src/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Firebase Arduino Client Library for ESP8266 and ESP32
22

33

4-
Google's Firebase Arduino Client Library for ESP8266 and ESP32 v 2.0.11
4+
Google's Firebase Arduino Client Library for ESP8266 and ESP32 v 2.0.12
55

66

77
The default filessystem used in the library is flash and SD.

0 commit comments

Comments
 (0)