mirror of
https://github.com/koala73/worldmonitor.git
synced 2026-04-26 01:24:59 +02:00
Correct all stale numbers to match current codebase: - Languages: 16 → 19 (added Czech, Greek, Korean) - RSS feeds: 150+ → 170+, live channel pool: 30+ → 70+ - Airports: 128 → 107, AviationStack: 114 → 40 - Hotspots: 74 → 217, proto domains: 20 → 22 - Telegram: 27 → 26, OREF locations: 1,478 → 1,480 - Panel counts: 45/31/31/8 → 47/35/33/10 Add 8 new documentation sections: - Bootstrap Hydration (2-tier parallel pre-fetch) - Breaking News Alert Pipeline (5 origins) - Cross-Stream Correlation Engine (14 signal types) - Adaptive Refresh Scheduling (backoff, jitter, throttle) - Localization Architecture (bundles, boost, RTL, fonts) - Intelligence Analysis Tradecraft (SATs, ACH, gap awareness) - Client-Side Circuit Breakers (IndexedDB persistence) - Programmatic API Access (api.worldmonitor.app) Expand Happy Monitor with humanity counters, conservation, renewables, and giving detail. Add negative caching docs. Bump version 2.5.23 → 2.5.24.
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.24",
|
|
"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
|
|
}
|
|
}
|
|
}
|
|
}
|