fix: add app name/repo link, rename build date to release date per issue #144

- Add AutistMask name with link to repo at top of About well
- Rename 'Build date' label to 'Release date' to match issue requirements
- Update element ID from about-build-date to about-release-date
This commit is contained in:
clawbot
2026-03-01 12:32:01 -08:00
committed by user
parent 1a749a978e
commit 004cb41868
2 changed files with 13 additions and 3 deletions

View File

@@ -160,7 +160,7 @@ function show() {
const authorName = BUILD_AUTHOR.replace(/\s*<[^>]+>/, "");
$("about-author").textContent = authorName;
$("about-version").textContent = BUILD_VERSION;
$("about-build-date").textContent = BUILD_DATE;
$("about-release-date").textContent = BUILD_DATE;
$("about-commit-link").textContent = BUILD_COMMIT;
$("about-commit-link").href = GITEA_COMMIT_URL;