feat: rename 'reference image path' to 'start frame path'

Updates DEFAULTS, standard_keys, UI label, timeline known_keys.
Migration auto-renames old key on load.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-04 00:11:43 +02:00
parent a7a4794adb
commit 5bc2838b21
3 changed files with 6 additions and 4 deletions
+3 -1
View File
@@ -45,7 +45,7 @@ DEFAULTS = {
"input_b_frames": 16,
"reference switch": 1,
"video file path": "",
"reference image path": "",
"start frame path": "",
"middle frame path": "",
"end frame path": "",
@@ -159,6 +159,8 @@ def _migrate_key_renames(data: dict) -> None:
item['middle frame path'] = item.pop('reference path')
if 'flf image path' in item and 'end frame path' not in item:
item['end frame path'] = item.pop('flf image path')
if 'reference image path' in item and 'start frame path' not in item:
item['start frame path'] = item.pop('reference image path')
def _migrate_lora_keys(data: dict) -> None: