Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions packages/modules/web_themes/koala/source/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@
<meta charset="utf-8" />
<meta name="description" content="<%= productDescription %>" />
<meta name="format-detection" content="telephone=no" />
<meta name="msapplication-tap-highlight" content="no" />
<meta name="mobile-web-app-capable" content="yes" />
<meta
name="viewport"
content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width<% if (ctx.mode.cordova || ctx.mode.capacitor) { %>, viewport-fit=cover<% } %>"
Expand Down
2 changes: 1 addition & 1 deletion packages/modules/web_themes/koala/source/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"format": "prettier --write \"**/*.{js,ts,vue,scss,html,md,json}\" --ignore-path .gitignore",
"test:unit": "vitest run --root src/",
"dev": "quasar dev",
"build": "quasar build"
"build": "quasar build -m pwa"
},
"dependencies": {
"@quasar/extras": "^1.17.0",
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 6 additions & 1 deletion packages/modules/web_themes/koala/source/quasar.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,12 @@ export default defineConfig((ctx) => {
viteConf.esbuild = {
...viteConf.esbuild,
drop: ['debugger'],
pure: ['console.log', 'console.info', 'console.debug', 'console.table'],
pure: [
'console.log',
'console.info',
'console.debug',
'console.table',
],
};
}
},
Expand Down
31 changes: 26 additions & 5 deletions packages/modules/web_themes/koala/source/src-pwa/manifest.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,29 @@
{
"orientation": "portrait",
"name": "openWB Koala",
"short_name": "openWB",
"description": "Koala web theme for openWB software2",
"start_url": "/openWB/web/",
"orientation": "any",
"version": "0.0.1",
"manifest_version": 1,
"background_color": "#ffffff",
"theme_color": "#027be3",
"icons": [
{
"src": "icons/icon-48x48.png",
"sizes": "48x48",
"type": "image/png"
},
{
"src": "icons/icon-72x72.png",
"sizes": "72x72",
"type": "image/png"
},
{
"src": "icons/icon-96x96.png",
"sizes": "96x96",
"type": "image/png"
},
{
"src": "icons/icon-128x128.png",
"sizes": "128x128",
Expand All @@ -19,13 +40,13 @@
"type": "image/png"
},
{
"src": "icons/icon-384x384.png",
"sizes": "384x384",
"src": "icons/icon-512x512.png",
"sizes": "512x512",
"type": "image/png"
},
{
"src": "icons/icon-512x512.png",
"sizes": "512x512",
"src": "icons/icon-1024x1024.png",
"sizes": "1024x1024",
"type": "image/png"
}
]
Expand Down