From 2d79d80d7873158b8b4044dc2e99bb1cbedddc37 Mon Sep 17 00:00:00 2001 From: keremers Date: Mon, 3 Oct 2016 01:24:06 +0300 Subject: [PATCH] Remove '' category and Invalid version warnings library.properties does not include the category keyword. This causes Arduino IDE to create a warning: WARNING: Category '' in library UIPEthernet is not valid. Setting to 'Uncategorized' version string is 1.04 this also causes a warning. This is a major nuisance because the warning message keeps repeating itself: Invalid version found: 1.04 Arduino IDE expects the version number to be in the 1.0.4 format instead of 1.04. 1.04 causes library to report "invalid" version. Hence the warning. --- library.properties | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/library.properties b/library.properties index 158ae31..4919d91 100644 --- a/library.properties +++ b/library.properties @@ -3,8 +3,9 @@ author=ntruchsess email=Norbert Truchsess sentence=Ethernet library for ENC28J60 paragraph=implements the same API as stock Ethernet-lib. Just replace the include of Ethernet.h with UIPEthernet.h +category=Communication url=https://github.com/ntruchsess/arduino_uip architectures=avr -version=1.04 +version=1.0.4 dependencies= core-dependencies=arduino (>=1.5.0)