23 lines
719 B
Dart
23 lines
719 B
Dart
const kSystemAppName = 'XWorkmate';
|
|
const kProductBrandName = 'XWorkmate';
|
|
const kProductSubtitle = 'Actionable AI Workspace';
|
|
const kProductTagline = 'Turn Ideas Into Action';
|
|
const kProductLogoAsset = 'assets/branding/xmate_desktop_logo.png';
|
|
const kAppVersion = String.fromEnvironment(
|
|
'XWORKMATE_DISPLAY_VERSION',
|
|
defaultValue: '2026.3.11',
|
|
);
|
|
const kAppBuildNumber = String.fromEnvironment(
|
|
'XWORKMATE_BUILD_NUMBER',
|
|
defaultValue: '20260311',
|
|
);
|
|
const kAppBuildDate = String.fromEnvironment(
|
|
'XWORKMATE_BUILD_DATE',
|
|
defaultValue: '2026-03-28',
|
|
);
|
|
const kAppBuildCommit = String.fromEnvironment(
|
|
'XWORKMATE_BUILD_COMMIT',
|
|
defaultValue: 'f153d7b',
|
|
);
|
|
const kAppVersionLabel = 'Version $kAppVersion';
|