From 004cb4186897b8c15c76d9b2f02bc8f687d62628 Mon Sep 17 00:00:00 2001 From: clawbot Date: Sun, 1 Mar 2026 12:32:01 -0800 Subject: [PATCH] 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 --- src/popup/index.html | 14 ++++++++++++-- src/popup/views/settings.js | 2 +- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/src/popup/index.html b/src/popup/index.html index 53c9113..a38e901 100644 --- a/src/popup/index.html +++ b/src/popup/index.html @@ -1005,6 +1005,16 @@

About

+

+ AutistMask + — Minimal Ethereum wallet browser extension. +

License: @@ -1022,8 +1032,8 @@ >
- Build date: - + Release date: +
Commit: diff --git a/src/popup/views/settings.js b/src/popup/views/settings.js index cc36a85..db5b824 100644 --- a/src/popup/views/settings.js +++ b/src/popup/views/settings.js @@ -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;