davinci-resolve-mcp 2.224.2 → 2.224.3
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 +28 -0
- package/README.md +1 -1
- package/README.zh-CN.md +2 -2
- package/install.py +1 -1
- package/package.json +1 -1
- package/src/granular/common.py +1 -1
- package/src/server.py +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,34 @@
|
|
|
2
2
|
|
|
3
3
|
Release history for the DaVinci Resolve MCP Server. The latest release is summarized in the root README; older entries live here to keep the README focused.
|
|
4
4
|
|
|
5
|
+
## What's New in v2.224.3 — the Windows import guard covers the advanced server
|
|
6
|
+
|
|
7
|
+
Contributed by @Dev-next-gen (#222). Test-only; no behaviour changed.
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
- The static guard added in v2.224.2 fails if a dynamic `import()` is given a
|
|
12
|
+
bare filesystem path — the pattern Node's ESM loader rejects on Windows. It
|
|
13
|
+
covered only `scripts/*.mjs` and `bin/*.mjs`, so a bare-path import added
|
|
14
|
+
under `resolve-advanced/server/` would have passed it, and with CI running
|
|
15
|
+
only on Linux the Windows failure would have stayed invisible there too. It
|
|
16
|
+
now also walks `resolve-advanced/server/` recursively, since the advanced
|
|
17
|
+
server loads modules from its `tools/` subfolder as well.
|
|
18
|
+
- Offenders are reported by their path from the repository root, so a hit in a
|
|
19
|
+
nested file names that file. `node_modules` is skipped.
|
|
20
|
+
|
|
21
|
+
### Validation
|
|
22
|
+
|
|
23
|
+
- There is nothing under `resolve-advanced/server/` to catch today — every
|
|
24
|
+
dynamic import there passes a string literal — so the widened guard was
|
|
25
|
+
verified against a planted file, reproduced independently here: a probe at
|
|
26
|
+
`resolve-advanced/server/tools/zz_bare_import_probe.mjs` containing
|
|
27
|
+
`await import(path.join(...))` fails it, naming that file and line; with the
|
|
28
|
+
probe removed it passes. Per the contributor, the original
|
|
29
|
+
`scripts/author_interchange.mjs:45` case is still caught against the
|
|
30
|
+
pre-v2.224.2 bridge.
|
|
31
|
+
- Full suite green: 3,485 passed, 1 skipped.
|
|
32
|
+
|
|
5
33
|
## What's New in v2.224.2 — offline authoring works on Windows
|
|
6
34
|
|
|
7
35
|
Contributed by @Dev-next-gen (#221), found and verified on Windows.
|
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
English | [简体中文](README.zh-CN.md)
|
|
4
4
|
|
|
5
|
-
[](https://github.com/samuelgursky/davinci-resolve-mcp/releases)
|
|
6
6
|
[](https://www.npmjs.com/package/davinci-resolve-mcp)
|
|
7
7
|
[](docs/reference/api-coverage.md)
|
|
8
8
|
[-blue.svg)](#server-modes)
|
package/README.zh-CN.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[English](README.md) | 简体中文
|
|
4
4
|
|
|
5
|
-
[](https://github.com/samuelgursky/davinci-resolve-mcp/releases)
|
|
6
6
|
[](https://www.npmjs.com/package/davinci-resolve-mcp)
|
|
7
7
|
[](docs/reference/api-coverage.md)
|
|
8
8
|
[-blue.svg)](#服务器模式)
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
[](https://www.python.org/downloads/)
|
|
13
13
|
[](https://opensource.org/licenses/MIT)
|
|
14
14
|
|
|
15
|
-
> 本翻译对应 v2.224.
|
|
15
|
+
> 本翻译对应 v2.224.3 版 README。如与英文原版有出入,以 [英文原版](README.md) 为准。
|
|
16
16
|
|
|
17
17
|
一个 Model Context Protocol (MCP) 服务器,让 AI 助手通过官方脚本 API 控制 DaVinci Resolve Studio(达芬奇)。它提供完整的 API 覆盖,外加带护栏的工作流助手,涵盖剪辑、媒体池整理、渲染设置、审阅标记、调色、Fusion、Fairlight、项目生命周期任务、扩展开发,以及不碰源媒体的媒体分析。
|
|
18
18
|
|
package/install.py
CHANGED
|
@@ -37,7 +37,7 @@ from src.utils.update_check import (
|
|
|
37
37
|
|
|
38
38
|
# ─── Version ──────────────────────────────────────────────────────────────────
|
|
39
39
|
|
|
40
|
-
VERSION = "2.224.
|
|
40
|
+
VERSION = "2.224.3"
|
|
41
41
|
# Only hard floor: mcp[cli] requires Python 3.10+. There is no upper bound —
|
|
42
42
|
# Resolve's scripting bridge loads into newer interpreters on recent builds
|
|
43
43
|
# (Python 3.14 verified against Resolve Studio 20.3.2). Older Resolve builds
|
package/package.json
CHANGED
package/src/granular/common.py
CHANGED
|
@@ -87,7 +87,7 @@ if not logging.getLogger().handlers:
|
|
|
87
87
|
handlers=[logging.StreamHandler()],
|
|
88
88
|
)
|
|
89
89
|
|
|
90
|
-
VERSION = "2.224.
|
|
90
|
+
VERSION = "2.224.3"
|
|
91
91
|
logger = logging.getLogger("davinci-resolve-mcp")
|
|
92
92
|
logger.info(f"Starting DaVinci Resolve MCP Server v{VERSION}")
|
|
93
93
|
logger.info(f"Detected platform: {get_platform()}")
|