[PR #191] [MERGED] Dev #365

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/191
Author: @lts-po
Created: 9/11/2023
Status: Merged
Merged: 9/11/2023
Merged by: @lts-po

Base: mainHead: dev


📝 Commits (10+)

  • e89ab13 [plugin-lookup] wireshark updated manuf location for oui lookups
  • 10f1cf4 [ui] set max width for oui vendor
  • a2a9dac [ui] click to toggle uri on mobile, more space
  • 8028f1c [ui] Cosmetic changes to DNS Override text/colors
  • 7fb7dad [ui] Dont display API tokens in UI by default
  • 746685b [ui] [api] Fix resetting VLAN tag
  • 8ea5d7d [ui] Sort ips for Downlink/Uplink views
  • 3ba3960 [ui] Remove tinynet endpoints from the endpoint list
  • 8b04ef9 [wireguard] Support a default list of endpoints
  • 099485e [ui] Add/remove default domain endpoints for wireguard

📊 Changes

23 files changed (+426 additions, -82 deletions)

View changed files

📝 api/code/api.go (+7 -2)
📝 frontend/src/api/API.js (+1 -2)
📝 frontend/src/api/Wireguard.js (+9 -0)
📝 frontend/src/components/Auth/AuthTokenList.js (+11 -28)
📝 frontend/src/components/DNS/DNSBlocklist.js (+22 -2)
📝 frontend/src/components/DNS/DNSLogHistoryList.js (+4 -2)
📝 frontend/src/components/Devices/Device.js (+5 -3)
📝 frontend/src/components/Devices/DeviceListing.js (+1 -2)
📝 frontend/src/components/Devices/EditDevice.js (+3 -1)
📝 frontend/src/components/Sidebar/Sidebar.js (+1 -2)
📝 frontend/src/components/Wireguard/PeerList.js (+4 -1)
📝 frontend/src/components/Wireguard/WireguardAddPeer.js (+31 -13)
📝 frontend/src/routes.js (+3 -2)
📝 frontend/src/utils.js (+22 -0)
📝 frontend/src/views/DNS/DNSOverride.js (+1 -1)
📝 frontend/src/views/Devices/Device.js (+10 -2)
📝 frontend/src/views/LANLinkConfiguration.js (+49 -4)
📝 frontend/src/views/Mesh.js (+11 -1)
📝 frontend/src/views/UplinkConfiguration.js (+36 -4)
📝 frontend/src/views/Wireguard.js (+117 -1)

...and 3 more files

📄 Description

small changes for virtual + lookup plugin


🔄 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/191 **Author:** [@lts-po](https://github.com/lts-po) **Created:** 9/11/2023 **Status:** ✅ Merged **Merged:** 9/11/2023 **Merged by:** [@lts-po](https://github.com/lts-po) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`e89ab13`](https://github.com/spr-networks/super/commit/e89ab13dfdb4c279518cfbf0f7485e4e47eb5038) [plugin-lookup] wireshark updated manuf location for oui lookups - [`10f1cf4`](https://github.com/spr-networks/super/commit/10f1cf4285e2ba28b962a7512d3ce2958629b4fb) [ui] set max width for oui vendor - [`a2a9dac`](https://github.com/spr-networks/super/commit/a2a9dacceec5bd9ee7ff9f2b90eaedfeb84deb25) [ui] click to toggle uri on mobile, more space - [`8028f1c`](https://github.com/spr-networks/super/commit/8028f1cde801e6be045db0c0d5e37ec504b8d713) [ui] Cosmetic changes to DNS Override text/colors - [`7fb7dad`](https://github.com/spr-networks/super/commit/7fb7dad94561a0eb15bc030b50ab5aadd7403554) [ui] Dont display API tokens in UI by default - [`746685b`](https://github.com/spr-networks/super/commit/746685b4960a8b5b2b64d52d41a6a116ba115f54) [ui] [api] Fix resetting VLAN tag - [`8ea5d7d`](https://github.com/spr-networks/super/commit/8ea5d7d7565af7802e4d60b9578c81e2c2cc2dce) [ui] Sort ips for Downlink/Uplink views - [`3ba3960`](https://github.com/spr-networks/super/commit/3ba3960e5f2dbb1e1d10c5e1b0da766ab67b8c76) [ui] Remove tinynet endpoints from the endpoint list - [`8b04ef9`](https://github.com/spr-networks/super/commit/8b04ef978aef4712f4ec3e890729c0eb6f196221) [wireguard] Support a default list of endpoints - [`099485e`](https://github.com/spr-networks/super/commit/099485e4bddd37cc02d4f1fa70221e86afcfe434) [ui] Add/remove default domain endpoints for wireguard ### 📊 Changes **23 files changed** (+426 additions, -82 deletions) <details> <summary>View changed files</summary> 📝 `api/code/api.go` (+7 -2) 📝 `frontend/src/api/API.js` (+1 -2) 📝 `frontend/src/api/Wireguard.js` (+9 -0) 📝 `frontend/src/components/Auth/AuthTokenList.js` (+11 -28) 📝 `frontend/src/components/DNS/DNSBlocklist.js` (+22 -2) 📝 `frontend/src/components/DNS/DNSLogHistoryList.js` (+4 -2) 📝 `frontend/src/components/Devices/Device.js` (+5 -3) 📝 `frontend/src/components/Devices/DeviceListing.js` (+1 -2) 📝 `frontend/src/components/Devices/EditDevice.js` (+3 -1) 📝 `frontend/src/components/Sidebar/Sidebar.js` (+1 -2) 📝 `frontend/src/components/Wireguard/PeerList.js` (+4 -1) 📝 `frontend/src/components/Wireguard/WireguardAddPeer.js` (+31 -13) 📝 `frontend/src/routes.js` (+3 -2) 📝 `frontend/src/utils.js` (+22 -0) 📝 `frontend/src/views/DNS/DNSOverride.js` (+1 -1) 📝 `frontend/src/views/Devices/Device.js` (+10 -2) 📝 `frontend/src/views/LANLinkConfiguration.js` (+49 -4) 📝 `frontend/src/views/Mesh.js` (+11 -1) 📝 `frontend/src/views/UplinkConfiguration.js` (+36 -4) 📝 `frontend/src/views/Wireguard.js` (+117 -1) _...and 3 more files_ </details> ### 📄 Description small changes for virtual + lookup plugin --- <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#365
No description provided.