2025-12-01

This commit is contained in:
2026-03-17 14:58:51 -06:00
parent 183e865f8b
commit 4b82b57113
6846 changed files with 954887 additions and 162606 deletions
@@ -16,16 +16,15 @@
#
# ##### END GPL LICENSE BLOCK #####
from collections import deque
from logging import INFO, WARN
from os import environ
from subprocess import Popen
from typing import Optional
from typing import Any, Optional
from . import datas
CLIENT_VERSION = "v1.5.0"
CLIENT_VERSION = "v1.7.0"
CLIENT_ACCESSIBLE = False
"""Is Client accessible? Can add-on access it and call stuff which uses it?"""
CLIENT_RUNNING = False
@@ -42,7 +41,7 @@ DATA: dict = { # TODO: move these
"asset comments": {},
}
TABS = {
TABS: dict[str, Any] = {
"active_tab": 0, # Index of currently active tab
"tabs": [ # List of all tabs
{