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
34 changes: 28 additions & 6 deletions apps/web/src/components/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2122,16 +2122,38 @@ export default function Sidebar() {
<Tooltip>
<TooltipTrigger
render={
<div className="flex items-center gap-1.5 px-2 pt-2 mt-1 border-t border-border/30">
<OkCodeMark className="size-3.5 text-muted-foreground/40" />
<span className="text-[10px] font-medium tracking-wide text-muted-foreground/40">
{APP_BASE_NAME}
</span>
<div
className="mt-2 rounded-xl border px-3 py-2 shadow-sm transition-colors"
style={{
backgroundColor: "color-mix(in srgb, var(--primary) 10%, transparent)",
borderColor: "color-mix(in srgb, var(--primary) 18%, var(--border))",
}}
>
<div className="flex items-center gap-2">
<div
className="flex size-7 items-center justify-center rounded-lg"
style={{
backgroundColor: "color-mix(in srgb, var(--primary) 18%, transparent)",
color: "var(--primary)",
boxShadow: "0 0 0 1px color-mix(in srgb, var(--primary) 16%, transparent)",
}}
>
<OkCodeMark className="size-4" />
</div>
<div className="flex min-w-0 flex-col leading-none">
<span className="truncate text-sm font-semibold tracking-tight text-foreground">
{APP_BASE_NAME}
</span>
<span className="text-[10px] font-medium uppercase tracking-[0.22em] text-primary/80">
Version {APP_VERSION}
</span>
</div>
</div>
</div>
}
/>
<TooltipPopup side="top" sideOffset={4}>
Version {APP_VERSION}
{APP_BASE_NAME} {APP_VERSION}
</TooltipPopup>
</Tooltip>
</SidebarFooter>
Expand Down
1 change: 1 addition & 0 deletions docs/releases/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Use this directory for versioned release notes and asset manifests only:

| Version | Summary | Assets |
| -------------------- | -------------------------------------------------------------------------------------------- | ----------------------------- |
| [0.19.0](v0.19.0.md) | Release workflow hardening, branch-handling fixes, and release-preflight cleanup | [manifest](v0.19.0/assets.md) |
| [0.18.0](v0.18.0.md) | Workspace panel, preview pop-out controls, worktree cleanup actions, and release-flow polish | [manifest](v0.18.0/assets.md) |
| [0.17.0](v0.17.0.md) | Unified right-panel review, worktree cleanup controls, chat UX polish, and release hardening | [manifest](v0.17.0/assets.md) |
| [0.16.1](v0.16.1.md) | Release with 8 new feature(s), 3 fix(es), 19 improvement(s) | [manifest](v0.16.1/assets.md) |
Expand Down
Loading