[PR #408] [MERGED] Firewall UI Updates #patch #431

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

📋 Pull Request Information

Original PR: https://github.com/spr-networks/super/pull/408
Author: @lts-rad
Created: 4/25/2025
Status: Merged
Merged: 5/1/2025
Merged by: @lts-rad

Base: mainHead: dev


📝 Commits (10+)

  • 5dc061a [superd] [build] Shrink oversized docker binaries in superd with strip & upx
  • 8cad0b5 [build] Use 24.10 image and shrink install size
  • 4f84386 [superd] Revert upx experiment
  • 7a09732 [build] Update release notes
  • 74c0264 [api] Retry starting wifid with a timer in case superd is not ready yet
  • 5a4dd89 [ui] Fix checkbox state for GCMP
  • 6777321 [ui] Update Firewall & Services View to Tabs
  • f881de5 [ui] Fix warning about boolean proptype typo
  • d664386 [ui] Fix iOS height when rendering
  • f4224ec [ui] Fix firewall lists on native mobile

📊 Changes

41 files changed (+2441 additions, -878 deletions)

View changed files

📝 RELEASE-NOTES.md (+9 -0)
📝 api/code/api.go (+13 -3)
📝 frontend/src/__tests__/ClientSelect.js (+82 -16)
📝 frontend/src/__tests__/Pfw.js (+2 -5)
📝 frontend/src/components/ClientSelect.js (+728 -118)
📝 frontend/src/components/DNS/DNSBlocklist.js (+1 -0)
📝 frontend/src/components/DNS/DNSLogHistoryList.js (+0 -1)
📝 frontend/src/components/DNS/DNSOverrideListItem.js (+1 -0)
📝 frontend/src/components/Devices/Device.js (+1 -1)
📝 frontend/src/components/Devices/DeviceList.ios.js (+1 -1)
📝 frontend/src/components/Devices/DeviceList.js (+1 -1)
📝 frontend/src/components/Firewall/AddBlock.js (+19 -12)
📝 frontend/src/components/Firewall/AddContainerInterfaceRule.js (+19 -4)
📝 frontend/src/components/Firewall/AddEndpoint.js (+19 -4)
📝 frontend/src/components/Firewall/AddForward.js (+19 -4)
📝 frontend/src/components/Firewall/AddForwardBlock.js (+19 -4)
📝 frontend/src/components/Firewall/AddMulticastPort.js (+30 -16)
📝 frontend/src/components/Firewall/AddOutputBlock.js (+19 -12)
📝 frontend/src/components/Firewall/AddServicePort.js (+18 -10)
📝 frontend/src/components/Firewall/BlockList.js (+1 -2)

...and 21 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/408 **Author:** [@lts-rad](https://github.com/lts-rad) **Created:** 4/25/2025 **Status:** ✅ Merged **Merged:** 5/1/2025 **Merged by:** [@lts-rad](https://github.com/lts-rad) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`5dc061a`](https://github.com/spr-networks/super/commit/5dc061a9a003a0a7b5ff42a10374199a4294f9de) [superd] [build] Shrink oversized docker binaries in superd with strip & upx - [`8cad0b5`](https://github.com/spr-networks/super/commit/8cad0b56e8d0530275b61eb142d1ab5874551826) [build] Use 24.10 image and shrink install size - [`4f84386`](https://github.com/spr-networks/super/commit/4f84386ef6c090a86283f8a2f2c65bd918de0884) [superd] Revert upx experiment - [`7a09732`](https://github.com/spr-networks/super/commit/7a0973295b904024a6546b71224cdeb4219bac26) [build] Update release notes - [`74c0264`](https://github.com/spr-networks/super/commit/74c026469698cd7ed56d640a24cfa0f41464e40d) [api] Retry starting wifid with a timer in case superd is not ready yet - [`5a4dd89`](https://github.com/spr-networks/super/commit/5a4dd894413978a946cd33e785239fa3b3fbb6e7) [ui] Fix checkbox state for GCMP - [`6777321`](https://github.com/spr-networks/super/commit/6777321df83e93151ef0799d6faaccbc81b19905) [ui] Update Firewall & Services View to Tabs - [`f881de5`](https://github.com/spr-networks/super/commit/f881de5fce492ca0dd17a23a2466616bb6e869e6) [ui] Fix warning about boolean proptype typo - [`d664386`](https://github.com/spr-networks/super/commit/d66438677260c675f7a5bf2f4e36f415b40f38df) [ui] Fix iOS height when rendering - [`f4224ec`](https://github.com/spr-networks/super/commit/f4224ec8eaacd1766878c0ff79c0bbe367fd85c0) [ui] Fix firewall lists on native mobile ### 📊 Changes **41 files changed** (+2441 additions, -878 deletions) <details> <summary>View changed files</summary> 📝 `RELEASE-NOTES.md` (+9 -0) 📝 `api/code/api.go` (+13 -3) 📝 `frontend/src/__tests__/ClientSelect.js` (+82 -16) 📝 `frontend/src/__tests__/Pfw.js` (+2 -5) 📝 `frontend/src/components/ClientSelect.js` (+728 -118) 📝 `frontend/src/components/DNS/DNSBlocklist.js` (+1 -0) 📝 `frontend/src/components/DNS/DNSLogHistoryList.js` (+0 -1) 📝 `frontend/src/components/DNS/DNSOverrideListItem.js` (+1 -0) 📝 `frontend/src/components/Devices/Device.js` (+1 -1) 📝 `frontend/src/components/Devices/DeviceList.ios.js` (+1 -1) 📝 `frontend/src/components/Devices/DeviceList.js` (+1 -1) 📝 `frontend/src/components/Firewall/AddBlock.js` (+19 -12) 📝 `frontend/src/components/Firewall/AddContainerInterfaceRule.js` (+19 -4) 📝 `frontend/src/components/Firewall/AddEndpoint.js` (+19 -4) 📝 `frontend/src/components/Firewall/AddForward.js` (+19 -4) 📝 `frontend/src/components/Firewall/AddForwardBlock.js` (+19 -4) 📝 `frontend/src/components/Firewall/AddMulticastPort.js` (+30 -16) 📝 `frontend/src/components/Firewall/AddOutputBlock.js` (+19 -12) 📝 `frontend/src/components/Firewall/AddServicePort.js` (+18 -10) 📝 `frontend/src/components/Firewall/BlockList.js` (+1 -2) _...and 21 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:49 +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#431
No description provided.