feat: show git commit SHA as version in footer

TERM v1.0 → TERM v5ca5e01 (or whatever SHA is building).
GIT_SHA is injected via vite define from Makefile.
This commit is contained in:
2026-07-02 13:19:43 -04:00
parent 5ca5e018ca
commit f30ddb1323
8 changed files with 30 additions and 4 deletions
+1 -1
View File
@@ -132,7 +132,7 @@ export function Layout() {
<ServerSettingsModal serverId={activeServerId} onClose={() => setShowServerSettings(false)} />
)}
<div className="px-3 py-1 border-t border-gb-bg-t text-xs text-gb-fg-f flex justify-between bg-gb-bg-s">
<span>TERM v1.0</span>
<span>TERM {__APP_VERSION__}</span>
<span>{new Date().toISOString().slice(0, 10)}</span>
</div>
</div>