From 4e2ce25882c5d418e93ba00dfc60e95c2853538d Mon Sep 17 00:00:00 2001 From: atman-33 Date: Wed, 29 Jul 2026 00:06:11 +0900 Subject: [PATCH] feat: reorder top tab bar to Tasks, Repos, Schedule, Inbox T-0106: match the workflow order the owner actually uses instead of the order tabs were added in. --- CHANGELOG.md | 5 +++++ src-tauri/Cargo.toml | 2 +- src/app.tsx | 8 ++++---- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a2b316..c8a0be1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 0.66.1 (2026-07-29) + +- **Reordered the top tab bar** (T-0106): Tasks, Repos, Schedule, Inbox, + Music, Timer, Voice, Help. + ## 0.66.0 (2026-07-28) - **The notes waiting in `inbox/` are finally visible** (T-0104). The vault's diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 12a34e9..b0b4f30 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "workhub" -version = "0.66.0" +version = "0.66.1" edition = "2021" description = "Developer Workspace Manager — a fast hub for AI-driven, multi-repo development" license = "MIT" diff --git a/src/app.tsx b/src/app.tsx index 4d01e54..e37d657 100644 --- a/src/app.tsx +++ b/src/app.tsx @@ -42,9 +42,9 @@ type Tab = const TABS: { key: Tab; label: string; icon: typeof ListTodo }[] = [ { key: "tasks", label: "Tasks", icon: ListTodo }, - { key: "inbox", label: "Inbox", icon: Inbox }, { key: "repos", label: "Repos", icon: GitBranch }, { key: "schedule", label: "Schedule", icon: CalendarRange }, + { key: "inbox", label: "Inbox", icon: Inbox }, { key: "music", label: "Music", icon: Music }, { key: "timer", label: "Timer", icon: Timer }, { key: "voice", label: "Voice", icon: Mic }, @@ -172,15 +172,15 @@ export default function App() { onSettingsChange={(s) => setSettings(s)} /> -
- -
+
+ +