forked from arduino-libraries/WiFi101
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCHANGELOG
53 lines (39 loc) · 1.95 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
WiFi101 0.9.1 - 2016.04.19
* Increased compatibility with 3rd party boards and architectures.
* Rename WiFiMdnsResponder.h/cpp to WiFiMDNSResponder.h/cpp
* Fixed buffering of UDP packet
WiFi101 0.9.0 - 2016.03.21
* Fixed WiFi.status() hanging when shield is not present
* Fixed MAC address returning 00:00:00:00:00:00 with firmware version 19.3.0
* Fixed SSL write functionality with firmware version 19.3.0
* Fixed previous version of the library not working on the Uno and other boards that used PCINT's
* Added beginAP(...) API's to create access point with WEP passwords
* Fixed beginAP(...) channel off by one error
* Fixed WiFi.status() always returning WL_CONNECTED once connected, even if access point is disconnected later
* Added beginMulti API for Multicast UDP support
* Added WiFiMDNSResponder class and MDNS Web server example
WiFi101 0.8.0 - 2016.02.15
* Added example for Access Point web server (thanks @ladyada)
* Fixed MAC Address printed in reverse order
* Allow another library to override PCINT ISR (fix issues when using the WiFi101
library with other libraries like SoftwareSerial)
WiFi101 0.7.0 - 2015.01.11
* Added support for WiFi Firmware 19.4.4
* WiFi.hostByName(...) will not try resolve the domain name if it's already a numeric IP
* Fixed manual IP configuration (no DHCP)
* Fixed WiFiServer.available(), now follows API specification
* Fixed WEP key connection
* Fixed WiFiClient copy constructor and assignment operator. This improves stability when
Client objects are assigned or returned from functions.
* Control pins are now configurable through defines from variant.
WiFi101 0.6.0 - 2015.11.27
* Fixed bug with AVR boards when Web Server is used
* Fixed UDP read bug on AVR Boards
* Added missing inlcude for SSL Client
* Fixed peek() function
* Fixed some examples
WiFi101 0.5.1 - 2015.10.06
* Improved support for AVR Boards (Uno, Mega, Leonardo, etc.) and
ARM based boards (Due and Zero).
WiFi101 0.5.0 - 2015.10.01
* Initial release