From 9a20882b1cfe88ada1c9f38d3d0c144209ee7c83 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Wed, 27 May 2015 12:53:20 +0300 Subject: [PATCH 1/2] @PlatformIO Library Registry manifest file * This library in Web Registry: http://platformio.org/#!/lib/show/5/Webduino * Specification: [PlatformIO Library Manager](http://docs.platformio.org/en/latest/librarymanager/index.html) * Integration: [IDE Integration](http://docs.platformio.org/en/latest/ide.html) --- library.json | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 library.json diff --git a/library.json b/library.json new file mode 100644 index 0000000..12d7781 --- /dev/null +++ b/library.json @@ -0,0 +1,33 @@ +{ + "name": "Webduino", + "keywords": "http, web, server, json, rest, ethernet", + "description": "An extensible web server library (for use with the Arduino WizNet Ethernet Shield)", + "authors": + [ + { + "name": "Ben Combee", + "email": "ben.combee@gmail.com", + "url": "https://code.google.com/u/ben.combee/", + "maintainer": true + }, + { + "name": "Ran Talbott" + }, + { + "name": "Christopher Lee" + }, + { + "name": "Martin Lormes" + }, + { + "name": "Francisco M Cuenca-Acuna" + } + ], + "repository": + { + "type": "git", + "url": "https://github.com/sirleech/Webduino.git" + }, + "frameworks": "arduino", + "platforms": "atmelavr" +} From 169bd2e100c8a5f26805f52a68419013cee35ef2 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Sat, 11 Jul 2020 18:46:01 +0300 Subject: [PATCH 2/2] Bump version to 1.0.0 --- library.json | 1 + 1 file changed, 1 insertion(+) diff --git a/library.json b/library.json index 12d7781..0f5ce34 100644 --- a/library.json +++ b/library.json @@ -1,5 +1,6 @@ { "name": "Webduino", + "version": "1.0.0", "keywords": "http, web, server, json, rest, ethernet", "description": "An extensible web server library (for use with the Arduino WizNet Ethernet Shield)", "authors":