rollberry 0.1.5 → 0.1.8

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,13 +5,17 @@ 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.5] - 2026-03-18
8
+ ## [0.1.8] - 2026-03-19
9
+
10
+ ### Added
11
+
12
+ - Multi-page capture support.
9
13
 
10
14
  ### Changed
11
15
 
12
16
  - Reduced default auto-scroll speed from 1800 px/s to 800 px/s for better
13
17
  readability during capture.
14
- - Republished under new maintainer account.
18
+ - GitHub Actions publish workflow now uses token-based authentication.
15
19
 
16
20
  ## [0.1.3] - 2026-03-15
17
21
 
package/dist/cli.js CHANGED
File without changes
@@ -13,9 +13,7 @@ export async function runCaptureCommand(options) {
13
13
  try {
14
14
  const capture = await captureVideo(options, logger);
15
15
  const finishedAt = new Date();
16
- const warnings = capture.truncated
17
- ? ['scroll_height_truncated']
18
- : [];
16
+ const warnings = capture.truncated ? ['scroll_height_truncated'] : [];
19
17
  const manifest = buildManifest({
20
18
  status: 'succeeded',
21
19
  options,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rollberry",
3
- "version": "0.1.5",
3
+ "version": "0.1.8",
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",