mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-01-11 20:10:25 +00:00
10 lines
223 B
TypeScript
10 lines
223 B
TypeScript
// Single source of truth for the app version displayed in Settings
|
|
// Update this when bumping app version
|
|
|
|
export const APP_VERSION = '1.3.3';
|
|
|
|
export function getDisplayedAppVersion(): string {
|
|
return APP_VERSION;
|
|
}
|
|
|
|
|