@remotion/renderer 4.0.399 → 4.0.401

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.
@@ -141,6 +141,7 @@ const downloadBrowser = async ({ logLevel, indent, onProgress, version, chromeMo
141
141
  downloadedBytes: progress.downloaded,
142
142
  totalSizeInBytes: progress.totalSize,
143
143
  percent: progress.percent,
144
+ alreadyAvailable: false,
144
145
  });
145
146
  },
146
147
  indent,
@@ -4850,7 +4850,8 @@ var downloadBrowser = async ({
4850
4850
  onProgress({
4851
4851
  downloadedBytes: progress.downloaded,
4852
4852
  totalSizeInBytes: progress.totalSize,
4853
- percent: progress.percent
4853
+ percent: progress.percent,
4854
+ alreadyAvailable: false
4854
4855
  });
4855
4856
  },
4856
4857
  indent,
@@ -1,5 +1,6 @@
1
1
  import type { ChromeMode } from './chrome-mode';
2
2
  export type DownloadBrowserProgressFn = (progress: {
3
+ alreadyAvailable: boolean;
3
4
  percent: number;
4
5
  downloadedBytes: number;
5
6
  totalSizeInBytes: number;
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "url": "https://github.com/remotion-dev/remotion/tree/main/packages/renderer"
4
4
  },
5
5
  "name": "@remotion/renderer",
6
- "version": "4.0.399",
6
+ "version": "4.0.401",
7
7
  "description": "Render Remotion videos using Node.js or Bun",
8
8
  "main": "dist/index.js",
9
9
  "types": "dist/index.d.ts",
@@ -22,11 +22,11 @@
22
22
  "dependencies": {
23
23
  "execa": "5.1.1",
24
24
  "extract-zip": "2.0.1",
25
- "remotion": "4.0.399",
26
- "@remotion/streaming": "4.0.399",
25
+ "remotion": "4.0.401",
26
+ "@remotion/streaming": "4.0.401",
27
27
  "source-map": "^0.8.0-beta.0",
28
28
  "ws": "8.17.1",
29
- "@remotion/licensing": "4.0.399"
29
+ "@remotion/licensing": "4.0.401"
30
30
  },
31
31
  "peerDependencies": {
32
32
  "react": ">=16.8.0",
@@ -39,19 +39,19 @@
39
39
  "react": "19.2.3",
40
40
  "react-dom": "19.2.3",
41
41
  "@types/ws": "8.5.10",
42
- "@remotion/example-videos": "4.0.399",
43
- "@remotion/eslint-config-internal": "4.0.399",
42
+ "@remotion/example-videos": "4.0.401",
43
+ "@remotion/eslint-config-internal": "4.0.401",
44
44
  "eslint": "9.19.0",
45
45
  "@types/node": "20.12.14"
46
46
  },
47
47
  "optionalDependencies": {
48
- "@remotion/compositor-darwin-arm64": "4.0.399",
49
- "@remotion/compositor-darwin-x64": "4.0.399",
50
- "@remotion/compositor-linux-arm64-gnu": "4.0.399",
51
- "@remotion/compositor-linux-arm64-musl": "4.0.399",
52
- "@remotion/compositor-linux-x64-gnu": "4.0.399",
53
- "@remotion/compositor-linux-x64-musl": "4.0.399",
54
- "@remotion/compositor-win32-x64-msvc": "4.0.399"
48
+ "@remotion/compositor-darwin-arm64": "4.0.401",
49
+ "@remotion/compositor-darwin-x64": "4.0.401",
50
+ "@remotion/compositor-linux-arm64-gnu": "4.0.401",
51
+ "@remotion/compositor-linux-arm64-musl": "4.0.401",
52
+ "@remotion/compositor-linux-x64-gnu": "4.0.401",
53
+ "@remotion/compositor-linux-x64-musl": "4.0.401",
54
+ "@remotion/compositor-win32-x64-msvc": "4.0.401"
55
55
  },
56
56
  "keywords": [
57
57
  "remotion",
@@ -1,15 +0,0 @@
1
- export declare const privateLicenseKeyOption: {
2
- name: string;
3
- cliFlag: "private-license-key";
4
- description: () => import("react/jsx-runtime").JSX.Element;
5
- ssrName: "privateLicenseKey";
6
- docLink: string;
7
- getValue: ({ commandLine }: {
8
- commandLine: Record<string, unknown>;
9
- }) => {
10
- source: string;
11
- value: string | null;
12
- };
13
- setConfig: (value: string | null) => void;
14
- type: string | null;
15
- };
@@ -1,35 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.privateLicenseKeyOption = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- const cliFlag = 'private-license-key';
6
- let currentPrivateLicenseKey = null;
7
- exports.privateLicenseKeyOption = {
8
- name: 'Private License Key',
9
- cliFlag,
10
- description: () => ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: ["The private license key for your company license, obtained from the \"Usage\" tab on ", (0, jsx_runtime_1.jsx)("a", { href: "https://remotion.pro/dashboard", children: "remotion.pro" }), ". If you are eligible for the free license, pass \"free-license\"."] })),
11
- ssrName: 'privateLicenseKey',
12
- docLink: 'https://www.remotion.dev/docs/licensing',
13
- getValue: ({ commandLine }) => {
14
- if (commandLine[cliFlag] !== undefined) {
15
- return {
16
- source: 'cli',
17
- value: commandLine[cliFlag],
18
- };
19
- }
20
- if (currentPrivateLicenseKey !== null) {
21
- return {
22
- source: 'config',
23
- value: currentPrivateLicenseKey,
24
- };
25
- }
26
- return {
27
- source: 'default',
28
- value: null,
29
- };
30
- },
31
- setConfig: (value) => {
32
- currentPrivateLicenseKey = value;
33
- },
34
- type: null,
35
- };