Skip to content

Latest commit

 

History

History
98 lines (77 loc) · 2.57 KB

CHANGELOG.md

File metadata and controls

98 lines (77 loc) · 2.57 KB

JustWifi change log

The format is based on Keep a Changelog and this project adheres to Semantic Versioning.

[3.0.0] XXXX-XX-XX

Fixed

  • Don't call WiFi methods in constructor
  • Replace default hostname underscore with hyphen
  • Compile-time check for Core 2.3.0
  • .gitignore .pio/ and .vscode/
  • Limit SSID to 32 chars
  • Limit PASS to 64 chars

Added

  • Add begin(), do initialization work there This method is mandatory, update examples

Changed

  • Switch maintainer to me (@mcspr)
  • Move MESSAGE_ACCESSPOINT_CREATING in-between softApConfig and softAp, which allows to reliably use wifi_softap_add_dhcps_lease
  • Call WiFi.persistent(false) as soon as possible, don't wait until connection attempt
  • WPS / SmartConfig found networks are no longer injected in front of the existing ones
  • Subscription callback is a simple pointer, std::function is no longer used

[2.0.2] 2018-09-13

Fixed

  • Check NO_EXTRA_4K_HEAP flag for WPS support on SDK 2.4.2

[2.0.1] 2018-06-30

Fixed

  • Memory leak in setSoftAP

[2.0.0] 2018-06-11

Added

  • SmartConfig (a.k.a. ESP Touch) support
  • WPS Support
  • TravisCI build tests
  • Codacy code test

Changed

  • Complete refactor (check examples to adapt your code)
  • Changed license to LGPL-3.0

[1.2.0] 2018-05-20

Changed

  • Moved to GitHub

[1.1.9] 2018-05-08

Fixed

  • Removed unneeded reference to DNSServer.h

[1.1.8] 2018-04-23

Changed

  • Added options for power saving (Thanks to Pablo Pousada Rial)
  • Added Travis CI configuration (Thanks to @lobradov)

[1.1.7] 2018-04-10

Changed

  • Increasing hostname size to 32 chars

[1.1.6] 2018-01-10

Changed

  • Allow to register several callbacks
  • Changes in the information parameters for scanning and connecting callbacks
  • Updated example

Deprecated

  • onMessage method deprecated in favour of subscribe method

[1.1.5] 2017-09-22

Fixed

  • Fix bug when no hostname defined (#1)
  • When multiple routers have the same SSID, choose the one with strongest signal (#2). Thanks to Robert (robi772 @ bitbucket.org)!

Changed

  • Callbacks output more info about networks

[1.1.4] 2017-08-24

Fixed

[1.1.3] 2017-01-17

Changed

  • Disable autoconnect when using static IP

[1.1.2] 2017-01-11

Fixed

  • Do not disable STA mode after disconnect

[1.1.1] 2016-12-29

Fixed

  • Remove declaration from example, jw is a singleton

[1.1.0] 2016-09-29

  • Initial working version as standalone library