[PR #458] [MERGED] SPR bug fixes #patch #450

Closed
opened 2026-03-04 01:36:55 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/spr-networks/super/pull/458
Author: @lts-rad
Created: 10/16/2025
Status: Merged
Merged: 10/16/2025
Merged by: @lts-rad

Base: mainHead: dev


📝 Commits (10+)

  • 7c6c0a1 [ui] Fix #452 for ipv6 parsing exception
  • ad952f5 [ui] No longer enable BSSID randomization by default in case cards break
  • 2cc7c7d [ui] Warn about DFS capability when background radar is missing #455
  • d9b13ac [api] [ui] Implement add IP addr feature in UI/API #453
  • 115b37a [docs] Add contributors guide
  • d220e6c [wifid] Update rename scripts and sanitize interface names as they can include special characters
  • 7d348ac [base] Update scripts to pin MAC addresses for non permanent devices, to stop mac address pollution
  • d5212d8 [installer] Update isntaller to run the mac address pin on setup
  • c6406be [installer] [base] Better guess the supernetwork to start with #450
  • e373ea1 [docs] Update release notes

📊 Changes

30 files changed (+2198 additions, -172 deletions)

View changed files

📝 .github/workflows/docker-image.yml (+2 -1)
CONTRIBUTING.md (+27 -0)
📝 README.md (+1 -0)
📝 RELEASE-NOTES.md (+14 -1)
📝 api/code/api.go (+1 -0)
📝 api/code/interfaces.go (+198 -15)
📝 api/code/uplink.go (+18 -0)
base/scripts/find_lan_subnet.sh (+68 -0)
base/scripts/fix_mac_addresses.sh (+113 -0)
base/scripts/spr-setup-tui.sh (+888 -0)
📝 base/setup.sh (+10 -1)
base/template_configs/dhcp/coredhcp.yml (+5 -0)
📝 build_docker_compose.sh (+0 -6)
frontend/src/__tests__/UplinkConfiguration.js (+86 -0)
📝 frontend/src/api/MockAPI.js (+55 -4)
📝 frontend/src/components/Wifi/WifiChannelParameters.js (+27 -1)
📝 frontend/src/components/Wifi/WifiHostapd.js (+5 -7)
📝 frontend/src/components/Wireguard/WireguardAddPeer.js (+3 -0)
📝 frontend/src/views/LinkConfiguration/LANLinkConfiguration.js (+185 -19)
📝 frontend/src/views/LinkConfiguration/UplinkConfiguration.js (+128 -3)

...and 10 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/spr-networks/super/pull/458 **Author:** [@lts-rad](https://github.com/lts-rad) **Created:** 10/16/2025 **Status:** ✅ Merged **Merged:** 10/16/2025 **Merged by:** [@lts-rad](https://github.com/lts-rad) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`7c6c0a1`](https://github.com/spr-networks/super/commit/7c6c0a1c1e91028c58eabec7ba047b01a7a3f03e) [ui] Fix #452 for ipv6 parsing exception - [`ad952f5`](https://github.com/spr-networks/super/commit/ad952f5e6eaea60e3600f3b7fc3638050c31b1a8) [ui] No longer enable BSSID randomization by default in case cards break - [`2cc7c7d`](https://github.com/spr-networks/super/commit/2cc7c7d91bd07b51ac6b771f94c3c8b77e1363df) [ui] Warn about DFS capability when background radar is missing #455 - [`d9b13ac`](https://github.com/spr-networks/super/commit/d9b13ac1e7df7f691e27d6b23bd9c1638f6a321e) [api] [ui] Implement add IP addr feature in UI/API #453 - [`115b37a`](https://github.com/spr-networks/super/commit/115b37a6da6e2271eea4a29c30788ff2c743896c) [docs] Add contributors guide - [`d220e6c`](https://github.com/spr-networks/super/commit/d220e6c6c5f501049c6f706f95ea6608fb7a7fe7) [wifid] Update rename scripts and sanitize interface names as they can include special characters - [`7d348ac`](https://github.com/spr-networks/super/commit/7d348acecfc1dc9bc2e1851c095a4eaebf0e2cdb) [base] Update scripts to pin MAC addresses for non permanent devices, to stop mac address pollution - [`d5212d8`](https://github.com/spr-networks/super/commit/d5212d8aaff63329c29fd3a8759fcd46d42acbd2) [installer] Update isntaller to run the mac address pin on setup - [`c6406be`](https://github.com/spr-networks/super/commit/c6406be19bb750f1ca6c709bdec51818c2a20913) [installer] [base] Better guess the supernetwork to start with #450 - [`e373ea1`](https://github.com/spr-networks/super/commit/e373ea1797c645f23e0920109d2000c520a62e2f) [docs] Update release notes ### 📊 Changes **30 files changed** (+2198 additions, -172 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/docker-image.yml` (+2 -1) ➕ `CONTRIBUTING.md` (+27 -0) 📝 `README.md` (+1 -0) 📝 `RELEASE-NOTES.md` (+14 -1) 📝 `api/code/api.go` (+1 -0) 📝 `api/code/interfaces.go` (+198 -15) 📝 `api/code/uplink.go` (+18 -0) ➕ `base/scripts/find_lan_subnet.sh` (+68 -0) ➕ `base/scripts/fix_mac_addresses.sh` (+113 -0) ➕ `base/scripts/spr-setup-tui.sh` (+888 -0) 📝 `base/setup.sh` (+10 -1) ➕ `base/template_configs/dhcp/coredhcp.yml` (+5 -0) 📝 `build_docker_compose.sh` (+0 -6) ➕ `frontend/src/__tests__/UplinkConfiguration.js` (+86 -0) 📝 `frontend/src/api/MockAPI.js` (+55 -4) 📝 `frontend/src/components/Wifi/WifiChannelParameters.js` (+27 -1) 📝 `frontend/src/components/Wifi/WifiHostapd.js` (+5 -7) 📝 `frontend/src/components/Wireguard/WireguardAddPeer.js` (+3 -0) 📝 `frontend/src/views/LinkConfiguration/LANLinkConfiguration.js` (+185 -19) 📝 `frontend/src/views/LinkConfiguration/UplinkConfiguration.js` (+128 -3) _...and 10 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-04 01:36:55 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/super#450
No description provided.