From 18117d000103dc154a6e6874850b2ea5ad8e2f9d Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Thu, 23 Oct 2014 22:21:55 +0300 Subject: [PATCH 1/2] Avoid trademark issues with library name Added frameworks and platforms fields Updated Library Registry: http://platformio.ikravets.com/#!/lib/show/63/MFRC522 --- library.json | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/library.json b/library.json index 9b74a18..aecca56 100644 --- a/library.json +++ b/library.json @@ -1,10 +1,12 @@ { - "name": "Arduino-MFRC522", + "name": "MFRC522", "keywords": "rfid, spi", - "description": "Read a card using a MFRC522 reader on your SPI interface on your Arduino", + "description": "Read a card using a MFRC522 reader on your SPI interface", "repository": { "type": "git", "url": "https://github.com/miguelbalboa/rfid.git" - } + }, + "frameworks": "arduino", + "platforms": "atmelavr" } From d0ddd3df0231c064bd89dd2df711759337d5a5c7 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Thu, 23 Oct 2014 22:37:17 +0300 Subject: [PATCH 2/2] Exclude "doc" dir --- library.json | 1 + 1 file changed, 1 insertion(+) diff --git a/library.json b/library.json index aecca56..96917e1 100644 --- a/library.json +++ b/library.json @@ -7,6 +7,7 @@ "type": "git", "url": "https://github.com/miguelbalboa/rfid.git" }, + "exclude": "doc", "frameworks": "arduino", "platforms": "atmelavr" }