rollberry 0.1.3 → 0.1.4

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
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on Keep a Changelog and the project stays on the `v0.x.x`
6
6
  line until the CLI surface and capture behavior settle.
7
7
 
8
+ ## [0.1.4] - 2026-03-15
9
+
10
+ ### Changed
11
+
12
+ - Reduced default auto-scroll speed from 1800 px/s to 800 px/s for better
13
+ readability during capture.
14
+
8
15
  ## [0.1.3] - 2026-03-15
9
16
 
10
17
  ### Changed
@@ -1,6 +1,6 @@
1
1
  export const AUTO_DURATION_MIN_SECONDS = 4;
2
2
  export const AUTO_DURATION_MAX_SECONDS = 40;
3
- export const AUTO_DURATION_PIXELS_PER_SECOND = 1800;
3
+ export const AUTO_DURATION_PIXELS_PER_SECOND = 800;
4
4
  export const LOCALHOST_RETRY_INTERVAL_MS = 500;
5
5
  export const STABILIZE_DELAY_MS = 500;
6
6
  export const PREFLIGHT_STEP_DELAY_MS = 120;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rollberry",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "CLI to capture smooth top-to-bottom scroll videos from web pages, including localhost URLs.",
5
5
  "type": "module",
6
6
  "packageManager": "pnpm@10.15.0",