[PR #181] [MERGED] July release #patch #362

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

📋 Pull Request Information

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

Base: mainHead: dev


📝 Commits (10+)

  • dc0664e [ui] add useSwipe component for swipe left and right
  • f81e227 [ui] mobile view
  • 1925f11 [ui] show device name if available
  • ced6abb [ui] new edit device view
  • 36cf4b2 [ui] mac address
  • ca9485d [ui] helper text for trailing dot on domain names, issue #166
  • 29975f1 [ui] bugfix multiple modal popups
  • 353267b [ui] add swipe up/down
  • 5d08101 [ui] swipe to refresh on mobile. also show time ago for query
  • bfc051d [ui] skip useSwipe for now

📊 Changes

39 files changed (+3898 additions, -573 deletions)

View changed files

📝 api/code/api.go (+88 -13)
📝 api/code/dhcp.go (+13 -24)
📝 api/code/firewall.go (+26 -4)
📝 api/code/interfaces.go (+213 -1)
📝 api/code/plugins.go (+7 -13)
📝 api/code/uplink.go (+0 -43)
📝 db/Dockerfile (+2 -2)
📝 db/code/boltapi.go (+50 -19)
📝 db/code/cmd/boltapi/main.go (+11 -7)
📝 db/code/go.mod (+1 -1)
📝 db/code/go.sum (+1486 -8)
📝 db/code/sweep.go (+75 -94)
📝 dhcp/Dockerfile (+0 -1)
📝 frontend/src/FontAwesomeUtils.js (+84 -0)
📝 frontend/src/api/Device.js (+30 -20)
frontend/src/components/ColorPicker.js (+48 -0)
📝 frontend/src/components/DNS/DNSAddOverride.js (+5 -1)
📝 frontend/src/components/DNS/DNSLogHistoryList.js (+4 -1)
📝 frontend/src/components/DNS/DNSOverrideList.js (+36 -27)
📝 frontend/src/components/Dashboard/StatsChartWidget.js (+2 -2)

...and 19 more files

📄 Description

UI Updates;

  • New Device view
  • iOS device swipe views
  • Custom icons
    New features
  • VLAN Trunk Port support
    Bug fixes:
  • switched events db to bbolt, implemented compaction

🔄 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/181 **Author:** [@lts-rad](https://github.com/lts-rad) **Created:** 7/21/2023 **Status:** ✅ Merged **Merged:** 7/21/2023 **Merged by:** [@lts-rad](https://github.com/lts-rad) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`dc0664e`](https://github.com/spr-networks/super/commit/dc0664e2f1ecff7623b3994b3364eb3f60db7f86) [ui] add useSwipe component for swipe left and right - [`f81e227`](https://github.com/spr-networks/super/commit/f81e227282048b708b4da053fbc7f2bbcb69a9d3) [ui] mobile view - [`1925f11`](https://github.com/spr-networks/super/commit/1925f11ff39a19fbe897b5d839e45d1891f83716) [ui] show device name if available - [`ced6abb`](https://github.com/spr-networks/super/commit/ced6abbbfc4c5c4cd4c88dca8ef8e08d9811e068) [ui] new edit device view - [`36cf4b2`](https://github.com/spr-networks/super/commit/36cf4b28b913dffa5d93b15d0a56a5f66ff97d94) [ui] mac address - [`ca9485d`](https://github.com/spr-networks/super/commit/ca9485db4c977a38c3bd74e4bc15d54c88ceeec8) [ui] helper text for trailing dot on domain names, issue #166 - [`29975f1`](https://github.com/spr-networks/super/commit/29975f100fa6c6c7acd3a2144782ef3068768965) [ui] bugfix multiple modal popups - [`353267b`](https://github.com/spr-networks/super/commit/353267bc61fa6ac1d04d978b952f2767986e7dbe) [ui] add swipe up/down - [`5d08101`](https://github.com/spr-networks/super/commit/5d08101a4cc5291c5fb1c66a71a663d3caaa156b) [ui] swipe to refresh on mobile. also show time ago for query - [`bfc051d`](https://github.com/spr-networks/super/commit/bfc051d6beb4443daacbef5954ead23354ff68db) [ui] skip useSwipe for now ### 📊 Changes **39 files changed** (+3898 additions, -573 deletions) <details> <summary>View changed files</summary> 📝 `api/code/api.go` (+88 -13) 📝 `api/code/dhcp.go` (+13 -24) 📝 `api/code/firewall.go` (+26 -4) 📝 `api/code/interfaces.go` (+213 -1) 📝 `api/code/plugins.go` (+7 -13) 📝 `api/code/uplink.go` (+0 -43) 📝 `db/Dockerfile` (+2 -2) 📝 `db/code/boltapi.go` (+50 -19) 📝 `db/code/cmd/boltapi/main.go` (+11 -7) 📝 `db/code/go.mod` (+1 -1) 📝 `db/code/go.sum` (+1486 -8) 📝 `db/code/sweep.go` (+75 -94) 📝 `dhcp/Dockerfile` (+0 -1) 📝 `frontend/src/FontAwesomeUtils.js` (+84 -0) 📝 `frontend/src/api/Device.js` (+30 -20) ➕ `frontend/src/components/ColorPicker.js` (+48 -0) 📝 `frontend/src/components/DNS/DNSAddOverride.js` (+5 -1) 📝 `frontend/src/components/DNS/DNSLogHistoryList.js` (+4 -1) 📝 `frontend/src/components/DNS/DNSOverrideList.js` (+36 -27) 📝 `frontend/src/components/Dashboard/StatsChartWidget.js` (+2 -2) _...and 19 more files_ </details> ### 📄 Description UI Updates; - New Device view - iOS device swipe views - Custom icons New features - VLAN Trunk Port support Bug fixes: - switched events db to bbolt, implemented compaction --- <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:29 +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#362
No description provided.