mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 08:24:53 +01:00
Merge pull request #580 from ynput/bugfix/tvpaint-move-fixes
TVPpaint: Fixes after movement
This commit is contained in:
commit
5a06f9b5a8
7 changed files with 18 additions and 1 deletions
|
|
@ -1,3 +1,4 @@
|
||||||
|
from .version import __version__
|
||||||
from .addon import (
|
from .addon import (
|
||||||
get_launch_script_path,
|
get_launch_script_path,
|
||||||
TVPaintAddon,
|
TVPaintAddon,
|
||||||
|
|
@ -6,6 +7,8 @@ from .addon import (
|
||||||
|
|
||||||
|
|
||||||
__all__ = (
|
__all__ = (
|
||||||
|
"__version__",
|
||||||
|
|
||||||
"get_launch_script_path",
|
"get_launch_script_path",
|
||||||
"TVPaintAddon",
|
"TVPaintAddon",
|
||||||
"TVPAINT_ROOT_DIR",
|
"TVPAINT_ROOT_DIR",
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,8 @@
|
||||||
import os
|
import os
|
||||||
from ayon_core.addon import AYONAddon, IHostAddon
|
from ayon_core.addon import AYONAddon, IHostAddon
|
||||||
|
|
||||||
|
from .version import __version__
|
||||||
|
|
||||||
TVPAINT_ROOT_DIR = os.path.dirname(os.path.abspath(__file__))
|
TVPAINT_ROOT_DIR = os.path.dirname(os.path.abspath(__file__))
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -14,6 +16,7 @@ def get_launch_script_path():
|
||||||
|
|
||||||
class TVPaintAddon(AYONAddon, IHostAddon):
|
class TVPaintAddon(AYONAddon, IHostAddon):
|
||||||
name = "tvpaint"
|
name = "tvpaint"
|
||||||
|
version = __version__
|
||||||
host_name = "tvpaint"
|
host_name = "tvpaint"
|
||||||
|
|
||||||
def add_implementation_envs(self, env, _app):
|
def add_implementation_envs(self, env, _app):
|
||||||
|
|
|
||||||
|
|
@ -8,6 +8,7 @@ class ImportImage(plugin.Loader):
|
||||||
|
|
||||||
product_types = {"render", "image", "background", "plate", "review"}
|
product_types = {"render", "image", "background", "plate", "review"}
|
||||||
representations = {"*"}
|
representations = {"*"}
|
||||||
|
settings_category = "tvpaint"
|
||||||
|
|
||||||
label = "Import Image"
|
label = "Import Image"
|
||||||
order = 1
|
order = 1
|
||||||
|
|
|
||||||
|
|
@ -19,6 +19,7 @@ class LoadImage(plugin.Loader):
|
||||||
|
|
||||||
product_types = {"render", "image", "background", "plate", "review"}
|
product_types = {"render", "image", "background", "plate", "review"}
|
||||||
representations = {"*"}
|
representations = {"*"}
|
||||||
|
settings_category = "tvpaint"
|
||||||
|
|
||||||
label = "Load Image"
|
label = "Load Image"
|
||||||
order = 1
|
order = 1
|
||||||
|
|
|
||||||
3
server_addon/tvpaint/client/ayon_tvpaint/version.py
Normal file
3
server_addon/tvpaint/client/ayon_tvpaint/version.py
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
"""Package declaring AYON addon 'tvpaint' version."""
|
||||||
|
__version__ = "0.2.1"
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
name = "tvpaint"
|
name = "tvpaint"
|
||||||
title = "TVPaint"
|
title = "TVPaint"
|
||||||
version = "0.2.0"
|
version = "0.2.1"
|
||||||
client_dir = "ayon_tvpaint"
|
client_dir = "ayon_tvpaint"
|
||||||
|
|
||||||
ayon_required_addons = {
|
ayon_required_addons = {
|
||||||
|
|
|
||||||
6
server_addon/tvpaint/pyproject.toml
Normal file
6
server_addon/tvpaint/pyproject.toml
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
[project]
|
||||||
|
name="tvpaint"
|
||||||
|
description="AYON TVPaint addon."
|
||||||
|
|
||||||
|
[ayon.runtimeDependencies]
|
||||||
|
aiohttp_json_rpc = "*"
|
||||||
Loading…
Add table
Add a link
Reference in a new issue