mirror of
https://github.com/koala73/worldmonitor.git
synced 2026-04-25 17:14:57 +02:00
* chore: bump version to 2.6.7 * chore: sync Cargo.lock to 2.6.7 (was stuck at 2.6.5) * ci: skip lint/test/typecheck for non-code PRs (docs, Tauri, version bumps) Added paths-ignore to lint-code, test, and typecheck workflows so they don't run when only markdown, docs, src-tauri config, or desktop build files change. Push to main still runs unconditionally.
79 lines
2.6 KiB
JSON
79 lines
2.6 KiB
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2",
|
|
"productName": "World Monitor",
|
|
"mainBinaryName": "world-monitor",
|
|
"version": "2.6.7",
|
|
"identifier": "app.worldmonitor.desktop",
|
|
"build": {
|
|
"beforeDevCommand": "npm run build:sidecar-sebuf && node scripts/build-sidecar-handlers.mjs && npm run dev",
|
|
"beforeBuildCommand": "npm run build:desktop",
|
|
"frontendDist": "../dist",
|
|
"devUrl": "http://localhost:3000"
|
|
},
|
|
"app": {
|
|
"windows": [
|
|
{
|
|
"title": "World Monitor",
|
|
"width": 1440,
|
|
"height": 900,
|
|
"minWidth": 1200,
|
|
"minHeight": 720,
|
|
"resizable": true,
|
|
"fullscreen": false,
|
|
"backgroundColor": [
|
|
26,
|
|
28,
|
|
30,
|
|
255
|
|
]
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": "default-src 'self'; connect-src 'self' https: http://localhost:5173 http://127.0.0.1:* ws: wss: blob: data: https://abacus.worldmonitor.app; img-src 'self' data: blob: https:; style-src 'self' 'unsafe-inline'; script-src 'self' 'wasm-unsafe-eval' https://www.youtube.com https://abacus.worldmonitor.app https://*.clerk.accounts.dev; worker-src 'self' blob:; font-src 'self' data: https:; media-src 'self' data: blob: https: http://127.0.0.1:* http://localhost:*; frame-src 'self' http://127.0.0.1:* http://localhost:* https://worldmonitor.app https://tech.worldmonitor.app https://finance.worldmonitor.app https://commodity.worldmonitor.app https://happy.worldmonitor.app https://www.youtube.com https://www.youtube-nocookie.com https://webcams.windy.com https://*.clerk.accounts.dev;"
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": [
|
|
"app",
|
|
"dmg",
|
|
"nsis",
|
|
"msi",
|
|
"appimage"
|
|
],
|
|
"category": "Productivity",
|
|
"shortDescription": "World Monitor desktop app (supports World and Tech variants)",
|
|
"longDescription": "World Monitor desktop app for real-time global intelligence. Build with VITE_VARIANT=tech to package Tech Monitor branding and dataset defaults.",
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png",
|
|
"icons/icon.icns",
|
|
"icons/icon.ico"
|
|
],
|
|
"resources": [
|
|
"../api",
|
|
"sidecar/local-api-server.mjs",
|
|
"sidecar/package.json",
|
|
"sidecar/node",
|
|
"../data",
|
|
"../src/config"
|
|
],
|
|
"windows": {
|
|
"digestAlgorithm": "sha256",
|
|
"timestampUrl": "https://timestamp.digicert.com",
|
|
"nsis": {
|
|
"installerHooks": "nsis/installer-hooks.nsh"
|
|
}
|
|
},
|
|
"macOS": {
|
|
"hardenedRuntime": true
|
|
},
|
|
"linux": {
|
|
"appimage": {
|
|
"bundleMediaFramework": true
|
|
}
|
|
}
|
|
}
|
|
}
|