Show commit hash on debug and release versions

This commit is contained in:
Dev 2024-03-05 20:23:10 +00:00
parent 3846363758
commit 570a81ff78

View File

@ -130,7 +130,7 @@ export class Watermark
{
const versionTag = (globalThis.G_DEBUG_CONFIGURATION)
? `${this.akiConfig.akiVersion} - BLEEDINGEDGE ${this.akiConfig.commit?.slice(0, 6) ?? ""}`
: this.akiConfig.akiVersion;
: `${this.akiConfig.akiVersion} - ${this.akiConfig.commit?.slice(0, 6) ?? ""}`;
return `${this.akiConfig.projectName} ${versionTag}`;
}