From ded87b3881d73e23353ad5771fbef2b809429bce Mon Sep 17 00:00:00 2001 From: Dev Date: Thu, 1 Feb 2024 16:58:23 +0000 Subject: [PATCH] Show first 7 characters of commit server was built against in version label --- project/src/utils/Watermark.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/src/utils/Watermark.ts b/project/src/utils/Watermark.ts index 33dce3fe..414b3b2b 100644 --- a/project/src/utils/Watermark.ts +++ b/project/src/utils/Watermark.ts @@ -129,7 +129,7 @@ export class Watermark public getInGameVersionLabel(): string { const versionTag = (globalThis.G_DEBUG_CONFIGURATION) - ? `${this.akiConfig.akiVersion} - BLEEDINGEDGE` + ? `${this.akiConfig.akiVersion} - BLEEDINGEDGE ${this.akiConfig.commit?.slice(0, 6) ?? ""}` : this.akiConfig.akiVersion; return `${this.akiConfig.projectName} ${versionTag}`;