Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/calm-crabs-tickle.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"singboxctl": patch
---

Move the IPv6 menu item below Rule Sets in the root TUI menu for a clearer management section order.
Binary file modified docs/usage.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 5 additions & 5 deletions src/tui.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,16 +76,16 @@ export async function runTui(context: AppContext): Promise<void> {
label: "Profiles",
hint: "Manage routing profiles"
},
{
value: "ipv6",
label: "IPv6",
hint: ipv6Enabled ? "Enabled for TUN inbounds" : "Disabled for TUN inbounds"
},
{
value: "rule-sets",
label: "Rule Sets",
hint: "Manage named sing-box rule groups"
},
{
value: "ipv6",
label: "IPv6",
hint: ipv6Enabled ? "Enabled for TUN inbounds" : "Disabled for TUN inbounds"
},
{
value: "section-system",
label: "———— System ————",
Expand Down