dsh-quick-toc 0.7.0 → 0.7.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
@@ -59,6 +59,10 @@ export const Config = z.object({
59
59
  .boolean()
60
60
  .default(true)
61
61
  .description("Remember where you were reading in each session and return there when it is reopened"),
62
+ autoLoad: z
63
+ .boolean()
64
+ .default(true)
65
+ .description("Load history automatically when the outline is scrolled into turns that are not loaded yet; off means nothing loads until a row is clicked"),
62
66
  debug: z
63
67
  .boolean()
64
68
  .default(false)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dsh-quick-toc",
3
- "version": "0.7.0",
3
+ "version": "0.7.1",
4
4
  "description": "Conversation TOC for DeepSeek Harness (DSH): a whole-session, turn-grouped Markdown outline with hover previews, a level filter, a full-width curtain, jump-to-end buttons, title/full-text/cross-session search and a Chinese/English interface.",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",