From 4a1cb65c6769238b3fbbc41b2e648742bd12e857 Mon Sep 17 00:00:00 2001 From: David Cermak Date: Thu, 14 Nov 2024 12:03:56 +0100 Subject: [PATCH] chore(mdns): Add more info to idf_component.yml Fixing component manager warnings: WARNING: A component description has not been provided in the manifest file. Please update your file and include a brief description of the component.This will help other developers understand the purpose and functionality of your component. Documentation: https://***/projects/idf-component-manager/en/latest/guides/packaging_components.html#create-idf-component-yml WARNING: A homepage URL has not been provided in the manifest file. Please update your file and include the URL to the component's homepage. Documentation: https://***/projects/idf-component-manager/en/latest/guides/packaging_components.html#create-idf-component-yml --- components/mdns/idf_component.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/components/mdns/idf_component.yml b/components/mdns/idf_component.yml index 9617bed5b..e52779d8f 100644 --- a/components/mdns/idf_component.yml +++ b/components/mdns/idf_component.yml @@ -1,6 +1,9 @@ version: "1.4.1" -description: mDNS -url: https://github.com/espressif/esp-protocols/tree/master/components/mdns +description: "Multicast UDP service used to provide local network service and host discovery." +url: "https://github.com/espressif/esp-protocols/tree/master/components/mdns" +issues: "https://github.com/espressif/esp-protocols/issues" +documentation: "https://docs.espressif.com/projects/esp-protocols/mdns/docs/latest/en/index.html" +repository: "https://github.com/espressif/esp-protocols.git" dependencies: idf: version: ">=5.0"