[PR #55] [MERGED] September Release #277

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

📋 Pull Request Information

Original PR: https://github.com/spr-networks/super/pull/55
Author: @lts-rad
Created: 9/1/2022
Status: Merged
Merged: 9/1/2022
Merged by: @lts-rad

Base: mainHead: dev


📝 Commits (10+)

  • 1e2ed65 [api] Move hostap related code into radios.go
  • 72cd14f [api] Fix formatting
  • bc1eab2 [api] [base] [wifid] Parameterize wifid control directory with an interface
  • 325d885 [api] Fix APIToken for plugins install
  • c299da8 Merge branch 'plugin-install-fix' into multi_hostap
  • 6c52666 [ui] Add parameterized radio interface calls
  • 83f169a [api] Delete parameters from radio config when set to -1
  • 6be67be [api] Fix syntax formatting for radio push
  • 997b89c [api] Additional support for multi-hostapd
  • 498de65 [api] Fix all_stations path typo

📊 Changes

52 files changed (+3171 additions, -759 deletions)

View changed files

📝 api/code/api.go (+61 -184)
📝 api/code/auth.go (+9 -0)
📝 api/code/firewall.go (+569 -30)
📝 api/code/hostapd_template.conf (+4 -8)
📝 api/code/plugins.go (+81 -6)
📝 api/code/radios.go (+495 -34)
📝 base/scripts/nft_rules.sh (+59 -22)
📝 base/scripts/startup.sh (+5 -7)
📝 base/template_configs/base/config.sh (+5 -5)
base/template_configs/scripts/gen_multicast_startup.sh (+0 -8)
base/template_configs/wifi/hostapd_template.conf (+49 -0)
📝 build_docker_compose.sh (+1 -2)
📝 dns/Dockerfile (+3 -3)
📝 docker-compose-virt.yml (+1 -1)
📝 docker-compose.yml (+3 -3)
📝 frontend/src/__tests__/Widgets.js (+1 -1)
📝 frontend/src/api/Firewall.js (+6 -0)
📝 frontend/src/api/MockAPI.js (+376 -10)
📝 frontend/src/api/Wifi.js (+38 -5)
📝 frontend/src/components/Auth/AuthTokenList.js (+3 -3)

...and 32 more files

📄 Description

Key features:

  • Improved firewall support
  • Multi AP Support
  • Block Private RFC upstream
  • UI improvements
    Bug fixes:
  • Fix 2.4ghz channel selection errors

🔄 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/55 **Author:** [@lts-rad](https://github.com/lts-rad) **Created:** 9/1/2022 **Status:** ✅ Merged **Merged:** 9/1/2022 **Merged by:** [@lts-rad](https://github.com/lts-rad) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`1e2ed65`](https://github.com/spr-networks/super/commit/1e2ed65d315b6ccd4bb06f3b7611b2de64e3ca67) [api] Move hostap related code into radios.go - [`72cd14f`](https://github.com/spr-networks/super/commit/72cd14f9c35c8225781455149949ce40538df832) [api] Fix formatting - [`bc1eab2`](https://github.com/spr-networks/super/commit/bc1eab2fc49067a6991e2bdc35d1246622038657) [api] [base] [wifid] Parameterize wifid control directory with an interface - [`325d885`](https://github.com/spr-networks/super/commit/325d8851d4f1e9f3d48adca151f956218656c930) [api] Fix APIToken for plugins install - [`c299da8`](https://github.com/spr-networks/super/commit/c299da8e24005b9431635d729a1af54461369bb3) Merge branch 'plugin-install-fix' into multi_hostap - [`6c52666`](https://github.com/spr-networks/super/commit/6c52666dc65d88699f167b76d5811019cdc4e288) [ui] Add parameterized radio interface calls - [`83f169a`](https://github.com/spr-networks/super/commit/83f169ae6884775351acc0564b5bd9cc6634ef5e) [api] Delete parameters from radio config when set to -1 - [`6be67be`](https://github.com/spr-networks/super/commit/6be67be230226650cb4144c3c13a3023c6c24d4e) [api] Fix syntax formatting for radio push - [`997b89c`](https://github.com/spr-networks/super/commit/997b89c902648af12a6ec69583ccd26de73ff660) [api] Additional support for multi-hostapd - [`498de65`](https://github.com/spr-networks/super/commit/498de65a8d4be0a6732ddff176c7162a777e8cf2) [api] Fix all_stations path typo ### 📊 Changes **52 files changed** (+3171 additions, -759 deletions) <details> <summary>View changed files</summary> 📝 `api/code/api.go` (+61 -184) 📝 `api/code/auth.go` (+9 -0) 📝 `api/code/firewall.go` (+569 -30) 📝 `api/code/hostapd_template.conf` (+4 -8) 📝 `api/code/plugins.go` (+81 -6) 📝 `api/code/radios.go` (+495 -34) 📝 `base/scripts/nft_rules.sh` (+59 -22) 📝 `base/scripts/startup.sh` (+5 -7) 📝 `base/template_configs/base/config.sh` (+5 -5) ➖ `base/template_configs/scripts/gen_multicast_startup.sh` (+0 -8) ➕ `base/template_configs/wifi/hostapd_template.conf` (+49 -0) 📝 `build_docker_compose.sh` (+1 -2) 📝 `dns/Dockerfile` (+3 -3) 📝 `docker-compose-virt.yml` (+1 -1) 📝 `docker-compose.yml` (+3 -3) 📝 `frontend/src/__tests__/Widgets.js` (+1 -1) 📝 `frontend/src/api/Firewall.js` (+6 -0) 📝 `frontend/src/api/MockAPI.js` (+376 -10) 📝 `frontend/src/api/Wifi.js` (+38 -5) 📝 `frontend/src/components/Auth/AuthTokenList.js` (+3 -3) _...and 32 more files_ </details> ### 📄 Description Key features: - Improved firewall support - Multi AP Support - Block Private RFC upstream - UI improvements Bug fixes: - Fix 2.4ghz channel selection errors --- <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:03 +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#277
No description provided.