@remotion/studio-server 4.0.436 → 4.0.437

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.
@@ -22,9 +22,7 @@ const startBrowserProcess = async ({ browser, url, args, }) => {
22
22
  const tryNewInstance = args.length > 0;
23
23
  const shouldTryOpenChromiumWithAppleScript = process.platform === 'darwin' &&
24
24
  !tryNewInstance &&
25
- (typeof browser !== 'string' ||
26
- browser === 'google chrome' ||
27
- browser === 'chrome');
25
+ (!browser || browser === 'google chrome' || browser === 'chrome');
28
26
  if (shouldTryOpenChromiumWithAppleScript) {
29
27
  let appleScriptDenied = false;
30
28
  // Will use the first open browser found from list
@@ -69,9 +67,7 @@ const startBrowserProcess = async ({ browser, url, args, }) => {
69
67
 
70
68
  on run argv
71
69
  set theURL to "${encodeURI(url)}"
72
- set matchURL to "${process.env.OPEN_MATCH_HOST_ONLY === 'true'
73
- ? encodeURI(normalizeURLToMatch(url))
74
- : encodeURI(url)}"
70
+ set matchURL to "${encodeURI(normalizeURLToMatch(url))}"
75
71
 
76
72
  using terms from application "Google Chrome"
77
73
  tell application theProgram
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "url": "https://github.com/remotion-dev/remotion/tree/main/packages/studio-server"
4
4
  },
5
5
  "name": "@remotion/studio-server",
6
- "version": "4.0.436",
6
+ "version": "4.0.437",
7
7
  "description": "Run a Remotion Studio with a server backend",
8
8
  "main": "dist",
9
9
  "sideEffects": false,
@@ -27,11 +27,11 @@
27
27
  "@babel/parser": "7.24.1",
28
28
  "semver": "7.5.3",
29
29
  "prettier": "3.8.1",
30
- "remotion": "4.0.436",
30
+ "remotion": "4.0.437",
31
31
  "recast": "0.23.11",
32
- "@remotion/bundler": "4.0.436",
33
- "@remotion/renderer": "4.0.436",
34
- "@remotion/studio-shared": "4.0.436",
32
+ "@remotion/bundler": "4.0.437",
33
+ "@remotion/renderer": "4.0.437",
34
+ "@remotion/studio-shared": "4.0.437",
35
35
  "memfs": "3.4.3",
36
36
  "source-map": "0.7.3",
37
37
  "open": "^8.4.2"
@@ -41,7 +41,7 @@
41
41
  "react": "19.2.3",
42
42
  "@babel/types": "7.24.0",
43
43
  "@types/semver": "^7.3.4",
44
- "@remotion/eslint-config-internal": "4.0.436",
44
+ "@remotion/eslint-config-internal": "4.0.437",
45
45
  "eslint": "9.19.0",
46
46
  "@types/node": "20.12.14",
47
47
  "@typescript/native-preview": "7.0.0-dev.20260217.1"