Skip to content
This repository was archived by the owner on Feb 4, 2023. It is now read-only.

Commit 89d1034

Browse files
authored
v1.10.0 to fix bug and clean-up
### Releases v1.10.0 1. Fix bug. 2. Clean up
1 parent 89079c9 commit 89d1034

File tree

20 files changed

+359
-358
lines changed

20 files changed

+359
-358
lines changed

changelog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
## Table of Contents
1313

1414
* [Changelog](#changelog)
15+
* [Releases v1.10.0](#releases-v1100)
1516
* [Releases v1.9.2](#releases-v192)
1617
* [Releases v1.9.1](#releases-v191)
1718
* [Releases v1.9.0](#releases-v190)
@@ -42,6 +43,11 @@
4243

4344
## Changelog
4445

46+
### Releases v1.10.0
47+
48+
1. Fix bug.
49+
2. Clean up
50+
4551
### Releases v1.9.2
4652

4753
1. Not try to reconnect to the same host:port after connected. Check [setReuse feature #12](https://github.com/khoih-prog/AsyncHTTPSRequest_Generic/issues/12)

examples/AsyncCustomHeader_STM32/AsyncCustomHeader_STM32.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
//char GET_ServerAddress[] = "192.168.2.110/";
2525
char GET_ServerAddress[] = "http://worldtimeapi.org/api/timezone/America/Toronto.txt";
2626

27-
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN_TARGET "AsyncHTTPRequest_Generic v1.9.2"
28-
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN 1009002
27+
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN_TARGET "AsyncHTTPRequest_Generic v1.10.0"
28+
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN 1010000
2929

3030
// 600s = 10 minutes to not flooding, 60s in testing
3131
#define HTTP_REQUEST_INTERVAL_MS 60000 //600000

examples/AsyncDweetGet_STM32/AsyncDweetGet_STM32.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ const char GET_ServerAddress[] = "dweet.io";
3535
// use your own thing name here
3636
String dweetName = "/dweet/for/currentSecond?second=";
3737

38-
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN_TARGET "AsyncHTTPRequest_Generic v1.9.2"
39-
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN 1009002
38+
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN_TARGET "AsyncHTTPRequest_Generic v1.10.0"
39+
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN 1010000
4040

4141
// 600s = 10 minutes to not flooding, 60s in testing
4242
#define HTTP_REQUEST_INTERVAL_MS 60000 //600000

examples/AsyncDweetPost_STM32/AsyncDweetPost_STM32.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ const char POST_ServerAddress[] = "dweet.io";
2929
// use your own thing name here
3030
String dweetName = "/dweet/for/pinA0-Read?";
3131

32-
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN_TARGET "AsyncHTTPRequest_Generic v1.9.2"
33-
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN 1009002
32+
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN_TARGET "AsyncHTTPRequest_Generic v1.10.0"
33+
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN 1010000
3434

3535
// 600s = 10 minutes to not flooding, 60s in testing
3636
#define HTTP_REQUEST_INTERVAL_MS 60000 //600000

examples/AsyncHTTPMultiRequests_ESP/AsyncHTTPMultiRequests_ESP.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@
4444
#error This code is intended to run on the ESP8266 or ESP32 platform! Please check your Tools->Board setting.
4545
#endif
4646

47-
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN_TARGET "AsyncHTTPRequest_Generic v1.9.2"
48-
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN 1009002
47+
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN_TARGET "AsyncHTTPRequest_Generic v1.10.0"
48+
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN 1010000
4949

5050
// Level from 0-4
5151
#define ASYNC_HTTP_DEBUG_PORT Serial

examples/AsyncHTTPRequest_ESP/AsyncHTTPRequest_ESP.ino

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646

4747
// Level from 0-4
4848
#define ASYNC_HTTP_DEBUG_PORT Serial
49-
#define _ASYNC_HTTP_LOGLEVEL_ 3
49+
#define _ASYNC_HTTP_LOGLEVEL_ 4
5050

5151
// 300s = 5 minutes to not flooding
5252
#define HTTP_REQUEST_INTERVAL 60 //300
@@ -65,8 +65,8 @@ const char* password = "your_pass";
6565
#include <WiFi.h>
6666
#endif
6767

68-
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN_TARGET "AsyncHTTPRequest_Generic v1.9.2"
69-
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN 1009002
68+
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN_TARGET "AsyncHTTPRequest_Generic v1.10.0"
69+
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN 1010000
7070

7171
// To be included only in main(), .ino with setup() to avoid `Multiple Definitions` Linker Error
7272
#include <AsyncHTTPRequest_Generic.h> // https://github.com/khoih-prog/AsyncHTTPRequest_Generic

examples/AsyncHTTPRequest_ESP8266_Ethernet/AsyncHTTPRequest_ESP8266_Ethernet.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,8 @@ using TCPClient = WiFiClient;
9595

9696
//////////////////////////////////////////////////////////
9797

98-
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN_TARGET "AsyncHTTPRequest_Generic v1.9.2"
99-
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN 1009002
98+
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN_TARGET "AsyncHTTPRequest_Generic v1.10.0"
99+
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN 1010000
100100

101101
// To be included only in main(), .ino with setup() to avoid `Multiple Definitions` Linker Error
102102
#include <AsyncHTTPRequest_Generic.h> // https://github.com/khoih-prog/AsyncHTTPRequest_Generic

examples/AsyncHTTPRequest_ESP_WiFiManager/AsyncHTTPRequest_ESP_WiFiManager.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@
4949
#define ESP_ASYNC_WIFIMANAGER_VERSION_MIN_TARGET "ESPAsync_WiFiManager v1.15.0"
5050
#define ESP_ASYNC_WIFIMANAGER_VERSION_MIN 1015000
5151

52-
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN_TARGET "AsyncHTTPRequest_Generic v1.9.2"
53-
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN 1009002
52+
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN_TARGET "AsyncHTTPRequest_Generic v1.10.0"
53+
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN 1010000
5454

5555
// Level from 0-4
5656
#define ASYNC_HTTP_DEBUG_PORT Serial

examples/AsyncHTTPRequest_STM32/AsyncHTTPRequest_STM32.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@
4242

4343
#include "defines.h"
4444

45-
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN_TARGET "AsyncHTTPRequest_Generic v1.9.2"
46-
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN 1009002
45+
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN_TARGET "AsyncHTTPRequest_Generic v1.10.0"
46+
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN 1010000
4747

4848
// 600s = 10 minutes to not flooding, 60s in testing
4949
#define HTTP_REQUEST_INTERVAL_MS 60000 //600000

examples/AsyncSimpleGET_STM32/AsyncSimpleGET_STM32.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
//char GET_ServerAddress[] = "ipv4bot.whatismyipaddress.com/";
2525
char GET_ServerAddress[] = "http://worldtimeapi.org/api/timezone/America/Toronto.txt";
2626

27-
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN_TARGET "AsyncHTTPRequest_Generic v1.9.2"
28-
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN 1009002
27+
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN_TARGET "AsyncHTTPRequest_Generic v1.10.0"
28+
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN 1010000
2929

3030
// 600s = 10 minutes to not flooding, 60s in testing
3131
#define HTTP_REQUEST_INTERVAL_MS 60000 //600000

0 commit comments

Comments
 (0)