diff --git a/.github/workflows/code-release.yml b/.github/workflows/code-release.yml index e9b83d0f7..606b21754 100644 --- a/.github/workflows/code-release.yml +++ b/.github/workflows/code-release.yml @@ -220,4 +220,4 @@ jobs: env: GH_TOKEN: ${{ steps.app-token.outputs.token }} APP_VERSION: ${{ steps.version.outputs.version }} - run: gh release edit "v$APP_VERSION" --repo PostHog/code --draft=false + run: gh release edit "v$APP_VERSION" --repo PostHog/code --draft=false --generate-notes diff --git a/apps/code/src/renderer/components/action-selector/InlineEditableText.tsx b/apps/code/src/renderer/components/action-selector/InlineEditableText.tsx index e8e66cf6b..c33e9e05d 100644 --- a/apps/code/src/renderer/components/action-selector/InlineEditableText.tsx +++ b/apps/code/src/renderer/components/action-selector/InlineEditableText.tsx @@ -87,6 +87,7 @@ export function InlineEditableText({ overflow: "auto", maxHeight: "120px", wordBreak: "break-word", + cursor: "text", userSelect: active ? "auto" : "none", pointerEvents: active ? "auto" : "none", }} diff --git a/apps/code/src/renderer/features/message-editor/components/AttachmentsBar.tsx b/apps/code/src/renderer/features/message-editor/components/AttachmentsBar.tsx index 15423d001..37b9652dd 100644 --- a/apps/code/src/renderer/features/message-editor/components/AttachmentsBar.tsx +++ b/apps/code/src/renderer/features/message-editor/components/AttachmentsBar.tsx @@ -153,7 +153,7 @@ export function AttachmentsBar({ attachments, onRemove }: AttachmentsBarProps) { if (attachments.length === 0) return null; return ( - + {attachments.map((att) => isImageFile(att.label) ? ( + {isBashMode ? ( ( direction="column" gap="2" onClick={handleContainerClick} - className={`rounded-md p-2 ${isBashMode ? "ring-1 ring-blue-9" : ""}`} + className={`rounded-md py-2 pr-2 pl-1.5 ${isBashMode ? "ring-1 ring-blue-9" : ""}`} style={{ cursor: "text" }} >
- + {activity}... - (Esc to interrupt + (Esc to stop - + {CATEGORY_TITLES[activeCategory]} diff --git a/apps/code/src/renderer/styles/globals.css b/apps/code/src/renderer/styles/globals.css index 47eb24bef..ae2b62c0f 100644 --- a/apps/code/src/renderer/styles/globals.css +++ b/apps/code/src/renderer/styles/globals.css @@ -531,6 +531,16 @@ body { outline: none; } +.ProseMirror a { + color: var(--accent-11); + text-decoration: underline; + cursor: pointer; +} + +.ProseMirror a:hover { + color: var(--accent-12); +} + .CollapsibleContent { overflow: hidden; }