[PR #1357] [CLOSED] Merge changes from master into feature_asyncwebserver #1743

Closed
opened 2026-02-28 02:12:51 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/tzapu/WiFiManager/pull/1357
Author: @thorrak
Created: 2/13/2022
Status: Closed

Base: feature_asyncwebserverHead: feature_asyncwebserver


📝 Commits (10+)

  • 8935680 trivial: WiFiManagerParameter get accessors should work on const instances
  • 08fbe31 Merge branch 'development' into constWiFiManagerParameter
  • 1fc2731 Remove branch references
  • 245d24b fix comments for callbacks
  • 73b4653 clean up redundant debug blocks
  • 87ec3c8 adding WifiManager::isConfigPortalActive() abd WifiManager::isWebPortalActive()
  • 9eac697 Merge pull request #1199 from cpainchaud/master
  • 6119a9e refactor #1199
  • e933a20 Fixes #1203
  • f9b86f6 Changed ssid psk gets to peristent

📊 Changes

23 files changed (+1187 additions, -517 deletions)

View changed files

📝 .github/ISSUE_TEMPLATE.md (+3 -2)
.github/workflows/compile_examples.yaml (+118 -0)
.github/workflows/compile_library.yml (+53 -0)
.github/workflows/cpp_lint.yml (+30 -0)
📝 .travis.yml (+1 -12)
📝 README.md (+16 -8)
📝 WiFiManager.cpp (+509 -232)
📝 WiFiManager.h (+109 -27)
📝 examples/Advanced/Advanced.ino (+7 -0)
examples/AutoConnect/AutoConnectWithFeedbackLED/AutoConnectWithFeedbackLED.ino (+0 -71)
📝 examples/Basic/Basic.ino (+5 -5)
📝 examples/NonBlocking/AutoConnectNonBlocking/AutoConnectNonBlocking.ino (+4 -1)
📝 examples/NonBlocking/OnDemandNonBlocking/onDemandNonBlocking.ino (+1 -1)
📝 examples/OnDemand/OnDemandConfigPortal/OnDemandConfigPortal.ino (+1 -1)
📝 examples/OnDemand/OnDemandWebPortal/onDemandWebPortal.ino (+1 -1)
📝 examples/Parameters/SPIFFS/AutoConnectWithFSParameters/AutoConnectWithFSParameters.ino (+69 -75)
📝 examples/Parameters/SPIFFS/AutoConnectWithFSParametersAndCustomIP/AutoConnectWithFSParametersAndCustomIP.ino (+73 -51)
📝 examples/ParamsChildClass/ParamsChildClass.ino (+2 -0)
📝 examples/Super/OnDemandConfigPortal/OnDemandConfigPortal.ino (+43 -8)
📝 examples/Unique/cb/AnonymousCB.ino (+0 -0)

...and 3 more files

📄 Description

This PR brings the changes to date from master into the feature_asyncwebserver branch.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/tzapu/WiFiManager/pull/1357 **Author:** [@thorrak](https://github.com/thorrak) **Created:** 2/13/2022 **Status:** ❌ Closed **Base:** `feature_asyncwebserver` ← **Head:** `feature_asyncwebserver` --- ### 📝 Commits (10+) - [`8935680`](https://github.com/tzapu/WiFiManager/commit/893568052a79823bb1de80e8ab2d9bb22072d25a) trivial: WiFiManagerParameter get accessors should work on const instances - [`08fbe31`](https://github.com/tzapu/WiFiManager/commit/08fbe310b7e0988ab87e55c359c6d740c8cee27d) Merge branch 'development' into constWiFiManagerParameter - [`1fc2731`](https://github.com/tzapu/WiFiManager/commit/1fc27318d30c53a8315dc30f4ae0553a864a33d3) Remove branch references - [`245d24b`](https://github.com/tzapu/WiFiManager/commit/245d24b31b934bf000e6f38261e43a6117220110) fix comments for callbacks - [`73b4653`](https://github.com/tzapu/WiFiManager/commit/73b465329c6c713a57354ae96fa8705b379d61db) clean up redundant debug blocks - [`87ec3c8`](https://github.com/tzapu/WiFiManager/commit/87ec3c8d8d7203cccfbd6972144ddbc43d816c32) adding WifiManager::isConfigPortalActive() abd WifiManager::isWebPortalActive() - [`9eac697`](https://github.com/tzapu/WiFiManager/commit/9eac6976061b5aefea7eb05a53e28eca87939bde) Merge pull request #1199 from cpainchaud/master - [`6119a9e`](https://github.com/tzapu/WiFiManager/commit/6119a9efdf56c813823c59dcb4efe2fb82a546dd) refactor #1199 - [`e933a20`](https://github.com/tzapu/WiFiManager/commit/e933a20d20b6bc636053f811810bdf924d3c2b73) Fixes #1203 - [`f9b86f6`](https://github.com/tzapu/WiFiManager/commit/f9b86f68705d620311319d33462cc10058374027) Changed ssid psk gets to peristent ### 📊 Changes **23 files changed** (+1187 additions, -517 deletions) <details> <summary>View changed files</summary> 📝 `.github/ISSUE_TEMPLATE.md` (+3 -2) ➕ `.github/workflows/compile_examples.yaml` (+118 -0) ➕ `.github/workflows/compile_library.yml` (+53 -0) ➕ `.github/workflows/cpp_lint.yml` (+30 -0) 📝 `.travis.yml` (+1 -12) 📝 `README.md` (+16 -8) 📝 `WiFiManager.cpp` (+509 -232) 📝 `WiFiManager.h` (+109 -27) 📝 `examples/Advanced/Advanced.ino` (+7 -0) ➖ `examples/AutoConnect/AutoConnectWithFeedbackLED/AutoConnectWithFeedbackLED.ino` (+0 -71) 📝 `examples/Basic/Basic.ino` (+5 -5) 📝 `examples/NonBlocking/AutoConnectNonBlocking/AutoConnectNonBlocking.ino` (+4 -1) 📝 `examples/NonBlocking/OnDemandNonBlocking/onDemandNonBlocking.ino` (+1 -1) 📝 `examples/OnDemand/OnDemandConfigPortal/OnDemandConfigPortal.ino` (+1 -1) 📝 `examples/OnDemand/OnDemandWebPortal/onDemandWebPortal.ino` (+1 -1) 📝 `examples/Parameters/SPIFFS/AutoConnectWithFSParameters/AutoConnectWithFSParameters.ino` (+69 -75) 📝 `examples/Parameters/SPIFFS/AutoConnectWithFSParametersAndCustomIP/AutoConnectWithFSParametersAndCustomIP.ino` (+73 -51) 📝 `examples/ParamsChildClass/ParamsChildClass.ino` (+2 -0) 📝 `examples/Super/OnDemandConfigPortal/OnDemandConfigPortal.ino` (+43 -8) 📝 `examples/Unique/cb/AnonymousCB.ino` (+0 -0) _...and 3 more files_ </details> ### 📄 Description This PR brings the changes to date from master into the feature_asyncwebserver branch. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-28 02:12:51 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/WiFiManager#1743
No description provided.