Link the project page from the README - #12
Merged
Conversation
The project now has a home at https://kkdev92.dev/. The repository's Homepage field points there, but the README did not, so a reader arriving at the file itself had no way to reach it. There is no package manifest to carry the URL the way package.json or a .csproj would: this project publishes nothing to a registry. CMake's project(... HOMEPAGE_URL ...) would be the closest equivalent, but ESP-IDF discards it -- tools/cmake/project.cmake calls __project(${project_name} C CXX ASM) and drops any further arguments -- so setting it there would look configured and do nothing. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The project now has a home at https://kkdev92.dev/. The repository's Homepage
field points there, but the README did not, so a reader arriving at the file
itself had no way to reach it.
One line under the tagline, above the status line.
Why not a manifest field
There is no package manifest here to carry the URL the way
package.json'shomepageor a.csproj's<PackageProjectUrl>would — this project publishesnothing to a registry, and the only
idf_component.ymlis a dependencydeclaration for the display component rather than a publishable manifest.
CMake's
project(... HOMEPAGE_URL ...)is the closest real equivalent and isavailable at the
cmake_minimum_required(VERSION 3.16.0)this project sets, butESP-IDF discards it:
tools/cmake/project.cmakecalls__project(${project_name} C CXX ASM)and passes nothing further. Setting itwould look configured and do nothing, so it is left out.
🤖 Generated with Claude Code