mirror of
https://github.com/smittix/intercept.git
synced 2026-04-24 06:40:00 -07:00
Bump version to 2.14.0 and update changelog/documentation
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
38
CHANGELOG.md
38
CHANGELOG.md
@@ -2,6 +2,44 @@
|
|||||||
|
|
||||||
All notable changes to iNTERCEPT will be documented in this file.
|
All notable changes to iNTERCEPT will be documented in this file.
|
||||||
|
|
||||||
|
## [2.14.0] - 2026-02-06
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- **DMR Digital Voice Decoder** - Decode DMR, P25, NXDN, and D-STAR protocols
|
||||||
|
- Integration with dsd-fme (Digital Speech Decoder - Florida Man Edition)
|
||||||
|
- Real-time SSE streaming of sync, call, voice, and slot events
|
||||||
|
- Call history table with talkgroup, source ID, and protocol tracking
|
||||||
|
- Protocol auto-detection or manual selection
|
||||||
|
- Pipeline error diagnostics with rtl_fm stderr capture
|
||||||
|
- **DMR Visual Synthesizer** - Canvas-based signal activity visualization
|
||||||
|
- Spring-physics animated bars reacting to SSE decoder events
|
||||||
|
- Color-coded by event type: cyan (sync), green (call), orange (voice)
|
||||||
|
- Center-outward ripple bursts on sync events
|
||||||
|
- Smooth decay and idle breathing animation
|
||||||
|
- Responsive canvas with window resize handling
|
||||||
|
- **HF SSTV General Mode** - Terrestrial slow-scan TV on shortwave frequencies
|
||||||
|
- Predefined HF SSTV frequencies (14.230, 21.340, 28.680 MHz, etc.)
|
||||||
|
- Modulation support for USB/LSB reception
|
||||||
|
- **WebSDR Integration** - Remote HF/shortwave listening via WebSDR servers
|
||||||
|
- **Listening Post Enhancements** - Improved signal scanner and audio handling
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- APRS rtl_fm startup failure and SDR device conflicts
|
||||||
|
- DSD voice decoder detection for dsd-fme and PulseAudio errors
|
||||||
|
- dsd-fme protocol flags and ncurses disable for headless operation
|
||||||
|
- dsd-fme audio output flag for pipeline compatibility
|
||||||
|
- TSCM sweep scan resilience with per-device error isolation
|
||||||
|
- TSCM WiFi detection using scanner singleton for device availability
|
||||||
|
- TSCM correlation and cluster emission fixes
|
||||||
|
- Detected Threats panel items now clickable to show device details
|
||||||
|
- Proximity radar tooltip flicker on hover
|
||||||
|
- Radar blip flicker by deferring renders during hover
|
||||||
|
- ISS position API priority swap to avoid timeout delays
|
||||||
|
- Updater settings panel error when updater.js is blocked
|
||||||
|
- Missing scapy in optionals dependency group
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
## [2.13.1] - 2026-02-04
|
## [2.13.1] - 2026-02-04
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|||||||
@@ -31,11 +31,16 @@ Support the developer of this open-source project
|
|||||||
- **Aircraft Tracking** - ADS-B via dump1090 with real-time map and radar
|
- **Aircraft Tracking** - ADS-B via dump1090 with real-time map and radar
|
||||||
- **Vessel Tracking** - AIS ship tracking with VHF DSC distress monitoring
|
- **Vessel Tracking** - AIS ship tracking with VHF DSC distress monitoring
|
||||||
- **ACARS Messaging** - Aircraft datalink messages via acarsdec
|
- **ACARS Messaging** - Aircraft datalink messages via acarsdec
|
||||||
|
- **DMR Digital Voice** - DMR/P25/NXDN/D-STAR decoding via dsd-fme with visual synthesizer
|
||||||
- **Listening Post** - Frequency scanner with audio monitoring
|
- **Listening Post** - Frequency scanner with audio monitoring
|
||||||
|
- **WebSDR** - Remote HF/shortwave listening via WebSDR servers
|
||||||
|
- **ISS SSTV** - Receive slow-scan TV from the International Space Station
|
||||||
|
- **HF SSTV** - Terrestrial SSTV on shortwave frequencies
|
||||||
- **Satellite Tracking** - Pass prediction using TLE data
|
- **Satellite Tracking** - Pass prediction using TLE data
|
||||||
- **ADS-B History** - Persistent aircraft history with reporting dashboard (Postgres optional)
|
- **ADS-B History** - Persistent aircraft history with reporting dashboard (Postgres optional)
|
||||||
- **WiFi Scanning** - Monitor mode reconnaissance via aircrack-ng
|
- **WiFi Scanning** - Monitor mode reconnaissance via aircrack-ng
|
||||||
- **Bluetooth Scanning** - Device discovery and tracker detection (with Ubertooth support)
|
- **Bluetooth Scanning** - Device discovery and tracker detection (with Ubertooth support)
|
||||||
|
- **TSCM** - Counter-surveillance with RF baseline comparison and threat detection
|
||||||
- **Meshtastic** - LoRa mesh network integration
|
- **Meshtastic** - LoRa mesh network integration
|
||||||
- **Spy Stations** - Number stations and diplomatic HF network database
|
- **Spy Stations** - Number stations and diplomatic HF network database
|
||||||
- **Remote Agents** - Distributed SIGINT with remote sensor nodes
|
- **Remote Agents** - Distributed SIGINT with remote sensor nodes
|
||||||
|
|||||||
15
config.py
15
config.py
@@ -7,10 +7,23 @@ import os
|
|||||||
import sys
|
import sys
|
||||||
|
|
||||||
# Application version
|
# Application version
|
||||||
VERSION = "2.13.1"
|
VERSION = "2.14.0"
|
||||||
|
|
||||||
# Changelog - latest release notes (shown on welcome screen)
|
# Changelog - latest release notes (shown on welcome screen)
|
||||||
CHANGELOG = [
|
CHANGELOG = [
|
||||||
|
{
|
||||||
|
"version": "2.14.0",
|
||||||
|
"date": "February 2026",
|
||||||
|
"highlights": [
|
||||||
|
"DMR/P25/NXDN/D-STAR digital voice decoder with dsd-fme",
|
||||||
|
"DMR visual synthesizer with event-driven spring-physics bars",
|
||||||
|
"HF SSTV general mode with predefined shortwave frequencies",
|
||||||
|
"WebSDR integration for remote HF/shortwave listening",
|
||||||
|
"Listening Post signal scanner and audio pipeline improvements",
|
||||||
|
"TSCM sweep resilience, WiFi detection, and correlation fixes",
|
||||||
|
"APRS rtl_fm startup and SDR device conflict fixes",
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"version": "2.13.1",
|
"version": "2.13.1",
|
||||||
"date": "February 2026",
|
"date": "February 2026",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "intercept"
|
name = "intercept"
|
||||||
version = "2.13.1"
|
version = "2.14.0"
|
||||||
description = "Signal Intelligence Platform - Pager/433MHz/ADS-B/Satellite/WiFi/Bluetooth"
|
description = "Signal Intelligence Platform - Pager/433MHz/ADS-B/Satellite/WiFi/Bluetooth"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.9"
|
requires-python = ">=3.9"
|
||||||
|
|||||||
Reference in New Issue
Block a user