Skip to content

Commit b74798b

Browse files
committed
docs: tick v1.6.0 Context library checkbox + add changelog entry
1 parent 58496a3 commit b74798b

2 files changed

Lines changed: 17 additions & 1 deletion

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -703,7 +703,7 @@ Allow users to attach reusable text and code snippets to any session.
703703
Snippets are injected into the system prompt before each turn, giving
704704
the model persistent context without requiring full RAG.
705705

706-
- [ ] **Context library** — Create, name, and organize text/code snippets;
706+
- [x] **Context library** — Create, name, and organize text/code snippets;
707707
each snippet has a title, content (markdown), and optional category tag
708708
- [ ] **Session context attachment** — Attach one or more snippets to a session;
709709
attached snippets appear as a collapsible context block in the chat header

src/lib/changelog.ts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,22 @@ export interface ChangelogEntry {
1010
}
1111

1212
export const CHANGELOG: ChangelogEntry[] = [
13+
{
14+
version: '1.6.0',
15+
date: '2026-05-13',
16+
title: 'Context Library — Reusable Text/Code Snippets',
17+
description:
18+
'Users can now create, name, and organize reusable text and code snippets in a dedicated library. Snippets support category tags (code, text, template, reference, custom), search, and one-click insert to clipboard — giving the model persistent context without requiring full RAG.',
19+
changes: [
20+
{ type: 'added', text: 'SnippetLibrary component — create, edit, delete, search, and filter snippets by category' },
21+
{ type: 'added', text: 'IndexedDB store with migration v24→v25 — persistent snippet storage' },
22+
{ type: 'added', text: 'Sidebar nav button — quick access to the context library' },
23+
{ type: 'added', text: 'Command palette entry (⌘K) — search and open the context library' },
24+
{ type: 'added', text: 'Category system — code, text, template, reference, custom with color-coded icons' },
25+
{ type: 'added', text: 'en/zh translations for all snippet library strings' },
26+
{ type: 'added', text: 'Dark terminal-style CSS + light theme overrides for snippet cards, filters, and edit form' },
27+
],
28+
},
1329
{
1430
version: '1.4.0',
1531
date: '2026-05-13',

0 commit comments

Comments
 (0)