mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-03-11 09:35:42 +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.8';
|
|
|
|
export function getDisplayedAppVersion(): string {
|
|
return APP_VERSION;
|
|
}
|
|
|
|
|