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 CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
8 changes: 4 additions & 4 deletions src/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 },
Expand Down Expand Up @@ -172,15 +172,15 @@ export default function App() {
onSettingsChange={(s) => setSettings(s)}
/>
</div>
<div className={cn("h-full", tab !== "inbox" && "hidden")}>
<InboxView configVersion={configVersion} active={tab === "inbox"} />
</div>
<div className={cn("h-full", tab !== "repos" && "hidden")}>
<ReposView configVersion={configVersion} active={tab === "repos"} />
</div>
<div className={cn("h-full", tab !== "schedule" && "hidden")}>
<ScheduleView configVersion={configVersion} />
</div>
<div className={cn("h-full", tab !== "inbox" && "hidden")}>
<InboxView configVersion={configVersion} active={tab === "inbox"} />
</div>
<div className={cn("h-full", tab !== "music" && "hidden")}>
<MusicView configVersion={configVersion} />
</div>
Expand Down
Loading