Expose launcher build stamp

This commit is contained in:
Andraxion 2026-06-27 03:01:49 -04:00
parent e40a596258
commit a20d298be2
3 changed files with 29 additions and 0 deletions

View file

@ -11,6 +11,8 @@ import {
import type { ChangelogItem } from "./worldshaperStudio/changelogData";
import launcherBackground from "../background.png";
declare const __APP_BUILD__: string;
type WorldDefaultPayload = {
worldId?: string;
world?: {
@ -2257,6 +2259,7 @@ function WorldshaperLauncher() {
</div>
</div>
</section>
<div className="launcher-build-stamp">Build {__APP_BUILD__}</div>
</div>
{adminPanelOpen && logsModalOpen ? (
<div className="launcher-modal-backdrop" onClick={() => setLogsModalOpen(false)}>

View file

@ -77,6 +77,13 @@ body {
width: min(1440px, 100%);
}
.launcher-build-stamp {
color: #7f90ab;
font-size: 11px;
line-height: 1.4;
text-align: center;
}
.launcher-hero-window,
.launcher-changelog-window {
border: 1px solid #4f79af;