Skip to content

Commit 5c05237

Browse files
MarkShawn2020claude
andcommitted
chore: release v0.24.18
- fix(chat): show full message content by default instead of collapsed 40px - fix(updater): correct endpoint URL from MarkShawn2020 to lovstudio org Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent ae31896 commit 5c05237

5 files changed

Lines changed: 13 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## 0.24.18
4+
5+
### Patch Changes
6+
7+
- fix(chat): show full message content by default instead of collapsed 40px
8+
- fix(updater): correct endpoint URL from MarkShawn2020 to lovstudio org
9+
310
## 0.24.17
411

512
### Patch Changes

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "lovcode",
33
"private": true,
4-
"version": "0.24.17",
4+
"version": "0.24.18",
55
"type": "module",
66
"packageManager": "pnpm@10.18.1",
77
"scripts": {

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lovcode"
3-
version = "0.24.17"
3+
version = "0.24.18"
44
description = "A Tauri App"
55
authors = ["you"]
66
edition = "2021"

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
"plugins": {
5656
"updater": {
5757
"endpoints": [
58-
"https://github.com/MarkShawn2020/lovcode/releases/latest/download/latest.json"
58+
"https://github.com/lovstudio/lovcode/releases/latest/download/latest.json"
5959
],
6060
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDE3RTU3RjBEQ0MyMDJGNzMKUldSekx5RE1EWC9sRjJPRFBGZmVoS05ZYmpoTHBwSnQraVhHZ3FDQW5ZRGdPc09MMmFwWDczUWMK"
6161
}

src/views/Chat/CollapsibleContent.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@ import Markdown from "react-markdown";
44
interface CollapsibleContentProps {
55
content: string;
66
markdown: boolean;
7+
defaultCollapsed?: boolean;
78
}
89

9-
export function CollapsibleContent({ content, markdown }: CollapsibleContentProps) {
10-
const [expanded, setExpanded] = useState(false);
10+
export function CollapsibleContent({ content, markdown, defaultCollapsed = false }: CollapsibleContentProps) {
11+
const [expanded, setExpanded] = useState(!defaultCollapsed);
1112
const [isOverflow, setIsOverflow] = useState(false);
1213
const contentRef = useRef<HTMLDivElement>(null);
1314

0 commit comments

Comments
 (0)