[PR #28] [MERGED] Dev #262

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

📋 Pull Request Information

Original PR: https://github.com/spr-networks/super/pull/28
Author: @lts-rad
Created: 5/24/2022
Status: Merged
Merged: 5/24/2022
Merged by: @lts-rad

Base: mainHead: dev


📝 Commits (10+)

  • de358f5 [ui] add global Modal context, same as notifications
  • 27ed8cd [ui] hide button of no triggerText is provided
  • 16c33ca [ui] add reportError & success to global modalContext
  • cc9fb1e [ui] click on domain in dnslog to open modal for block
  • a42075f [ui] pass clientip if one selected, else *, for block
  • 3115971 [wireguard] Change path for state
  • b3e9dc1 [wireguard] Update endpoint lookup to get public IP
  • b1d2a13 [wireguard] merge
  • 391cd34 [wireguard] Fix build
  • 3fdde11 [ui] fix bug in charts - diff

📊 Changes

277 files changed (+16309 additions, -45527 deletions)

View changed files

📝 .github/workflows/docker-image.yml (+1 -1)
📝 api/code/api.go (+73 -78)
📝 api/code/auth.go (+219 -45)
📝 api/code/firewall.go (+223 -209)
📝 api/code/radios.go (+219 -0)
api/scripts/generate-certificate.sh (+48 -0)
📝 api/scripts/iw_list.py (+12 -5)
📝 api/scripts/startup.sh (+6 -0)
📝 base/scripts/nft_rules.sh (+22 -30)
📝 base/scripts/startup.sh (+7 -5)
📝 base/template_configs/base/api.json (+13 -2)
📝 base/template_configs/scripts/gen_hostapd.sh (+1 -0)
📝 build_docker_compose.sh (+4 -5)
📝 docker-compose-prebuilt.yml (+37 -35)
📝 docker-compose-src.yml (+51 -55)
docker-compose-virt.yml (+130 -0)
docker-compose-virtsrc.yml (+130 -0)
dyndns/Dockerfile (+25 -0)
dyndns/code/dyndns_plugin.go (+220 -0)
dyndns/code/go.mod (+5 -0)

...and 80 more files

📄 Description

  • react native UI
  • dyndns plugin
  • auth tokens
  • ssl support
  • wireless channel selection

🔄 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/28 **Author:** [@lts-rad](https://github.com/lts-rad) **Created:** 5/24/2022 **Status:** ✅ Merged **Merged:** 5/24/2022 **Merged by:** [@lts-rad](https://github.com/lts-rad) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`de358f5`](https://github.com/spr-networks/super/commit/de358f5926dcc2aae6177939689390fb4dfbf5f8) [ui] add global Modal context, same as notifications - [`27ed8cd`](https://github.com/spr-networks/super/commit/27ed8cde50b94b403ccb87fda918a086e76110d8) [ui] hide button of no triggerText is provided - [`16c33ca`](https://github.com/spr-networks/super/commit/16c33ca73a4b7e3df112053dca478f089f61dddb) [ui] add reportError & success to global modalContext - [`cc9fb1e`](https://github.com/spr-networks/super/commit/cc9fb1e7a95d7b6296cc23153ba85ed8be497d4f) [ui] click on domain in dnslog to open modal for block - [`a42075f`](https://github.com/spr-networks/super/commit/a42075fc6a817034cbeba051be5d72c45b22a3f0) [ui] pass clientip if one selected, else *, for block - [`3115971`](https://github.com/spr-networks/super/commit/3115971e75b6f6843b6b9970960792f7cbe03aa0) [wireguard] Change path for state - [`b3e9dc1`](https://github.com/spr-networks/super/commit/b3e9dc1278356383346ead2406a97fe882cec48b) [wireguard] Update endpoint lookup to get public IP - [`b1d2a13`](https://github.com/spr-networks/super/commit/b1d2a1325a96acef3ed6af76b9b790adfcb50abb) [wireguard] merge - [`391cd34`](https://github.com/spr-networks/super/commit/391cd3438061056c19ba9f091acb1d4c3c7d9460) [wireguard] Fix build - [`3fdde11`](https://github.com/spr-networks/super/commit/3fdde110745f3cdcddc3e5e1d9a2bab4e000a348) [ui] fix bug in charts - diff ### 📊 Changes **277 files changed** (+16309 additions, -45527 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/docker-image.yml` (+1 -1) 📝 `api/code/api.go` (+73 -78) 📝 `api/code/auth.go` (+219 -45) 📝 `api/code/firewall.go` (+223 -209) 📝 `api/code/radios.go` (+219 -0) ➕ `api/scripts/generate-certificate.sh` (+48 -0) 📝 `api/scripts/iw_list.py` (+12 -5) 📝 `api/scripts/startup.sh` (+6 -0) 📝 `base/scripts/nft_rules.sh` (+22 -30) 📝 `base/scripts/startup.sh` (+7 -5) 📝 `base/template_configs/base/api.json` (+13 -2) 📝 `base/template_configs/scripts/gen_hostapd.sh` (+1 -0) 📝 `build_docker_compose.sh` (+4 -5) 📝 `docker-compose-prebuilt.yml` (+37 -35) 📝 `docker-compose-src.yml` (+51 -55) ➕ `docker-compose-virt.yml` (+130 -0) ➕ `docker-compose-virtsrc.yml` (+130 -0) ➕ `dyndns/Dockerfile` (+25 -0) ➕ `dyndns/code/dyndns_plugin.go` (+220 -0) ➕ `dyndns/code/go.mod` (+5 -0) _...and 80 more files_ </details> ### 📄 Description - react native UI - dyndns plugin - auth tokens - ssl support - wireless channel selection --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-04 01:35:58 +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#262
No description provided.