mirror of
https://github.com/smittix/intercept.git
synced 2026-06-08 06:01:56 -07:00
feat: WiFi Locate mode, mobile nav groups, v2.24.0
Add WiFi Locate mode for locating access points by BSSID with real-time signal meter, distance estimation, RSSI history chart, and audio proximity tones. Includes hand-off from WiFi detail drawer, environment presets (Free Space/Outdoor/Indoor), and signal-lost detection. Also includes: - Mobile navigation reorganized into labeled groups (SIG/TRK/SPC/WIFI/INTEL/SYS) - flask-limiter made optional with graceful degradation - Fix radiosonde setup missing semver Python dependency - Documentation updates (FEATURES, USAGE, UI_GUIDE, GitHub Pages site) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -1060,13 +1060,13 @@ install_radiosonde_auto_rx() {
|
||||
info "Installing Python dependencies..."
|
||||
cd "$tmp_dir/radiosonde_auto_rx/auto_rx"
|
||||
if [ -x "$project_dir/venv/bin/pip" ]; then
|
||||
"$project_dir/venv/bin/pip" install --quiet -r requirements.txt || {
|
||||
"$project_dir/venv/bin/pip" install --quiet -r requirements.txt semver || {
|
||||
warn "Failed to install radiosonde_auto_rx Python dependencies"
|
||||
exit 1
|
||||
}
|
||||
else
|
||||
pip3 install --quiet --break-system-packages -r requirements.txt 2>/dev/null \
|
||||
|| pip3 install --quiet -r requirements.txt || {
|
||||
pip3 install --quiet --break-system-packages -r requirements.txt semver 2>/dev/null \
|
||||
|| pip3 install --quiet -r requirements.txt semver || {
|
||||
warn "Failed to install radiosonde_auto_rx Python dependencies"
|
||||
exit 1
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user