From 13bc30a1dcc8fb85a7423e2b60abe3f899c45fec 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 fe5cb02..29853c8 100644 --- a/src/popup/views/settings.js +++ b/src/popup/views/settings.js @@ -157,7 +157,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;