[PR #206] [MERGED] October Release #patch #367

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

📋 Pull Request Information

Original PR: https://github.com/spr-networks/super/pull/206
Author: @lts-rad
Created: 10/5/2023
Status: Merged
Merged: 10/5/2023
Merged by: @lts-rad

Base: mainHead: dev


📝 Commits (10+)

  • dc0664e [ui] add useSwipe component for swipe left and right
  • f81e227 [ui] mobile view
  • 1925f11 [ui] show device name if available
  • ced6abb [ui] new edit device view
  • 36cf4b2 [ui] mac address
  • ca9485d [ui] helper text for trailing dot on domain names, issue #166
  • 29975f1 [ui] bugfix multiple modal popups
  • 353267b [ui] add swipe up/down
  • 5d08101 [ui] swipe to refresh on mobile. also show time ago for query
  • bfc051d [ui] skip useSwipe for now

📊 Changes

45 files changed (+2008 additions, -436 deletions)

View changed files

📝 api/Dockerfile (+1 -1)
📝 api/code/api.go (+309 -13)
📝 api/code/dhcp.go (+3 -83)
📝 api/code/firewall.go (+265 -81)
📝 api/code/interfaces.go (+51 -11)
📝 api/code/plugins.go (+1 -1)
📝 api/code/radios.go (+2 -2)
📝 api/scripts/iwdev.py (+1 -0)
📝 api/scripts/iwlist.py (+1 -0)
📝 base/scripts/nft_rules.sh (+63 -26)
📝 base/template_configs/base/api.json (+2 -2)
📝 base/template_configs/dns/Corefile (+3 -1)
📝 build_docker_compose.sh (+6 -1)
📝 frontend/src/__tests__/Pfw.js (+1 -1)
frontend/src/api/CoreDNS.js (+12 -0)
📝 frontend/src/api/Firewall.js (+27 -11)
frontend/src/api/Multicast.js (+12 -0)
frontend/src/components/Firewall/AddMulticastPort.js (+149 -0)
📝 frontend/src/components/Firewall/BlockList.js (+10 -5)
📝 frontend/src/components/Firewall/EndpointList.js (+40 -33)

...and 25 more files

📄 Description

  • Bug fixes for DNS plugins

  • New UI for DNS configuration

  • New UI for multicast proxy settings

  • MDNS and Ping support, also during setup

  • UI improvements to menu and UI fixes for glitches

  • Refactor nftables for tcp/udp/multicast

    • Create new wired interfaces set and move all devices to lan_interfaces upon dhcp

🔄 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/206 **Author:** [@lts-rad](https://github.com/lts-rad) **Created:** 10/5/2023 **Status:** ✅ Merged **Merged:** 10/5/2023 **Merged by:** [@lts-rad](https://github.com/lts-rad) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`dc0664e`](https://github.com/spr-networks/super/commit/dc0664e2f1ecff7623b3994b3364eb3f60db7f86) [ui] add useSwipe component for swipe left and right - [`f81e227`](https://github.com/spr-networks/super/commit/f81e227282048b708b4da053fbc7f2bbcb69a9d3) [ui] mobile view - [`1925f11`](https://github.com/spr-networks/super/commit/1925f11ff39a19fbe897b5d839e45d1891f83716) [ui] show device name if available - [`ced6abb`](https://github.com/spr-networks/super/commit/ced6abbbfc4c5c4cd4c88dca8ef8e08d9811e068) [ui] new edit device view - [`36cf4b2`](https://github.com/spr-networks/super/commit/36cf4b28b913dffa5d93b15d0a56a5f66ff97d94) [ui] mac address - [`ca9485d`](https://github.com/spr-networks/super/commit/ca9485db4c977a38c3bd74e4bc15d54c88ceeec8) [ui] helper text for trailing dot on domain names, issue #166 - [`29975f1`](https://github.com/spr-networks/super/commit/29975f100fa6c6c7acd3a2144782ef3068768965) [ui] bugfix multiple modal popups - [`353267b`](https://github.com/spr-networks/super/commit/353267bc61fa6ac1d04d978b952f2767986e7dbe) [ui] add swipe up/down - [`5d08101`](https://github.com/spr-networks/super/commit/5d08101a4cc5291c5fb1c66a71a663d3caaa156b) [ui] swipe to refresh on mobile. also show time ago for query - [`bfc051d`](https://github.com/spr-networks/super/commit/bfc051d6beb4443daacbef5954ead23354ff68db) [ui] skip useSwipe for now ### 📊 Changes **45 files changed** (+2008 additions, -436 deletions) <details> <summary>View changed files</summary> 📝 `api/Dockerfile` (+1 -1) 📝 `api/code/api.go` (+309 -13) 📝 `api/code/dhcp.go` (+3 -83) 📝 `api/code/firewall.go` (+265 -81) 📝 `api/code/interfaces.go` (+51 -11) 📝 `api/code/plugins.go` (+1 -1) 📝 `api/code/radios.go` (+2 -2) 📝 `api/scripts/iwdev.py` (+1 -0) 📝 `api/scripts/iwlist.py` (+1 -0) 📝 `base/scripts/nft_rules.sh` (+63 -26) 📝 `base/template_configs/base/api.json` (+2 -2) 📝 `base/template_configs/dns/Corefile` (+3 -1) 📝 `build_docker_compose.sh` (+6 -1) 📝 `frontend/src/__tests__/Pfw.js` (+1 -1) ➕ `frontend/src/api/CoreDNS.js` (+12 -0) 📝 `frontend/src/api/Firewall.js` (+27 -11) ➕ `frontend/src/api/Multicast.js` (+12 -0) ➕ `frontend/src/components/Firewall/AddMulticastPort.js` (+149 -0) 📝 `frontend/src/components/Firewall/BlockList.js` (+10 -5) 📝 `frontend/src/components/Firewall/EndpointList.js` (+40 -33) _...and 25 more files_ </details> ### 📄 Description - Bug fixes for DNS plugins - New UI for DNS configuration - New UI for multicast proxy settings - MDNS and Ping support, also during setup - UI improvements to menu and UI fixes for glitches - Refactor nftables for tcp/udp/multicast - Create new wired interfaces set and move all devices to lan_interfaces upon dhcp --- <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:30 +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#367
No description provided.