davinci-resolve-mcp 2.157.0 → 2.158.0

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
@@ -2,6 +2,31 @@
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.158.0 — E100: the kitchen-sink certification
6
+
7
+ ### Verified (one turnover, everything at once)
8
+
9
+ - A single OTIO turnover carrying a fade-in, a V2 stack, a centered
10
+ dissolve, a 50% retime, a retime-adjacent fade-out, two audio legs, two
11
+ track markers, and a clip marker conformed, imported, and **rendered
12
+ correct in all 32 measured windows** — including the previously unmeasured
13
+ interactions (the boundary shift extending a retimed cut into its
14
+ fade-out; an upper-track stack compositing over the fade region). The
15
+ round-trip QC closed `pass: true` against Resolve's own re-export, and
16
+ the fixture is now a permanent offline test.
17
+
18
+ ### Fixed
19
+
20
+ - `verify_roundtrip` compares sources by **basename**: an OTIO turnover
21
+ names sources by `target_url` path while Resolve's re-export uses the file
22
+ basename — the same file read as six spurious source mismatches.
23
+
24
+ ### Measured
25
+
26
+ - **Fairlight level law**: the template's A1 strip plays at source level
27
+ while the added mono strips (A2–A16) play 3 dB down per channel (center
28
+ pan law). Both render; it is mixer semantics, not a placement failure.
29
+
5
30
  ## What's New in v2.157.0 — the conform manifest learns fades too
6
31
 
7
32
  ### Fixed
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  English | [简体中文](README.zh-CN.md)
4
4
 
5
- [![Version](https://img.shields.io/badge/version-2.157.0-blue.svg)](https://github.com/samuelgursky/davinci-resolve-mcp/releases)
5
+ [![Version](https://img.shields.io/badge/version-2.158.0-blue.svg)](https://github.com/samuelgursky/davinci-resolve-mcp/releases)
6
6
  [![npm](https://img.shields.io/npm/v/davinci-resolve-mcp.svg?label=npm&color=CB3837)](https://www.npmjs.com/package/davinci-resolve-mcp)
7
7
  [![API Coverage](https://img.shields.io/badge/API%20Coverage-100%25-brightgreen.svg)](docs/reference/api-coverage.md)
8
8
  [![Tools](https://img.shields.io/badge/MCP%20Tools-36%20(353%20full)-blue.svg)](#server-modes)
package/README.zh-CN.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  [English](README.md) | 简体中文
4
4
 
5
- [![Version](https://img.shields.io/badge/version-2.157.0-blue.svg)](https://github.com/samuelgursky/davinci-resolve-mcp/releases)
5
+ [![Version](https://img.shields.io/badge/version-2.158.0-blue.svg)](https://github.com/samuelgursky/davinci-resolve-mcp/releases)
6
6
  [![npm](https://img.shields.io/npm/v/davinci-resolve-mcp.svg?label=npm&color=CB3837)](https://www.npmjs.com/package/davinci-resolve-mcp)
7
7
  [![API Coverage](https://img.shields.io/badge/API%20Coverage-100%25-brightgreen.svg)](docs/reference/api-coverage.md)
8
8
  [![Tools](https://img.shields.io/badge/MCP%20Tools-36%20(353%20full)-blue.svg)](#服务器模式)
@@ -12,7 +12,7 @@
12
12
  [![Python](https://img.shields.io/badge/python-3.10+-green.svg)](https://www.python.org/downloads/)
13
13
  [![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://opensource.org/licenses/MIT)
14
14
 
15
- > 本翻译对应 v2.157.0 版 README。如与英文原版有出入,以 [英文原版](README.md) 为准。
15
+ > 本翻译对应 v2.158.0 版 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.157.0"
40
+ VERSION = "2.158.0"
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "davinci-resolve-mcp",
3
- "version": "2.157.0",
3
+ "version": "2.158.0",
4
4
  "description": "NPM bootstrapper for the DaVinci Resolve MCP Server.",
5
5
  "license": "MIT",
6
6
  "author": "Samuel Gursky <samgursky@gmail.com>",
@@ -826,7 +826,10 @@ export function verifyRoundtrip(inputEvents, exportedEvents, opts = {}) {
826
826
  const m = /^([VA])(\d+)?$/.exec(String(t || ''));
827
827
  return m ? `${m[1]}${m[2] || '1'}` : String(t);
828
828
  };
829
- const canonSource = (x) => String(x || '').replace(/\.[^.]+$/, '').toLowerCase();
829
+ // Basename + extension-stripped + case-folded: an OTIO turnover names
830
+ // sources by target_url PATH while Resolve's re-export names them by file
831
+ // basename (measured E100) — same file, different spelling.
832
+ const canonSource = (x) => String(x || '').split(/[\\/]/).pop().replace(/\.[^.]+$/, '').toLowerCase();
830
833
  // Reel/tape aliases: an EDL names sources by REEL (CUTSRC) while the
831
834
  // re-export names them by file basename (cut_src) — the sourceMap that
832
835
  // drove the assemble is the authority linking the two. Keys and values
@@ -87,7 +87,7 @@ if not logging.getLogger().handlers:
87
87
  handlers=[logging.StreamHandler()],
88
88
  )
89
89
 
90
- VERSION = "2.157.0"
90
+ VERSION = "2.158.0"
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()}")
package/src/server.py CHANGED
@@ -11,7 +11,7 @@ Usage:
11
11
  python src/server.py --full # Start the 353-tool granular server instead
12
12
  """
13
13
 
14
- VERSION = "2.157.0"
14
+ VERSION = "2.158.0"
15
15
 
16
16
  import base64
17
17
  import os