save startup blend for animation tab & whatnot
This commit is contained in:
2026-04-08 12:10:18 -06:00
parent 57a652524a
commit 692e200ffe
180 changed files with 12336 additions and 3431 deletions
@@ -21,10 +21,13 @@ from os import environ
from subprocess import Popen
from typing import Any, Optional
from . import datas
try:
from . import datas
except ImportError:
# for release CI action
import datas # type: ignore
CLIENT_VERSION = "v1.7.0"
CLIENT_VERSION = "v1.8.3"
CLIENT_ACCESSIBLE = False
"""Is Client accessible? Can add-on access it and call stuff which uses it?"""
CLIENT_RUNNING = False
@@ -48,6 +51,7 @@ TABS: dict[str, Any] = {
"name": "Default", # Tab name
"history": [], # List of history steps
"history_index": -1, # Current position in history
"active_filters": [], # Per-tab active filter chips
}
],
}