From 750636e1f445d63ccd1bd1c9d27de874c2240533 Mon Sep 17 00:00:00 2001 From: Naomi Carrigan Date: Wed, 28 Jan 2026 11:27:57 -0800 Subject: [PATCH 1/2] feat: enable markdown rendering for user messages Apply the existing Markdown component to user messages in the Terminal, giving users the same rich formatting capabilities as agent messages. This includes support for code blocks with syntax highlighting, inline code, lists, links, tables, and our custom spoiler syntax. --- src/lib/components/Terminal.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/components/Terminal.svelte b/src/lib/components/Terminal.svelte index f07cc66..cf6491b 100644 --- a/src/lib/components/Terminal.svelte +++ b/src/lib/components/Terminal.svelte @@ -193,7 +193,7 @@ {#if line.toolName} [{line.toolName}] {/if} - {#if line.type === "assistant"} + {#if line.type === "assistant" || line.type === "user"} Date: Wed, 28 Jan 2026 11:34:46 -0800 Subject: [PATCH 2/2] chore: cargo lock --- src-tauri/Cargo.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index ff78693..7d28d8f 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -1602,7 +1602,7 @@ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" [[package]] name = "hikari-desktop" -version = "0.3.0" +version = "1.0.0" dependencies = [ "chrono", "parking_lot", -- 2.52.0