From 02664620f6da6f89ee96c9658aab67125690d98f Mon Sep 17 00:00:00 2001 From: Elie Habib Date: Wed, 25 Feb 2026 08:11:15 +0000 Subject: [PATCH] chore: bump version to 2.5.8 and align README with recent features Update data layer count to 36+, add Happy Monitor variant to Live Demos, expand Cmd+K command palette description, and add trade routes to Infrastructure section. --- README.md | 12 +++++++----- package.json | 2 +- src-tauri/Cargo.toml | 2 +- src-tauri/tauri.conf.json | 2 +- 4 files changed, 10 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 39e5e569d..b91320c33 100644 --- a/README.md +++ b/README.md @@ -36,14 +36,14 @@ | Problem | Solution | | ---------------------------------- | ---------------------------------------------------------------------------------------------------------- | | News scattered across 100+ sources | **Single unified dashboard** with 100+ curated feeds | -| No geospatial context for events | **Interactive map** with 35+ toggleable data layers | +| No geospatial context for events | **Interactive map** with 36+ toggleable data layers | | Information overload | **AI-synthesized briefs** with focal point detection and local LLM support | | Crypto/macro signal noise | **7-signal market radar** with composite BUY/CASH verdict | | Expensive OSINT tools ($$$) | **100% free & open source** | | Static news feeds | **Real-time updates** with live video streams | | Cloud-dependent AI tools | **Run AI locally** with Ollama/LM Studio — no API keys, no data leaves your machine | | Web-only dashboards | **Native desktop app** (Tauri) for macOS, Windows, and Linux + installable PWA with offline map support | -| Flat 2D maps | **3D WebGL globe** with deck.gl rendering and 35+ toggleable data layers | +| Flat 2D maps | **3D WebGL globe** with deck.gl rendering and 36+ toggleable data layers | | Siloed financial data | **Finance variant** with 92 stock exchanges, 19 financial centers, 13 central banks, and Gulf FDI tracking | | Undocumented, fragile APIs | **Proto-first API contracts** — 17 typed services with auto-generated clients, servers, and OpenAPI docs | @@ -56,8 +56,9 @@ | **World Monitor** | [worldmonitor.app](https://worldmonitor.app) | Geopolitics, military, conflicts, infrastructure | | **Tech Monitor** | [tech.worldmonitor.app](https://tech.worldmonitor.app) | Startups, AI/ML, cloud, cybersecurity | | **Finance Monitor** | [finance.worldmonitor.app](https://finance.worldmonitor.app) | Global markets, trading, central banks, Gulf FDI | +| **Happy Monitor** | [happy.worldmonitor.app](https://happy.worldmonitor.app) | Good news, positive trends, uplifting stories | -All three variants run from a single codebase — switch between them with one click via the header bar (🌍 WORLD | 💻 TECH | 📈 FINANCE). +All four variants run from a single codebase — switch between them with one click via the header bar. --- @@ -74,7 +75,7 @@ All three variants run from a single codebase — switch between them with one c ### Interactive 3D Globe - **WebGL-accelerated rendering** — deck.gl + MapLibre GL JS for smooth 60fps performance with thousands of concurrent markers. Switchable between **3D globe** (with pitch/rotation) and **flat map** mode via `VITE_MAP_INTERACTION_MODE` -- **35+ data layers** — conflicts, military bases, nuclear facilities, undersea cables, pipelines, satellite fire detection, protests, natural disasters, datacenters, displacement flows, climate anomalies, cyber threat IOCs, stock exchanges, financial centers, central banks, commodity hubs, Gulf investments, and more +- **36+ data layers** — conflicts, military bases, nuclear facilities, undersea cables, pipelines, satellite fire detection, protests, natural disasters, datacenters, displacement flows, climate anomalies, cyber threat IOCs, stock exchanges, financial centers, central banks, commodity hubs, Gulf investments, trade routes, and more - **Smart clustering** — Supercluster groups markers at low zoom, expands on zoom in. Cluster thresholds adapt to zoom level - **Progressive disclosure** — detail layers (bases, nuclear, datacenters) appear only when zoomed in; zoom-adaptive opacity fades markers from 0.2 at world view to 1.0 at street level - **Label deconfliction** — overlapping labels (e.g., multiple BREAKING badges) are automatically suppressed by priority, highest-severity first @@ -130,6 +131,7 @@ All three variants run from a single codebase — switch between them with one c - Internet outages (Cloudflare Radar) - Critical mineral deposits - NASA FIRMS satellite fire detection (VIIRS thermal hotspots) +- 19 global trade routes (container, energy, bulk) with multi-segment arcs through strategic chokepoints @@ -228,7 +230,7 @@ All three variants run from a single codebase — switch between them with one c - Data freshness monitoring across 14 data sources with explicit intelligence gap reporting - Per-feed circuit breakers with 5-minute cooldowns to prevent cascading failures - Browser-side ML worker (Transformers.js) for NER and sentiment analysis without server dependency -- **Cmd+K search** — fuzzy search across 20+ result types: news headlines, countries (with direct country brief navigation), hotspots, markets, military bases, cables, pipelines, datacenters, nuclear facilities, tech companies, and more +- **Cmd+K command palette** — fuzzy search across 20+ result types (news, countries, hotspots, markets, bases, cables, datacenters, nuclear facilities, and more), plus layer toggle commands, layer presets (e.g., `layers:finance`), and instant country brief navigation for all ISO countries - **Historical playback** — dashboard snapshots are stored in IndexedDB. A time slider allows rewinding to any saved state, with live updates paused during playback - **Mobile detection** — screens below 768px receive a warning modal since the dashboard is designed for multi-panel desktop use - **UCDP conflict classification** — countries with active wars (1,000+ battle deaths/year) receive automatic CII floor scores, preventing optimistic drift. The UCDP GED API integration uses automatic version discovery (probing multiple year-based API versions in parallel), negative caching (5-minute backoff after upstream failures), discovered-version caching (1-hour TTL), and stale-on-error fallback to ensure conflict data is always available even when the upstream API is intermittently down diff --git a/package.json b/package.json index f0d5b29bf..310f420e3 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "world-monitor", "private": true, - "version": "2.5.7", + "version": "2.5.8", "license": "AGPL-3.0-only", "type": "module", "scripts": { diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 5411be19d..d2d722ed5 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "world-monitor" -version = "2.5.7" +version = "2.5.8" description = "World Monitor desktop application" authors = ["World Monitor"] edition = "2021" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 26fa01e50..e2262d7f5 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -2,7 +2,7 @@ "$schema": "https://schema.tauri.app/config/2", "productName": "World Monitor", "mainBinaryName": "world-monitor", - "version": "2.5.7", + "version": "2.5.8", "identifier": "app.worldmonitor.desktop", "build": { "beforeDevCommand": "npm run build:sidecar-sebuf && npm run dev",