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

Commit 558ddad

Browse files
authored
v1.9.2 default to reconnect to the same host:port
### Release v1.9.2 1. Default to reconnect to the same `host:port` after connected for new HTTP sites. Check [Host/Headers not always sent with 1.10.1 #44](khoih-prog/AsyncHTTPRequest_Generic#44) 2. Use `allman astyle` and add `utils`
1 parent 2ec9909 commit 558ddad

30 files changed

+2448
-2185
lines changed

CONTRIBUTING.md

Lines changed: 33 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
1-
## Contributing to AsyncWebServer_Teensy41
1+
## Contributing to AsyncHTTPRequest_Teensy41
22

33
### Reporting Bugs
44

5-
Please report bugs in AsyncWebServer_Teensy41 if you find them.
5+
Please report bugs in AsyncHTTPRequest_Teensy41 if you find them.
66

77
However, before reporting a bug please check through the following:
88

9-
* [Existing Open Issues](https://github.com/khoih-prog/AsyncWebServer_Teensy41/issues) - someone might have already encountered this.
9+
* [Existing Open Issues](https://github.com/khoih-prog/AsyncHTTPRequest_Teensy41/issues) - someone might have already encountered this.
1010

11-
If you don't find anything, please [open a new issue](https://github.com/khoih-prog/AsyncWebServer_Teensy41/issues/new).
11+
If you don't find anything, please [open a new issue](https://github.com/khoih-prog/AsyncHTTPRequest_Teensy41/issues/new).
1212

1313
### How to submit a bug report
1414

1515
Please ensure to specify the following:
1616

1717
* Arduino IDE version (e.g. 1.8.19) or Platform.io version
1818
* `Teensyduino` Core Version (e.g. `Teensyduino core v1.57`)
19-
* `QNEthernet` library version (e.g. `QNEthernet v0.15.0`)
19+
* `QNEthernet` library version (e.g. `QNEthernet v0.16.0`)
2020
* Board type and relevant info
2121
* Contextual information (e.g. what you were trying to achieve)
2222
* Simplest possible steps to reproduce
@@ -30,26 +30,49 @@ Please ensure to specify the following:
3030
```
3131
Arduino IDE version: 1.8.19
3232
Teensyduino core v1.57
33-
Teensy 4.1 using QNEthernet v0.15.0
33+
Teensy 4.1 using QNEthernet v0.16.0
3434
OS: Ubuntu 20.04 LTS
35-
Linux xy-Inspiron-3593 5.15.0-50-generic #56~20.04.1-Ubuntu SMP Tue Sep 27 15:51:29 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux
35+
Linux xy-Inspiron-3593 5.15.0-52-generic #58~20.04.1-Ubuntu SMP Thu Oct 13 13:09:46 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux
3636
3737
Context:
38-
I encountered a crash when using this library
39-
38+
I encountered a crash while using this library
4039
Steps to reproduce:
4140
1. ...
4241
2. ...
4342
3. ...
4443
4. ...
4544
```
45+
46+
### Additional context
47+
48+
Add any other context about the problem here.
49+
50+
---
51+
4652
### Sending Feature Requests
4753

4854
Feel free to post feature requests. It's helpful if you can explain exactly why the feature would be useful.
4955

50-
There are usually some outstanding feature requests in the [existing issues list](https://github.com/khoih-prog/AsyncWebServer_Teensy41/issues?q=is%3Aopen+is%3Aissue+label%3Aenhancement), feel free to add comments to them.
56+
There are usually some outstanding feature requests in the [existing issues list](https://github.com/khoih-prog/AsyncHTTPRequest_Teensy41/issues?q=is%3Aopen+is%3Aissue+label%3Aenhancement), feel free to add comments to them.
57+
58+
---
5159

5260
### Sending Pull Requests
5361

5462
Pull Requests with changes and fixes are also welcome!
5563

64+
Please use the `astyle` to reformat the updated library code as follows (demo for Ubuntu Linux)
65+
66+
1. Change directory to the library GitHub
67+
68+
```
69+
xy@xy-Inspiron-3593:~$ cd Arduino/xy/AsyncHTTPRequest_Teensy41_GitHub/
70+
xy@xy-Inspiron-3593:~/Arduino/xy/AsyncHTTPRequest_Teensy41_GitHub$
71+
```
72+
73+
2. Issue astyle command
74+
75+
```
76+
xy@xy-Inspiron-3593:~/Arduino/xy/AsyncHTTPRequest_Teensy41_GitHub$ bash utils/restyle.sh
77+
```
78+

0 commit comments

Comments
 (0)