[PR #283] [MERGED] ui+ios updates #patch #393

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

📋 Pull Request Information

Original PR: https://github.com/spr-networks/super/pull/283
Author: @lts-po
Created: 2/11/2024
Status: Merged
Merged: 2/22/2024
Merged by: @lts-rad

Base: mainHead: dev


📝 Commits (10+)

  • 0dc8c00 [build] move codeql scans to the dev branch
  • 4e061df [wifid] Address #279 by resetting wlan0 down/up on startup
  • 8b4628a [ui] fix #271
  • 134a5d8 gluestack + iOS updates (#280)
  • a3442aa [ui] qrcode for device component
  • 9a9edfd [ui] get device, with psk if otp
  • f512cb2 [ui] show otp in modal
  • 4a70712 [ui] show login info & qrcode for device
  • e5968c2 [api] /device route to include psk if otp auth
  • f39273e [ui] menu order

📊 Changes

71 files changed (+1296 additions, -1270 deletions)

View changed files

📝 .github/workflows/codeql.yml (+2 -2)
📝 .github/workflows/docker-image.yml (+1 -1)
📝 api/code/api.go (+39 -9)
📝 api/code/auth.go (+0 -1)
📝 api/code/dhcp.go (+7 -0)
📝 api/code/go.mod (+5 -5)
📝 api/code/go.sum (+10 -0)
📝 base/template_configs/devices/devices.json (+2 -2)
📝 dyndns/Dockerfile (+3 -3)
📝 dyndns/code/go.mod (+1 -1)
📝 dyndns/code/go.sum (+2 -0)
📝 frontend/ios/Podfile.lock (+179 -180)
📝 frontend/ios/spr/Info.plist (+2 -8)
📝 frontend/package.json (+4 -4)
📝 frontend/src/api/Device.js (+4 -0)
📝 frontend/src/components/Alerts/AddAlert.js (+6 -4)
📝 frontend/src/components/Alerts/AlertListItem.js (+4 -3)
📝 frontend/src/components/Alerts/AlertUtil.js (+67 -75)
📝 frontend/src/components/Auth/OTPValidate.js (+17 -30)
📝 frontend/src/components/DNS/DNSBlocklistSettings.js (+10 -7)

...and 51 more files

📄 Description

mainly ui patches for v0.3.5:

  • alerts view
  • default icon and color for new devices
  • disable edit of pending devices
  • catch auth:failure events by default
  • remove autoFocus for some input elements
    api:
  • Add device names as .lan domains
  • For local mappings allow multiple names for one IP

🔄 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/283 **Author:** [@lts-po](https://github.com/lts-po) **Created:** 2/11/2024 **Status:** ✅ Merged **Merged:** 2/22/2024 **Merged by:** [@lts-rad](https://github.com/lts-rad) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`0dc8c00`](https://github.com/spr-networks/super/commit/0dc8c000bf3baeb8b2afce1694496bad311f44dc) [build] move codeql scans to the dev branch - [`4e061df`](https://github.com/spr-networks/super/commit/4e061dfefabe0f84c2b7c21af9bdfca73fd61b17) [wifid] Address #279 by resetting wlan0 down/up on startup - [`8b4628a`](https://github.com/spr-networks/super/commit/8b4628a2a5d6715fbb279cd64b6f3a2aecfa1a6a) [ui] fix #271 - [`134a5d8`](https://github.com/spr-networks/super/commit/134a5d8a3e6a043e1ef7c75955f01e980e8b0c6c) gluestack + iOS updates (#280) - [`a3442aa`](https://github.com/spr-networks/super/commit/a3442aaf9d625b6f44b1857a41b882afb6d518a3) [ui] qrcode for device component - [`9a9edfd`](https://github.com/spr-networks/super/commit/9a9edfd40f6f39f74d591cb83677c9b8af0b036a) [ui] get device, with psk if otp - [`f512cb2`](https://github.com/spr-networks/super/commit/f512cb2a80f9a2235044c63650881aaa2fd09bef) [ui] show otp in modal - [`4a70712`](https://github.com/spr-networks/super/commit/4a70712600264c11d52f0c37cecf7a595a832c33) [ui] show login info & qrcode for device - [`e5968c2`](https://github.com/spr-networks/super/commit/e5968c2ba626c78f22939a42642bfaaf95dfe4b7) [api] /device route to include psk if otp auth - [`f39273e`](https://github.com/spr-networks/super/commit/f39273e881e2df0aff7875bbf52f9e35f3ce369d) [ui] menu order ### 📊 Changes **71 files changed** (+1296 additions, -1270 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/codeql.yml` (+2 -2) 📝 `.github/workflows/docker-image.yml` (+1 -1) 📝 `api/code/api.go` (+39 -9) 📝 `api/code/auth.go` (+0 -1) 📝 `api/code/dhcp.go` (+7 -0) 📝 `api/code/go.mod` (+5 -5) 📝 `api/code/go.sum` (+10 -0) 📝 `base/template_configs/devices/devices.json` (+2 -2) 📝 `dyndns/Dockerfile` (+3 -3) 📝 `dyndns/code/go.mod` (+1 -1) 📝 `dyndns/code/go.sum` (+2 -0) 📝 `frontend/ios/Podfile.lock` (+179 -180) 📝 `frontend/ios/spr/Info.plist` (+2 -8) 📝 `frontend/package.json` (+4 -4) 📝 `frontend/src/api/Device.js` (+4 -0) 📝 `frontend/src/components/Alerts/AddAlert.js` (+6 -4) 📝 `frontend/src/components/Alerts/AlertListItem.js` (+4 -3) 📝 `frontend/src/components/Alerts/AlertUtil.js` (+67 -75) 📝 `frontend/src/components/Auth/OTPValidate.js` (+17 -30) 📝 `frontend/src/components/DNS/DNSBlocklistSettings.js` (+10 -7) _...and 51 more files_ </details> ### 📄 Description mainly ui patches for v0.3.5: - alerts view - default icon and color for new devices - disable edit of pending devices - catch auth:failure events by default - remove autoFocus for some input elements api: - Add device names as .lan domains - For local mappings allow multiple names for one IP --- <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:38 +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#393
No description provided.