From 8c3214b87225f05421a9490d58c3af8985febb7b Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Sun, 11 Jun 2023 22:25:12 +0200 Subject: [PATCH] fix(core): update --- ts/00_commitinfo_data.ts | 2 +- ts/index.ts | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 4639dc4..2fbec42 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@pushrocks/smartmanifest', - version: '2.0.0', + version: '2.0.1', description: 'a module for creating web app manifests' } diff --git a/ts/index.ts b/ts/index.ts index 4be1789..ea40b58 100644 --- a/ts/index.ts +++ b/ts/index.ts @@ -17,6 +17,9 @@ export interface ISmartManifestConstructorOptions { platform: 'play' | string; id: string; }>; + scope: string; + lang: string; + display_override: 'window-controls-overlay'[]; } const defaultConstructorOptions: ISmartManifestConstructorOptions = { @@ -45,6 +48,9 @@ const defaultConstructorOptions: ISmartManifestConstructorOptions = { }, ], related_applications: [], + scope: '/', + lang: 'en', + display_override: ['window-controls-overlay'], }; export class SmartManifest {