Skip to content

Commit 01c5b92

Browse files
backnotpropclaude
andcommitted
chore: bump version to 0.9.1
Fix Plan Diff marketing dialog overflow on small viewports. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent d395fd5 commit 01c5b92

File tree

6 files changed

+7
-16
lines changed

6 files changed

+7
-16
lines changed

apps/hook/.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "plannotator",
33
"description": "Interactive Plan Review: Mark up and refine your plans using a UI, easily share for team collaboration, automatically integrates with plan mode hooks.",
4-
"version": "0.9.0",
4+
"version": "0.9.1",
55
"author": {
66
"name": "backnotprop"
77
},

apps/opencode-plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@plannotator/opencode",
3-
"version": "0.9.0",
3+
"version": "0.9.1",
44
"description": "Plannotator plugin for OpenCode - interactive plan review with visual annotation",
55
"author": "backnotprop",
66
"license": "MIT OR Apache-2.0",

apps/pi-extension/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@plannotator/pi-extension",
3-
"version": "0.9.0",
3+
"version": "0.9.1",
44
"type": "module",
55
"description": "Plannotator extension for Pi coding agent - interactive plan review with visual annotation",
66
"author": "backnotprop",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "plannotator",
3-
"version": "0.9.0",
3+
"version": "0.9.1",
44
"private": true,
55
"description": "Interactive Plan Review for Claude Code - annotate plans visually, share with team, automatically send feedback",
66
"author": "backnotprop",

packages/server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@plannotator/server",
3-
"version": "0.9.0",
3+
"version": "0.9.1",
44
"private": true,
55
"description": "Shared server implementation for Plannotator plugins",
66
"main": "index.ts",

packages/ui/components/plan-diff/PlanDiffMarketing.tsx

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export const PlanDiffMarketing: React.FC<PlanDiffMarketingProps> = ({
3535

3636
return createPortal(
3737
<div className="fixed inset-0 z-[100] flex items-center justify-center bg-background/90 backdrop-blur-sm p-4">
38-
<div className="bg-card border border-border rounded-xl w-full max-w-2xl shadow-2xl">
38+
<div className="bg-card border border-border rounded-xl w-full max-w-2xl shadow-2xl max-h-full flex flex-col">
3939
{/* Header */}
4040
<div className="p-5 border-b border-border">
4141
<div className="flex items-center gap-2 mb-2">
@@ -52,7 +52,7 @@ export const PlanDiffMarketing: React.FC<PlanDiffMarketingProps> = ({
5252
</div>
5353

5454
{/* Content */}
55-
<div className="p-4 space-y-4">
55+
<div className="p-4 space-y-4 overflow-y-auto min-h-0">
5656
{/* Banner image */}
5757
{imageError ? (
5858
<div className="w-full aspect-[16/7] rounded-lg border border-border bg-muted/50 flex items-center justify-center">
@@ -92,15 +92,6 @@ export const PlanDiffMarketing: React.FC<PlanDiffMarketingProps> = ({
9292
<span className="text-muted-foreground">— compare against any previous version from the sidebar. Plans are automatically versioned as your agent iterates.</span>
9393
</p>
9494
</div>
95-
<div className="flex gap-2.5">
96-
<div className="shrink-0 mt-0.5">
97-
<div className="w-1.5 h-1.5 rounded-full bg-muted-foreground/40 mt-1.5" />
98-
</div>
99-
<p>
100-
<span className="font-medium text-muted-foreground">Coming soon</span>{' '}
101-
<span className="text-muted-foreground">— cross-plan comparison across different plans in the same project.</span>
102-
</p>
103-
</div>
10495
</div>
10596

10697
{/* Video demo link */}

0 commit comments

Comments
 (0)