CHANGES.txt 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. 2.2.2 (2017-11-03)
  2. * Make SSID a const char * in begin() #116
  3. * Replace NULL with 0 to avoid compilation warnings
  4. * Changing _ESPLOGLEVEL_ requires editing debug.h #88
  5. 2.2.1 (2017-01-02)
  6. * Fixing Issue #69 (Can't declare member function to have static linkage)
  7. * Supporting ESP8266 firmware 2.X
  8. 2.1.2 (2016-05-08)
  9. * Added retry in EspDrv::wifiDriverInit method
  10. * Clean buffer in ScanNetwork (bug #43)
  11. 2.1.1 (2016-05-09)
  12. * Implemented gatwayIP() and subnetMask() methods
  13. 2.1 (2016-03-13)
  14. * SSL connection support
  15. * Implementation of config and configAP methods
  16. * Fixed read methods WiFiEspClient.read(buf, size) and WiFiEspUDP::read(buf, size)
  17. * Fixed possible buffer overflow in EspDrv.sendCmdGet
  18. * Added beginAP methods similar to WiFi101 library - parameters order for beginAP is now different!
  19. 1.6 (2016-02-21)
  20. * Improved UDP support
  21. * Added WiFiEspClient.remoteIP() method
  22. * Consistent use use of uint16_t to manage port numbers
  23. * Added AT+CIPDINFO=1 during init to return remote IP and port with IPD
  24. * Added AT+CWAUTOCONN=0 during init to disable autoconnect
  25. 1.5.1 (2016-02-11)
  26. * Fix in EspDrv.getScanNetworks method
  27. * Fix buffer overflow in getFwVersion
  28. 1.5 (2016-01-25)
  29. * Implemented scanNetworks method
  30. * Increased ring buffer size to 32 to read long SSID names
  31. 1.4.2 (2016-01-05)
  32. * Fixed compilation problem when using WiFiEspClient.print
  33. 1.4.1 (2016-01-05)
  34. * Speed optimizations
  35. 1.4 (2016-01-04)
  36. * Reduced dynamic memory footprint
  37. 1.3 (2016-01-03)
  38. * UDP support (experimental)
  39. * Fixed WiFiEspClient.connected and WiFi.status and methods
  40. * Connection close detection
  41. * Ring buffer optimization
  42. * Client peek method fixed
  43. 1.2 (2015-12-29)
  44. * Redesigned WiFi.init method to accept a Stream object
  45. * Use CUR when starting the AP
  46. * Small improvements to samples
  47. 1.1 (2015-12-20)
  48. * Fix for receiving large data packets
  49. * Access point mode support
  50. * Ring buffer class is now used in EspDrv.cpp
  51. * Removed not implemented methods
  52. * Prints firmware version if not recognized
  53. * Multiple exclamation marks fixed for Arduino Mega
  54. * Cleaned up comments
  55. 1.0 (2015-12-11)
  56. * First stable release