mirror of
https://github.com/tzapu/WiFiManager.git
synced 2026-04-27 00:55:52 +03:00
[GH-ISSUE #443] Pull request with backward compatibility breaking changes #375
Labels
No labels
📶 WiFi
🕸️ HTTP
Branch
DEV Help Wanted
Discussion
Documentation
ESP32
Example
Good First Issue
Hotfix
In Progress
Incomplete
Needs Feeback
Priority
QA
Question
Task
Upstream/Dependancy
bug
duplicate
enhancement
invalid
pull-request
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/WiFiManager#375
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @herostrat on GitHub (Oct 18, 2017).
Original GitHub issue: https://github.com/tzapu/WiFiManager/issues/443
Hey,
I am using the WiFiManager for setting up esps with e.g. mqtt connections.
During development I wanted to change the default value for the params in the webform.
This was not possible with the current code.
I changed the WiFiManagerParamter to use
Stringinstead. This enabled me to be more dynamic with the parameters and change them during runtime.This has the additional value of a more save size allocation without overflows and such without thinking hard and long about array sizes during initialisation of the parameter.
If I missed your reasons for picking
const char*instead ofStringplease let me know.Now my questions:
Are backward compatibility breacking changes a nogo for pull requests?
Are those features a good addition according to your vision of WiFiManager?
I don't want to waste your and my time modifying e.g. examples for a pullrequest if it is not in line with the main development.
@tablatronix commented on GitHub (Nov 4, 2017):
What problem were you having exactly that needed to be solved.
Breaking change is not great.
if you want to PR it do it from a feature branch
Ideally finding another way to achieve the same result would be good