From 25a21c3e7d84c8c15bb6204cd0c699e2d6365976 Mon Sep 17 00:00:00 2001 From: per1234 Date: Sat, 17 Jul 2021 11:00:14 -0700 Subject: [PATCH] Use valid categories in library.properties of bundled libraries (#8221) When using previous IDE versions, the use of an invalid category value caused a warning to be displayed on every compilation: WARNING: Category 'Network' in library lwIP_PPP is not valid. Setting to 'Uncategorized' WARNING: Category 'Network' in library lwIP_enc28j60 is not valid. Setting to 'Uncategorized' WARNING: Category 'Network' in library lwIP_w5500 is not valid. Setting to 'Uncategorized' WARNING: Category 'Network' in library lwIP_w5500 is not valid. Setting to 'Uncategorized' List of valid category values: https://arduino.github.io/arduino-cli/latest/library-specification/#libraryproperties-file-format --- libraries/lwIP_PPP/library.properties | 2 +- libraries/lwIP_enc28j60/library.properties | 2 +- libraries/lwIP_w5100/library.properties | 2 +- libraries/lwIP_w5500/library.properties | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/libraries/lwIP_PPP/library.properties b/libraries/lwIP_PPP/library.properties index 9b2293dbf..073769568 100644 --- a/libraries/lwIP_PPP/library.properties +++ b/libraries/lwIP_PPP/library.properties @@ -4,7 +4,7 @@ author=lwIP maintainer=esp8266/Arduino sentence=PPP interface paragraph=PPP interface for esp8266 arduino -category=Network +category=Communication url=https://github.com/esp8266/Arduino architectures=esp8266 dot_a_linkage=true diff --git a/libraries/lwIP_enc28j60/library.properties b/libraries/lwIP_enc28j60/library.properties index 444e0f1c4..28ebd2d5c 100644 --- a/libraries/lwIP_enc28j60/library.properties +++ b/libraries/lwIP_enc28j60/library.properties @@ -4,7 +4,7 @@ author=Nicholas Humfrey maintainer=esp8266/Arduino sentence=Ethernet driver paragraph=ENC28J60 ethernet drivers for lwIP and esp8266 Arduino from https://github.com/njh/EtherSia/tree/master/src/enc28j60.cpp -category=Network +category=Communication url=https://github.com/esp8266/Arduino architectures=esp8266 dot_a_linkage=true diff --git a/libraries/lwIP_w5100/library.properties b/libraries/lwIP_w5100/library.properties index b65d4fdb6..f0296a926 100644 --- a/libraries/lwIP_w5100/library.properties +++ b/libraries/lwIP_w5100/library.properties @@ -4,7 +4,7 @@ author=Nicholas Humfrey maintainer=esp8266/Arduino sentence=Ethernet driver paragraph=Wiznet5100 ethernet drivers for lwIP and esp8266 Arduino from https://github.com/njh/W5100MacRaw -category=Network +category=Communication url=https://github.com/esp8266/Arduino architectures=esp8266 dot_a_linkage=true diff --git a/libraries/lwIP_w5500/library.properties b/libraries/lwIP_w5500/library.properties index 8cb76d861..de0c87eaf 100644 --- a/libraries/lwIP_w5500/library.properties +++ b/libraries/lwIP_w5500/library.properties @@ -4,7 +4,7 @@ author=Nicholas Humfrey maintainer=esp8266/Arduino sentence=Ethernet driver paragraph=Wiznet5500 ethernet drivers for lwIP and esp8266 Arduino from https://github.com/njh/W5500MacRaw -category=Network +category=Communication url=https://github.com/esp8266/Arduino architectures=esp8266 dot_a_linkage=true