@luckydraw/cumulus 1.0.9 → 1.0.10

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,11 @@
1
1
  # Changelog
2
2
 
3
+ ## v1.0.10
4
+
5
+ Patch release. Fixes charts flickering endlessly in the chat panel.
6
+
7
+ - **Charts no longer flicker.** On displays set to 150% scaling, a chart in the chat would resize by a single pixel over and over without ever settling, pushing the whole conversation up and down continuously. The cause was in the chart library: a styling rule forced the chart's size while the charting engine was simultaneously setting its own, and the two overwrote each other in a loop. The rule has been removed upstream and this release picks up the fix. Verified on real charts across a range of window sizes and display scalings; other scaling settings were never affected, which is why the problem appeared for some people and not others.
8
+
3
9
  ## v1.0.9
4
10
 
5
11
  Patch release. Co-threads can now genuinely work the same project at the same time: each gets its own private copy of the repository, the master folds the work back in, and the set can see what each other is doing.
@@ -256,7 +256,6 @@
256
256
 
257
257
  /* \u2500\u2500 chart \u2500\u2500 */
258
258
  .blex-chart { border: 1px solid var(--blex-border); border-radius: 6px; padding: 12px; background: var(--blex-chart-bg); }
259
- .blex-chart canvas { width: 100% !important; height: auto !important; }
260
259
 
261
260
  /* \u2500\u2500 code \u2500\u2500 */
262
261
  .blex-code {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@luckydraw/cumulus",
3
- "version": "1.0.9",
3
+ "version": "1.0.10",
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",
@@ -97,7 +97,7 @@
97
97
  "dependencies": {
98
98
  "@anthropic-ai/sdk": "^0.82.0",
99
99
  "@huggingface/transformers": "^3.8.1",
100
- "@luckydraw/blex": "^0.1.16",
100
+ "@luckydraw/blex": "^0.1.17",
101
101
  "@modelcontextprotocol/sdk": "^1.25.3",
102
102
  "@slack/bolt": "^4.6.0",
103
103
  "commander": "^14.0.2",