[PR #127] [MERGED] March update #patch #332

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

📋 Pull Request Information

Original PR: https://github.com/spr-networks/super/pull/127
Author: @lts-rad
Created: 3/26/2023
Status: Merged
Merged: 3/26/2023
Merged by: @lts-rad

Base: mainHead: dev


📝 Commits (10+)

  • b3f84ec [api] Add systemd/journald back into the build
  • 0c0c0d3 [api] Add support for tags, encode GET parameters
  • f0c1b28 [api] Update tags response
  • 240a16f [superd] Refactor channels to ignore PLUS modules
  • a39b0ff [api] Fix mismatch between version and tags
  • 3be91b9 [testing] Add tests for release API calls
  • 228aaa0 [superd] strip newline for docker inspect. use container param for container_version
  • 1f9f76f [superd] Switch to PUT instead of get for actions
  • 5d00535 Merge branch 'dev' of https://github.com/spr-networks/super into dev
  • f898ad7 [superd] Fix whitespace

📊 Changes

31 files changed (+5840 additions, -5324 deletions)

View changed files

📝 api/Dockerfile (+1 -1)
📝 api/code/api.go (+155 -31)
📝 api/code/plugins.go (+29 -8)
📝 api/code/radios.go (+41 -22)
📝 api/scripts/iw_list.py (+4 -0)
📝 frontend/README.md (+2 -0)
📝 frontend/ios/Podfile.lock (+1 -1)
📝 frontend/package.json (+3 -3)
📝 frontend/src/FontAwesomeUtils.js (+12 -0)
frontend/src/__tests__/Pfw.js (+50 -0)
📝 frontend/src/api/MockAPI.js (+38 -0)
📝 frontend/src/api/Nfmap.js (+4 -10)
📝 frontend/src/api/Wifi.js (+4 -0)
📝 frontend/src/components/DNS/DNSLogList.js (+44 -37)
📝 frontend/src/components/Devices/DeviceListing.js (+69 -45)
📝 frontend/src/components/Firewall/ForwardBlockList.js (+0 -1)
📝 frontend/src/components/Firewall/ForwardList.js (+76 -67)
📝 frontend/src/components/ModalForm.js (+15 -13)
📝 frontend/src/components/Plugins/PluginList.js (+101 -116)
frontend/src/components/System/Docker.js (+199 -0)

...and 11 more files

📄 Description

  • Improve wifi settings in UI
  • Stop using hostapd chan switch for setting channels. Just restart hostapd, its fast
  • Fix docker logs, journald was missing
  • Add more support for updates

🔄 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/127 **Author:** [@lts-rad](https://github.com/lts-rad) **Created:** 3/26/2023 **Status:** ✅ Merged **Merged:** 3/26/2023 **Merged by:** [@lts-rad](https://github.com/lts-rad) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`b3f84ec`](https://github.com/spr-networks/super/commit/b3f84ecbd761e8bc25ca50c4bbea6b8d9a0742eb) [api] Add systemd/journald back into the build - [`0c0c0d3`](https://github.com/spr-networks/super/commit/0c0c0d300ef072eaa81082575ff5426c5a71e6a2) [api] Add support for tags, encode GET parameters - [`f0c1b28`](https://github.com/spr-networks/super/commit/f0c1b28fa5c0ce91376f71be89cb19d6d0ae48b7) [api] Update tags response - [`240a16f`](https://github.com/spr-networks/super/commit/240a16f3c527256a210d1201d8c3a72d6fadfe77) [superd] Refactor channels to ignore PLUS modules - [`a39b0ff`](https://github.com/spr-networks/super/commit/a39b0ff122799d4f5965a41f96b603cc8e156cef) [api] Fix mismatch between version and tags - [`3be91b9`](https://github.com/spr-networks/super/commit/3be91b90df07730f4cda6a253f5b029780eba30b) [testing] Add tests for release API calls - [`228aaa0`](https://github.com/spr-networks/super/commit/228aaa088313e5d87ffc1c99ceb7d4d0a0defd0a) [superd] strip newline for docker inspect. use container param for container_version - [`1f9f76f`](https://github.com/spr-networks/super/commit/1f9f76f92ecb7446994c2f3c56cd9fe54358c2c4) [superd] Switch to PUT instead of get for actions - [`5d00535`](https://github.com/spr-networks/super/commit/5d00535b42190a17dce6d6ee56726981cc0b358b) Merge branch 'dev' of https://github.com/spr-networks/super into dev - [`f898ad7`](https://github.com/spr-networks/super/commit/f898ad7fd8d0148c9ca4cca1eb99e8f66a132aa3) [superd] Fix whitespace ### 📊 Changes **31 files changed** (+5840 additions, -5324 deletions) <details> <summary>View changed files</summary> 📝 `api/Dockerfile` (+1 -1) 📝 `api/code/api.go` (+155 -31) 📝 `api/code/plugins.go` (+29 -8) 📝 `api/code/radios.go` (+41 -22) 📝 `api/scripts/iw_list.py` (+4 -0) 📝 `frontend/README.md` (+2 -0) 📝 `frontend/ios/Podfile.lock` (+1 -1) 📝 `frontend/package.json` (+3 -3) 📝 `frontend/src/FontAwesomeUtils.js` (+12 -0) ➕ `frontend/src/__tests__/Pfw.js` (+50 -0) 📝 `frontend/src/api/MockAPI.js` (+38 -0) 📝 `frontend/src/api/Nfmap.js` (+4 -10) 📝 `frontend/src/api/Wifi.js` (+4 -0) 📝 `frontend/src/components/DNS/DNSLogList.js` (+44 -37) 📝 `frontend/src/components/Devices/DeviceListing.js` (+69 -45) 📝 `frontend/src/components/Firewall/ForwardBlockList.js` (+0 -1) 📝 `frontend/src/components/Firewall/ForwardList.js` (+76 -67) 📝 `frontend/src/components/ModalForm.js` (+15 -13) 📝 `frontend/src/components/Plugins/PluginList.js` (+101 -116) ➕ `frontend/src/components/System/Docker.js` (+199 -0) _...and 11 more files_ </details> ### 📄 Description - Improve wifi settings in UI - Stop using hostapd chan switch for setting channels. Just restart hostapd, its fast - Fix docker logs, journald was missing - Add more support for updates --- <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:19 +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#332
No description provided.