Skip to content

Commit 055ce95

Browse files
committed
Fix Realtime Database Streaming issue
1 parent f088b54 commit 055ce95

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+141
-108
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) 2025 Suwatchai K. <[email protected]>
3+
Copyright (c) 2026 Suwatchai K. <[email protected]>
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -717,12 +717,12 @@ If `ServiceAuth`, `CustomAuth` and `ESP_SSLClient` classes are not used in your
717717

718718
The codes and examples in this repository are licensed under the MIT License.
719719

720-
Copyright (c) 2025, Suwatchai K. All rights reserved.
720+
Copyright (c) 2026, Suwatchai K. All rights reserved.
721721

722722
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
723723

724724
*The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.*
725725

726726
`THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.`
727727

728-
*Last updated 2025-11-02 UTC.*
728+
*Last updated 2026-01-03 UTC.*

examples/Messaging/WebClient/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ <h5 class="modal-title text-info-emphasis" id="modalLabel">Received Message</h5>
236236
<a href="javascript:void(0)" id="receiveTabLink" class="nav-link px-2 text-body-secondary">Log</a>
237237
</li>
238238
</ul>
239-
<p class="text-center text-body-secondary">&copy; 2025 Mobizt</p>
239+
<p class="text-center text-body-secondary">&copy; 2026 Mobizt</p>
240240
</footer>
241241
</div>
242242

examples/RealtimeDatabase/StreamPerformanceTest/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ <h1 class="display-2 text-success-emphasis border-bottom pb-3">Firebase Web App<
235235
<a href="javascript:void(0)" id="testTabLink" class="nav-link px-2 text-body-secondary">Test</a>
236236
</li>
237237
</ul>
238-
<p class="text-center text-body-secondary">&copy; 2025 Mobizt</p>
238+
<p class="text-center text-body-secondary">&copy; 2026 Mobizt</p>
239239
</footer>
240240
</div>
241241

keywords.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -316,6 +316,7 @@ batchAdd KEYWORD2
316316
batchRemove KEYWORD2
317317
batchImport KEYWORD2
318318
get KEYWORD2
319+
setNetworkStatusCallback KEYWORD2
319320

320321
###################
321322
# Struct (KEYWORD3)

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "FirebaseClient",
3-
"version": "2.2.6",
3+
"version": "2.2.7",
44
"keywords": "communication, REST, esp32, esp8266, arduino",
55
"description": "Async Firebase Client library for Arduino.",
66
"repository": {

library.properties

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

3-
version=2.2.6
3+
version=2.2.7
44

55
author=Mobizt
66

resources/docs/async_client.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,19 @@ AsyncClientClass(AsyncTCPConfig &tcpClientConfig, network_config_data &net)
6060
6161
## Functions
6262
63+
1. ## 🔹 void setNetworkStatusCallback(AsyncClientNetworkStatusCallback cb)
64+
65+
Set the network status callback function.
66+
67+
```cpp
68+
void setNetworkStatusCallback(AsyncClientNetworkStatusCallback cb)
69+
```
70+
71+
**Params:**
72+
73+
- `cb` - The AsyncClientNetworkStatusCallback function pointer.
74+
75+
6376
1. ## 🔹 void setAsyncResult(AsyncResult &result)
6477

6578
Set the external async result to use with the sync task.

src/FirebaseClient.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* SPDX-FileCopyrightText: 2025 Suwatchai K. <[email protected]>
2+
* SPDX-FileCopyrightText: 2026 Suwatchai K. <[email protected]>
33
*
44
* SPDX-License-Identifier: MIT
55
*/

src/cloud_storage/CloudStorage.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* SPDX-FileCopyrightText: 2025 Suwatchai K. <[email protected]>
2+
* SPDX-FileCopyrightText: 2026 Suwatchai K. <[email protected]>
33
*
44
* SPDX-License-Identifier: MIT
55
*/

0 commit comments

Comments
 (0)