feat: rename 'flf image path' to 'end 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:
@@ -47,7 +47,7 @@ DEFAULTS = {
|
||||
"video file path": "",
|
||||
"reference image path": "",
|
||||
"middle frame path": "",
|
||||
"flf image path": "",
|
||||
"end frame path": "",
|
||||
|
||||
# --- LoRAs (name as STRING, strength as FLOAT) ---
|
||||
"lora 1 high": "",
|
||||
@@ -157,6 +157,8 @@ def _migrate_key_renames(data: dict) -> None:
|
||||
continue
|
||||
if 'reference path' in item and 'middle frame path' not in item:
|
||||
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')
|
||||
|
||||
|
||||
def _migrate_lora_keys(data: dict) -> None:
|
||||
|
||||
Reference in New Issue
Block a user