feat: update version to 1.4.0 and integrate APP_VERSION in components

This commit is contained in:
shuaiplus
2026-03-20 05:03:04 +08:00
parent cbf1e86881
commit fba2aa9746
6 changed files with 14 additions and 5 deletions
@@ -1,4 +1,5 @@
import type { ComponentChildren } from 'preact';
import { APP_VERSION } from '@shared/app-version';
interface StandalonePageFrameProps {
title: string;
@@ -24,6 +25,8 @@ export default function StandalonePageFrame(props: StandalonePageFrameProps) {
<a href="https://github.com/shuaiplus/NodeWarden" target="_blank" rel="noreferrer">NodeWarden Repository</a>
<span> | </span>
<a href="https://github.com/shuaiplus" target="_blank" rel="noreferrer">Author: @shuaiplus</a>
<span> | </span>
<span className="standalone-version">v{APP_VERSION}</span>
</div>
</div>
);