Skip to content

Commit 42c5256

Browse files
committed
fixed and published PIO package
1 parent 945134e commit 42c5256

File tree

1 file changed

+56
-25
lines changed

1 file changed

+56
-25
lines changed

library.json

Lines changed: 56 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,18 @@
11
{
22
"name": "ESPAsyncHTTPUpdateServer",
33
"version": "1.0.0",
4-
"description": "Simple HTTP Update server based on the ESP8266WebServer modifed for ESPAsyncWebServer(by me-no-dev).",
5-
"keywords": "ESP, Async, OTA, WebServer, HTTP, Update",
4+
"description": "Simple HTTP Update Server for ESPAsyncWebServer(by me-no-dev). This library lets you to update Firmware/FileSystem of ESP32/ESP8266 OTA(Over The Air) from a web page.",
5+
"keywords":
6+
[
7+
"ESP",
8+
"Async",
9+
"OTA",
10+
"WebServer",
11+
"HTTP",
12+
"UpdateServer",
13+
"FileSystem",
14+
"Firmware"
15+
],
616
"repository":
717
{
818
"type": "git",
@@ -12,32 +22,53 @@
1222
[
1323
{
1424
"name": "Mohammad Mahdi Nazari",
15-
"email": "IPdotSetAF@gmail.com",
25+
"email": "ipdotsetaf@gmail.com",
1626
"url": "https://github.com/IPdotSetAF",
1727
"maintainer": true
1828
}
1929
],
20-
"license": "LGPL-V2.1",
30+
"license": "LGPL-2.1-only",
2131
"homepage": "https://github.com/IPdotSetAF/ESPAsyncHTTPUpdateServer",
22-
"dependencies": [
23-
{"me-no-dev/ESP Async WebServer": "*"}
24-
,
25-
{
26-
"name": "SPIFFS",
27-
"frameworks": "arduino",
28-
"platforms": "espressif32"
29-
},
30-
{
31-
"name": "LittleFS",
32-
"frameworks": "arduino",
33-
"platforms": "espressif32"
34-
},
35-
{
36-
"name": "Update",
37-
"frameworks": "arduino",
38-
"platforms": "espressif32"
39-
}
40-
],
41-
"frameworks": "*",
42-
"platforms": "*"
32+
"dependencies":
33+
[
34+
{
35+
"owner": "me-no-dev",
36+
"name": "ESP Async WebServer",
37+
"frameworks": "arduino",
38+
"platforms":
39+
[
40+
"espressif32",
41+
"espressif8266"
42+
],
43+
"version": ">=1.2.3"
44+
},
45+
{
46+
"name": "SPIFFS",
47+
"frameworks": "arduino",
48+
"platforms": "espressif32",
49+
"version": "*"
50+
},
51+
{
52+
"name": "LittleFS",
53+
"frameworks": "arduino",
54+
"platforms":
55+
[
56+
"espressif32",
57+
"espressif8266"
58+
],
59+
"version": "*"
60+
},
61+
{
62+
"name": "Update",
63+
"frameworks": "arduino",
64+
"platforms": "espressif32",
65+
"version": "*"
66+
}
67+
],
68+
"frameworks": "arduino",
69+
"platforms":
70+
[
71+
"espressif32",
72+
"espressif8266"
73+
]
4374
}

0 commit comments

Comments
 (0)