[PR #353] [MERGED] v0.3.18 #patch #412

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

📋 Pull Request Information

Original PR: https://github.com/spr-networks/super/pull/353
Author: @lts-rad
Created: 8/15/2024
Status: Merged
Merged: 8/16/2024
Merged by: @lts-rad

Base: mainHead: dev


📝 Commits (10+)

  • 72cb233 [ui] Clean up mesh OTP redirect
  • 1468d34 [api] fix formatting
  • 17e58d1 [api] restart pfw to ensure fw rules are syncd when api restarts
  • 8522585 [api] call PluginRoutes after the other inits
  • 8981a07 [ui] fix url for plugin ui
  • e8bfc27 [ui] skip showing msg & only show modal for otp info
  • f354346 [ui] show message in modal if no otp & redir button
  • 6f1f006 [multicast_udp_proxy] Publish spr.local on setup AP
  • 5a3447c [ui] refactor, cleanup, more space. skip fw rules for now, wip
  • aba2f23 [wifid] [api] Add support for H2E by default

📊 Changes

42 files changed (+1626 additions, -872 deletions)

View changed files

📝 RELEASE-NOTES.md (+9 -2)
📝 api/code/api.go (+27 -24)
📝 api/code/auth.go (+0 -2)
📝 api/code/dhcp.go (+1 -0)
📝 api/code/firewall.go (+1 -1)
📝 api/code/hostapd_template.conf (+3 -0)
📝 api/code/interfaces.go (+1 -2)
📝 api/code/plugins.go (+80 -0)
📝 api/code/ws.go (+39 -36)
📝 api_sample_plugin/code/sample_plugin.go (+3 -1)
📝 base/template_configs/wifi/hostapd_template.conf (+3 -0)
📝 db/code/boltapi.go (+3 -1)
📝 dyndns/code/dyndns_plugin.go (+3 -1)
📝 frontend/src/api/API.js (+3 -1)
📝 frontend/src/api/MockAPI.js (+1 -0)
📝 frontend/src/api/WebSocket.js (+20 -5)
📝 frontend/src/api/Wifi.js (+2 -0)
📝 frontend/src/api/mesh.js (+5 -1)
frontend/src/components/Dashboard/Intro.js (+130 -0)
📝 frontend/src/components/Devices/AddDevice.js (+187 -172)

...and 22 more files

📄 Description

Improvements

  • TLS support for mesh setup
  • Improved setup flow UI
  • Reduce logging on HTTP services
  • H2E support in hostapd

🔄 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/353 **Author:** [@lts-rad](https://github.com/lts-rad) **Created:** 8/15/2024 **Status:** ✅ Merged **Merged:** 8/16/2024 **Merged by:** [@lts-rad](https://github.com/lts-rad) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`72cb233`](https://github.com/spr-networks/super/commit/72cb233f6a018e9e85436844057eb894d3c63cf5) [ui] Clean up mesh OTP redirect - [`1468d34`](https://github.com/spr-networks/super/commit/1468d34fed7f568a9be9acb76bd9a64af8da517f) [api] fix formatting - [`17e58d1`](https://github.com/spr-networks/super/commit/17e58d1d4a35faaaf1c52541a521ce55509f0421) [api] restart pfw to ensure fw rules are syncd when api restarts - [`8522585`](https://github.com/spr-networks/super/commit/852258564d7e80b586b869969097bfb76becedb5) [api] call PluginRoutes after the other inits - [`8981a07`](https://github.com/spr-networks/super/commit/8981a07da8e2604e87b19d02d8777d83b54fd6b3) [ui] fix url for plugin ui - [`e8bfc27`](https://github.com/spr-networks/super/commit/e8bfc27154369704779d7d5744b6c775e32f084f) [ui] skip showing msg & only show modal for otp info - [`f354346`](https://github.com/spr-networks/super/commit/f354346a8786527b40cccde20b21bcc3e17e5633) [ui] show message in modal if no otp & redir button - [`6f1f006`](https://github.com/spr-networks/super/commit/6f1f0068274b7317b53df52f927fb3c01f2cbe06) [multicast_udp_proxy] Publish spr.local on setup AP - [`5a3447c`](https://github.com/spr-networks/super/commit/5a3447c5cee1a697cb2bb7b9f474ee6e8e78c846) [ui] refactor, cleanup, more space. skip fw rules for now, wip - [`aba2f23`](https://github.com/spr-networks/super/commit/aba2f23e2c415e675cb18c316a7b7fe60418ff48) [wifid] [api] Add support for H2E by default ### 📊 Changes **42 files changed** (+1626 additions, -872 deletions) <details> <summary>View changed files</summary> 📝 `RELEASE-NOTES.md` (+9 -2) 📝 `api/code/api.go` (+27 -24) 📝 `api/code/auth.go` (+0 -2) 📝 `api/code/dhcp.go` (+1 -0) 📝 `api/code/firewall.go` (+1 -1) 📝 `api/code/hostapd_template.conf` (+3 -0) 📝 `api/code/interfaces.go` (+1 -2) 📝 `api/code/plugins.go` (+80 -0) 📝 `api/code/ws.go` (+39 -36) 📝 `api_sample_plugin/code/sample_plugin.go` (+3 -1) 📝 `base/template_configs/wifi/hostapd_template.conf` (+3 -0) 📝 `db/code/boltapi.go` (+3 -1) 📝 `dyndns/code/dyndns_plugin.go` (+3 -1) 📝 `frontend/src/api/API.js` (+3 -1) 📝 `frontend/src/api/MockAPI.js` (+1 -0) 📝 `frontend/src/api/WebSocket.js` (+20 -5) 📝 `frontend/src/api/Wifi.js` (+2 -0) 📝 `frontend/src/api/mesh.js` (+5 -1) ➕ `frontend/src/components/Dashboard/Intro.js` (+130 -0) 📝 `frontend/src/components/Devices/AddDevice.js` (+187 -172) _...and 22 more files_ </details> ### 📄 Description Improvements - TLS support for mesh setup - Improved setup flow UI - Reduce logging on HTTP services - H2E support in hostapd --- <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:44 +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#412
No description provided.