dsh-quick-toc 0.6.0 → 0.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/index.js CHANGED
@@ -35,6 +35,12 @@ export const Config = z.object({
35
35
  .array(z.number().min(1).max(6))
36
36
  .default([1, 2, 3, 4, 5, 6])
37
37
  .description("Heading levels the outline shows"),
38
+ zoom: z
39
+ .number()
40
+ .min(0.5)
41
+ .max(2)
42
+ .default(1)
43
+ .description("Scale factor for the panel's content (text, icons, buttons) from 50% to 200%; the panel's own size is unchanged"),
38
44
  fuzzy: z
39
45
  .boolean()
40
46
  .default(false)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "dsh-quick-toc",
3
- "version": "0.6.0",
4
- "description": "Conversation TOC for DeepSeek Harness (DSH): turn-grouped Markdown outline covering the whole session (unloaded turns included), title/full-text search with an optional fuzzy switch, hover previews, in-chat match highlighting, heading-level filter, reading-position auto-follow, a Chinese/English interface and a plugin-configuration card",
3
+ "version": "0.6.1",
4
+ "description": "Conversation TOC for DeepSeek Harness (DSH): turn-grouped Markdown outline covering the whole session (unloaded turns included), title/full-text search with an optional fuzzy switch, hover previews, in-chat match highlighting, heading-level filter, reading-position auto-follow, a 50%-200% panel-scale slider, a Chinese/English interface and a plugin-configuration card",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
7
7
  "files": [