diff --git a/espressif8266_library.json b/espressif8266_library.json deleted file mode 100644 index fee6410..0000000 --- a/espressif8266_library.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "name":"ESPAsyncWebServer", - "description":"Asynchronous HTTP and WebSocket Server Library for ESP8266", - "keywords":"http,async,websocket,webserver", - "authors": - { - "name": "Hristo Gochkov", - "maintainer": true - }, - "repository": - { - "type": "git", - "url": "https://github.com/me-no-dev/ESPAsyncWebServer.git" - }, - "version": "1.1.0", - "license": "LGPL-3.0", - "frameworks": "arduino", - "platforms": ["espressif8266", "espressif8266_stage"], - "dependencies": - { - "name": "ESPAsyncTCP" - } -} diff --git a/espressif32_library.json b/library.json similarity index 53% rename from espressif32_library.json rename to library.json index baea139..e4c6ca6 100644 --- a/espressif32_library.json +++ b/library.json @@ -1,6 +1,6 @@ { - "name":"AsyncWebServer", - "description":"Asynchronous HTTP and WebSocket Server Library for ESP32", + "name":"ESP Async WebServer", + "description":"Asynchronous HTTP and WebSocket Server Library for ESP8266 and ESP32", "keywords":"http,async,websocket,webserver", "authors": { @@ -12,12 +12,18 @@ "type": "git", "url": "https://github.com/me-no-dev/ESPAsyncWebServer.git" }, - "version": "1.1.0", + "version": "1.1.1", "license": "LGPL-3.0", "frameworks": "arduino", - "platforms": ["espressif32", "espressif32_stage"], - "dependencies": - { - "name": "AsyncTCP" - } + "platforms": ["espressif8266", "espressif32"], + "dependencies": [ + { + "name": "ESPAsyncTCP", + "platforms": "espressif8266" + }, + { + "name": "AsyncTCP", + "platforms": "espressif32" + } + ] }