@luckydraw/cumulus 0.30.8 → 0.30.9

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/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## v0.30.8
4
+
5
+
6
+ - Voice conversation mode with text-to-speech support
7
+ - Inline text annotations — highlight and comment like Google Docs
8
+ - Worker activity chips show live agent status above input
9
+ - First-run setup wizard and config CLI for easier onboarding
10
+ - Self-update system with version check and update notifications
11
+ - Per-thread model selector and scheduled thread triggers
12
+ - Pipeline dashboard for monitoring data flows
13
+ - Infinite scroll for long conversation threads
14
+ - Bug fixes and stability improvements
15
+
16
+
3
17
  ## v0.30.7
4
18
 
5
19
 
@@ -607,16 +607,16 @@
607
607
  .blex-branch__card-body code {
608
608
  font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', 'JetBrains Mono', 'Consolas', 'Liberation Mono', 'Courier New', monospace !important;
609
609
  background: rgba(0,0,0,0.06) !important; padding: 1px 5px; border-radius: 3px; font-size: 13px !important;
610
- color: #1a1a1a !important;
610
+ color: #1a1a1a !important; border: none !important;
611
611
  }
612
612
  .blex-branch__card-body pre {
613
613
  font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', 'JetBrains Mono', 'Consolas', 'Liberation Mono', 'Courier New', monospace !important;
614
614
  background: rgba(0,0,0,0.05) !important; padding: 12px 16px; border-radius: 6px;
615
615
  overflow-x: auto; margin: 8px 0; font-size: 13px !important; line-height: 1.4;
616
- white-space: pre; tab-size: 2; color: #1a1a1a !important;
616
+ white-space: pre; tab-size: 2; color: #1a1a1a !important; border: none !important;
617
617
  }
618
618
  .blex-branch__card-body pre code {
619
- background: none !important; padding: 0; font-size: inherit;
619
+ background: none !important; padding: 0; font-size: inherit; border: none !important;
620
620
  }
621
621
  .blex-branch__card-body ul { margin: 4px 0; padding-left: 20px; }
622
622
  .blex-branch__card-body li { margin: 2px 0; color: #1a1a1a !important; }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@luckydraw/cumulus",
3
- "version": "0.30.8",
3
+ "version": "0.30.9",
4
4
  "description": "RLM-based CLI chat wrapper for Claude with external history context management",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",