From ec0240800394743314c2c231e95334950412b25c Mon Sep 17 00:00:00 2001 From: Roman3349 Date: Tue, 27 Sep 2016 11:07:03 +0200 Subject: [PATCH] Add information about authors, examples and version to @PlatformIO Library Registry manifest file Signed-off-by: Roman3349 --- library.json | 44 +++++++++++++++++++++++++------------------- 1 file changed, 25 insertions(+), 19 deletions(-) diff --git a/library.json b/library.json index 071e74c..43f29b1 100644 --- a/library.json +++ b/library.json @@ -1,22 +1,28 @@ { -"name": "Time", -"frameworks": "Arduino", -"keywords": "Time, date, hour, minute, second, day, week, month, year, RTC", -"description": "Time keeping library", -"url": "http://playground.arduino.cc/Code/Time", -"authors": -[ -{ - "name": "Michael Margolis" -}, -{ - "name": "Paul Stoffregen" -} -], -"repository": -{ - "type": "git", - "url": "https://github.com/PaulStoffregen/Time" -} + "name": "Time", + "description": "Time keeping library", + "keywords": "Time, date, hour, minute, second, day, week, month, year, RTC", + "authors": [ + { + "name": "Michael Margolis" + }, + { + "name": "Paul Stoffregen", + "email": "paul@pjrc.com", + "url": "http://www.pjrc.com", + "maintainer": true + } + ], + "repository": { + "type": "git", + "url": "https://github.com/PaulStoffregen/Time" + }, + "version": "1.5", + "homepage": "http://playground.arduino.cc/Code/Time", + "frameworks": "Arduino", + "examples": [ + "examples/*/*.ino", + "examples/*/*/*.pde" + ] }