docs: release v1.14.2 — textarea scrollbar fix

This commit is contained in:
Nicolas Varrot
2026-02-12 23:12:04 +00:00
parent 66058fd8ef
commit 53a8655bb1
4 changed files with 8 additions and 4 deletions

View File

@@ -4,6 +4,10 @@ All notable changes to PinchChat are documented here.
Format based on [Keep a Changelog](https://keepachangelog.com/), with [Conventional Commits](https://www.conventionalcommits.org/). Format based on [Keep a Changelog](https://keepachangelog.com/), with [Conventional Commits](https://www.conventionalcommits.org/).
## [1.14.2] — 2026-02-12
### Fixed
- Textarea scrollbar only appears when content overflows max-height (no more permanent scrollbar)
## [1.14.1] — 2026-02-12 ## [1.14.1] — 2026-02-12
### Fixed ### Fixed
- Session deletion now persists across page refreshes via localStorage blacklist — deleted sessions no longer reappear after reload - Session deletion now persists across page refreshes via localStorage blacklist — deleted sessions no longer reappear after reload

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{ {
"name": "pinchchat", "name": "pinchchat",
"version": "1.14.1", "version": "1.14.2",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "pinchchat", "name": "pinchchat",
"version": "1.14.1", "version": "1.14.2",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@radix-ui/react-collapsible": "^1.1.12", "@radix-ui/react-collapsible": "^1.1.12",

View File

@@ -1,6 +1,6 @@
{ {
"name": "pinchchat", "name": "pinchchat",
"version": "1.14.1", "version": "1.14.2",
"description": "A sleek, dark-themed webchat UI for OpenClaw — monitor sessions, stream responses, and inspect tool calls in real-time.", "description": "A sleek, dark-themed webchat UI for OpenClaw — monitor sessions, stream responses, and inspect tool calls in real-time.",
"type": "module", "type": "module",
"repository": { "repository": {

View File

@@ -302,7 +302,7 @@ export function ChatMessageComponent({ message, onRetry }: { message: ChatMessag
<div className={`min-w-0 max-w-[80%] ${isUser ? 'text-right' : ''}`}> <div className={`min-w-0 max-w-[80%] ${isUser ? 'text-right' : ''}`}>
<div className={`group relative inline-block text-left rounded-3xl px-4 py-3 text-sm leading-relaxed max-w-full overflow-hidden ${ <div className={`group relative inline-block text-left rounded-3xl px-4 py-3 text-sm leading-relaxed max-w-full overflow-hidden ${
isUser isUser
? 'bg-gradient-to-b from-cyan-900/20 to-zinc-900/60 text-zinc-200 border border-cyan-400/15' ? 'bg-gradient-to-b from-cyan-800/40 to-cyan-900/25 text-zinc-100 border border-cyan-400/30'
: 'bg-zinc-800/40 text-zinc-300 border border-white/8 shadow-[0_0_0_1px_rgba(255,255,255,0.03)]' : 'bg-zinc-800/40 text-zinc-300 border border-white/8 shadow-[0_0_0_1px_rgba(255,255,255,0.03)]'
}`}> }`}>
{/* Copy button (assistant messages only) */} {/* Copy button (assistant messages only) */}