mirror of
https://github.com/koala73/worldmonitor.git
synced 2026-04-25 17:14:57 +02:00
- Fix stale counts: 170+ feeds → 435+, 15 bootstrap keys → 38, 28+ data sources → 31, 20+ search types → 24, panel counts - Add Aviation Intelligence Panel documentation - Add Customizable Market Watchlist section - Add News Importance Scoring algorithm details - Add Railway Seed Data Pipeline table (21 cron jobs) - Add SmartPollLoop adaptive polling documentation - Expand Prediction Markets with 4-tier fetch strategy - Add Iran conflict monitoring layer details - Add Mobile search sheet and FAB section - Expand Regression Testing section (30 files, 554 tests) - Expand Bootstrap Hydration with full 38-key tier listing - Bump version 2.5.24 → 2.5.25
79 lines
2.3 KiB
JSON
79 lines
2.3 KiB
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2",
|
|
"productName": "World Monitor",
|
|
"mainBinaryName": "world-monitor",
|
|
"version": "2.5.25",
|
|
"identifier": "app.worldmonitor.desktop",
|
|
"build": {
|
|
"beforeDevCommand": "npm run build:sidecar-sebuf && 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:; img-src 'self' data: blob: https:; style-src 'self' 'unsafe-inline'; script-src 'self' 'wasm-unsafe-eval' https://www.youtube.com; 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://www.youtube.com https://www.youtube-nocookie.com;"
|
|
}
|
|
},
|
|
"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
|
|
}
|
|
}
|
|
}
|
|
}
|