Skip to content
This repository has been archived by the owner on Jan 29, 2023. It is now read-only.

Commit

Permalink
v1.7.7 to change license to GPLv3
Browse files Browse the repository at this point in the history
### Releases v1.7.7

1. Change license from `MIT` to `GPLv3`. Check [Licensing of SSLClient #16](#16)
  • Loading branch information
khoih-prog authored Mar 19, 2022
1 parent 17fbc8c commit 5f0638b
Show file tree
Hide file tree
Showing 26 changed files with 78 additions and 77 deletions.
6 changes: 3 additions & 3 deletions src/EthernetHttpClient_SSL.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
Licensed under MIT license
Version: 1.7.6
Version: 1.7.7
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -23,7 +22,8 @@
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
*************************************************************************************************************************************/
1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
*****************************************************************************************************************************/

// Library to simplify HTTP fetching on Arduino
// (c) Copyright Arduino. 2016
Expand Down
6 changes: 3 additions & 3 deletions src/EthernetWebServer_SSL-impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
Licensed under MIT license
Version: 1.7.6
Version: 1.7.7
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -23,7 +22,8 @@
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
*************************************************************************************************************************************/
1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
*****************************************************************************************************************************/

#pragma once

Expand Down
12 changes: 6 additions & 6 deletions src/EthernetWebServer_SSL.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
Licensed under MIT license
Version: 1.7.6
Version: 1.7.7
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -23,17 +22,18 @@
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
*************************************************************************************************************************************/
1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
*****************************************************************************************************************************/

#pragma once

#define ETHERNET_WEBSERVER_SSL_VERSION "EthernetWebServer_SSL v1.7.6"
#define ETHERNET_WEBSERVER_SSL_VERSION "EthernetWebServer_SSL v1.7.7"

#define ETHERNET_WEBSERVER_SSL_VERSION_MAJOR 1
#define ETHERNET_WEBSERVER_SSL_VERSION_MINOR 7
#define ETHERNET_WEBSERVER_SSL_VERSION_PATCH 6
#define ETHERNET_WEBSERVER_SSL_VERSION_PATCH 7

#define ETHERNET_WEBSERVER_SSL_VERSION_INT 1007006
#define ETHERNET_WEBSERVER_SSL_VERSION_INT 1007007

#define USE_NEW_WEBSERVER_VERSION true

Expand Down
6 changes: 3 additions & 3 deletions src/EthernetWrapper_SSL.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
Licensed under MIT license
Version: 1.7.6
Version: 1.7.7
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -23,7 +22,8 @@
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
*************************************************************************************************************************************/
1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
*****************************************************************************************************************************/
#pragma once

#include "detail/Debug.h"
Expand Down
6 changes: 3 additions & 3 deletions src/Ethernet_HTTPClient/Ethernet_HttpClient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
Licensed under MIT license
Version: 1.7.6
Version: 1.7.7
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -23,7 +22,8 @@
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
*************************************************************************************************************************************/
1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
*****************************************************************************************************************************/

// Class to simplify HTTP fetching on Arduino
// (c) Copyright 2010-2011 MCQN Ltd
Expand Down
6 changes: 3 additions & 3 deletions src/Ethernet_HTTPClient/Ethernet_HttpClient.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
Licensed under MIT license
Version: 1.7.6
Version: 1.7.7
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -23,7 +22,8 @@
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
*************************************************************************************************************************************/
1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
*****************************************************************************************************************************/

// Class to simplify HTTP fetching on Arduino
// (c) Copyright MCQN Ltd. 2010-2012
Expand Down
6 changes: 3 additions & 3 deletions src/Ethernet_HTTPClient/Ethernet_URLEncoder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
Licensed under MIT license
Version: 1.7.6
Version: 1.7.7
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -23,7 +22,8 @@
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
*************************************************************************************************************************************/
1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
*****************************************************************************************************************************/

// Library to simplify HTTP fetching on Arduino
// (c) Copyright Arduino. 2019
Expand Down
6 changes: 3 additions & 3 deletions src/Ethernet_HTTPClient/Ethernet_URLEncoder.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
Licensed under MIT license
Version: 1.7.6
Version: 1.7.7
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -23,7 +22,8 @@
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
*************************************************************************************************************************************/
1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
*****************************************************************************************************************************/

// Library to simplify HTTP fetching on Arduino
// (c) Copyright Arduino. 2019
Expand Down
6 changes: 3 additions & 3 deletions src/Ethernet_HTTPClient/Ethernet_WebSocketClient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
Licensed under MIT license
Version: 1.7.6
Version: 1.7.7
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -23,7 +22,8 @@
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
*************************************************************************************************************************************/
1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
*****************************************************************************************************************************/

// (c) Copyright Arduino. 2016
// Released under Apache License, version 2.0
Expand Down
6 changes: 3 additions & 3 deletions src/Ethernet_HTTPClient/Ethernet_WebSocketClient.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
Licensed under MIT license
Version: 1.7.6
Version: 1.7.7
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -23,7 +22,8 @@
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
*************************************************************************************************************************************/
1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
*****************************************************************************************************************************/

// (c) Copyright Arduino. 2016
// Released under Apache License, version 2.0
Expand Down
7 changes: 4 additions & 3 deletions src/Parsing_SSL-impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
Licensed under MIT license
Version: 1.7.6
Version: 1.7.7
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -23,7 +22,9 @@
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
*************************************************************************************************************************************/
1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
*****************************************************************************************************************************/

#pragma once

#include <Arduino.h>
Expand Down
6 changes: 3 additions & 3 deletions src/detail/Debug.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
Licensed under MIT license
Version: 1.7.6
Version: 1.7.7
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -23,7 +22,8 @@
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
*************************************************************************************************************************************/
1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
*****************************************************************************************************************************/

#pragma once

Expand Down
6 changes: 3 additions & 3 deletions src/detail/ESP_RequestHandlersImpl.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
Licensed under MIT license
Version: 1.7.6
Version: 1.7.7
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -23,7 +22,8 @@
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
*************************************************************************************************************************************/
1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
*****************************************************************************************************************************/

#pragma once

Expand Down
6 changes: 3 additions & 3 deletions src/detail/RequestHandler.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
Licensed under MIT license
Version: 1.7.6
Version: 1.7.7
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -23,7 +22,8 @@
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
*************************************************************************************************************************************/
1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
*****************************************************************************************************************************/

#pragma once

Expand Down
6 changes: 3 additions & 3 deletions src/detail/RequestHandlersImpl.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
Licensed under MIT license
Version: 1.7.6
Version: 1.7.7
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -23,7 +22,8 @@
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
*************************************************************************************************************************************/
1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
*****************************************************************************************************************************/

#pragma once

Expand Down
6 changes: 3 additions & 3 deletions src/detail/esp_detail/mimetable.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
Licensed under MIT license
Version: 1.7.6
Version: 1.7.7
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -23,7 +22,8 @@
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
*************************************************************************************************************************************/
1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
*****************************************************************************************************************************/

#if (ESP32 || ESP8266)

Expand Down
6 changes: 3 additions & 3 deletions src/detail/esp_detail/mimetable.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
Licensed under MIT license
Version: 1.7.6
Version: 1.7.7
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -23,7 +22,8 @@
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
*************************************************************************************************************************************/
1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
*****************************************************************************************************************************/

#pragma once

Expand Down
6 changes: 3 additions & 3 deletions src/detail/mimetable.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
Licensed under MIT license
Version: 1.7.6
Version: 1.7.7
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -23,7 +22,8 @@
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
*************************************************************************************************************************************/
1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
*****************************************************************************************************************************/

#pragma once

Expand Down
Loading

0 comments on commit 5f0638b

Please sign in to comment.