[PR #170] [MERGED] Dev #patch #357

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

📋 Pull Request Information

Original PR: https://github.com/spr-networks/super/pull/170
Author: @lts-rad
Created: 6/21/2023
Status: Merged
Merged: 6/21/2023
Merged by: @lts-rad

Base: mainHead: dev


📝 Commits (10+)

  • adb128a [ui] fix default placeholders to 0
  • 40be3d3 [ui] [pfw] Fix useEffect bug with cards
  • 8954841 [ui] catch mesh error
  • 1c4a842 [ui] check fetch
  • 2f013c7 [api] update genSecurePassword to use less confusable characters. Fix issue #52
  • de0c0f7 [db] rename topic: dns:serve:event to dns:serve:ip. fetch max 1000
  • 39bc2f0 [ui] fix mobile view of wifi clients
  • a03b8d6 [ui] use new db api for dns logs
  • 200ca40 [ui] deleteHistory for dns
  • 877fed2 [ui] delete logs in memory and db

📊 Changes

50 files changed (+4131 additions, -2001 deletions)

View changed files

📝 .gitignore (+1 -0)
📝 api/Dockerfile (+2 -2)
📝 api/code/api.go (+59 -139)
📝 api/code/auth.go (+48 -341)
📝 api/code/dhcp.go (+2 -1)
📝 api/code/firewall.go (+690 -53)
📝 api/code/go.mod (+41 -140)
📝 api/code/go.sum (+102 -839)
api/code/interfaces.go (+444 -0)
📝 api/code/plugins.go (+246 -33)
📝 api/code/radios.go (+18 -234)
api/code/uplink.go (+678 -0)
📝 api/code/ws.go (+3 -4)
📝 api/scripts/iw_dev.py (+5 -2)
📝 base/scripts/nft_rules.sh (+156 -56)
📝 base/template_configs/auth/auth_tokens.json (+0 -0)
📝 base/template_configs/base/api.json (+11 -1)
📝 base/template_configs/base/config.sh (+0 -4)
📝 base/template_configs/dns/Corefile (+1 -0)
base/template_configs/ppp/vars.sh (+5 -0)

...and 30 more files

📄 Description

  • Release Upstream Feature
  • Release Endpoints Firewall UI

🔄 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/170 **Author:** [@lts-rad](https://github.com/lts-rad) **Created:** 6/21/2023 **Status:** ✅ Merged **Merged:** 6/21/2023 **Merged by:** [@lts-rad](https://github.com/lts-rad) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`adb128a`](https://github.com/spr-networks/super/commit/adb128aaa544939d805f7e4ebc7aa3eed80101f0) [ui] fix default placeholders to 0 - [`40be3d3`](https://github.com/spr-networks/super/commit/40be3d311c833be5c4ef53bbd31de392f5bce6bd) [ui] [pfw] Fix useEffect bug with cards - [`8954841`](https://github.com/spr-networks/super/commit/8954841072306ac9be8c51f6138d3a1d710b4762) [ui] catch mesh error - [`1c4a842`](https://github.com/spr-networks/super/commit/1c4a842176ecf41a4645ae46738b65394955fcb0) [ui] check fetch - [`2f013c7`](https://github.com/spr-networks/super/commit/2f013c7a1481c64b2d2ee2bb1f4417761e987cbd) [api] update genSecurePassword to use less confusable characters. Fix issue #52 - [`de0c0f7`](https://github.com/spr-networks/super/commit/de0c0f7a583732289034d042d3e6aa009ade3886) [db] rename topic: dns:serve:event to dns:serve:ip. fetch max 1000 - [`39bc2f0`](https://github.com/spr-networks/super/commit/39bc2f03513af65e6f57b081c324a483eef30a6f) [ui] fix mobile view of wifi clients - [`a03b8d6`](https://github.com/spr-networks/super/commit/a03b8d6e008480370796c70d6dd82720b34eb7b5) [ui] use new db api for dns logs - [`200ca40`](https://github.com/spr-networks/super/commit/200ca40bc39a93a37202a311ded8438fe2fe3d96) [ui] deleteHistory for dns - [`877fed2`](https://github.com/spr-networks/super/commit/877fed26e9f3704a5d993b8cd33cefa113e39664) [ui] delete logs in memory and db ### 📊 Changes **50 files changed** (+4131 additions, -2001 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+1 -0) 📝 `api/Dockerfile` (+2 -2) 📝 `api/code/api.go` (+59 -139) 📝 `api/code/auth.go` (+48 -341) 📝 `api/code/dhcp.go` (+2 -1) 📝 `api/code/firewall.go` (+690 -53) 📝 `api/code/go.mod` (+41 -140) 📝 `api/code/go.sum` (+102 -839) ➕ `api/code/interfaces.go` (+444 -0) 📝 `api/code/plugins.go` (+246 -33) 📝 `api/code/radios.go` (+18 -234) ➕ `api/code/uplink.go` (+678 -0) 📝 `api/code/ws.go` (+3 -4) 📝 `api/scripts/iw_dev.py` (+5 -2) 📝 `base/scripts/nft_rules.sh` (+156 -56) 📝 `base/template_configs/auth/auth_tokens.json` (+0 -0) 📝 `base/template_configs/base/api.json` (+11 -1) 📝 `base/template_configs/base/config.sh` (+0 -4) 📝 `base/template_configs/dns/Corefile` (+1 -0) ➕ `base/template_configs/ppp/vars.sh` (+5 -0) _...and 30 more files_ </details> ### 📄 Description - Release Upstream Feature - Release Endpoints Firewall UI --- <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:27 +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#357
No description provided.