From 1cc1285c6c670f410d9289b122abf4d362c7f62a Mon Sep 17 00:00:00 2001 From: kkdev92 Date: Tue, 18 Aug 2026 22:51:55 +0900 Subject: [PATCH] Link the project page from the README 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) --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 73685b9..0a6d04c 100644 --- a/README.md +++ b/README.md @@ -15,6 +15,8 @@ The firmware sends audio only when a conversation is started and contains no telemetry service. *Built as a compact, inspectable base for one documented hardware setup.* +Project page: + > **Status:** 0.1.0 (best-effort maintenance) ---