fix: add app name/repo link, rename build date to release date per issue #144
All checks were successful
check / check (push) Successful in 13s

- 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
parent 756883dde4
commit 13bc30a1dc
2 changed files with 13 additions and 3 deletions

View File

@@ -1005,6 +1005,16 @@
<div class="bg-well p-3 mx-1 mb-3"> <div class="bg-well p-3 mx-1 mb-3">
<h3 class="font-bold mb-1">About</h3> <h3 class="font-bold mb-1">About</h3>
<p class="text-xs mb-2">
<a
href="https://git.eeqj.de/sneak/AutistMask"
class="underline decoration-dashed"
target="_blank"
rel="noopener noreferrer"
>AutistMask</a
>
— Minimal Ethereum wallet browser extension.
</p>
<div class="text-xs"> <div class="text-xs">
<div class="mb-1"> <div class="mb-1">
<span class="text-muted">License:</span> <span class="text-muted">License:</span>
@@ -1022,8 +1032,8 @@
></span> ></span>
</div> </div>
<div class="mb-1"> <div class="mb-1">
<span class="text-muted">Build date:</span> <span class="text-muted">Release date:</span>
<span id="about-build-date"></span> <span id="about-release-date"></span>
</div> </div>
<div> <div>
<span class="text-muted">Commit:</span> <span class="text-muted">Commit:</span>

View File

@@ -157,7 +157,7 @@ function show() {
const authorName = BUILD_AUTHOR.replace(/\s*<[^>]+>/, ""); const authorName = BUILD_AUTHOR.replace(/\s*<[^>]+>/, "");
$("about-author").textContent = authorName; $("about-author").textContent = authorName;
$("about-version").textContent = BUILD_VERSION; $("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").textContent = BUILD_COMMIT;
$("about-commit-link").href = GITEA_COMMIT_URL; $("about-commit-link").href = GITEA_COMMIT_URL;