mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
Merge branch 'develop' into bugfix/photoshop-add-missing-settings-category
This commit is contained in:
commit
543ae6dae4
7 changed files with 18 additions and 1 deletions
|
|
@ -1,3 +1,4 @@
|
|||
from .version import __version__
|
||||
from .addon import (
|
||||
get_launch_script_path,
|
||||
TVPaintAddon,
|
||||
|
|
@ -6,6 +7,8 @@ from .addon import (
|
|||
|
||||
|
||||
__all__ = (
|
||||
"__version__",
|
||||
|
||||
"get_launch_script_path",
|
||||
"TVPaintAddon",
|
||||
"TVPAINT_ROOT_DIR",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,8 @@
|
|||
import os
|
||||
from ayon_core.addon import AYONAddon, IHostAddon
|
||||
|
||||
from .version import __version__
|
||||
|
||||
TVPAINT_ROOT_DIR = os.path.dirname(os.path.abspath(__file__))
|
||||
|
||||
|
||||
|
|
@ -14,6 +16,7 @@ def get_launch_script_path():
|
|||
|
||||
class TVPaintAddon(AYONAddon, IHostAddon):
|
||||
name = "tvpaint"
|
||||
version = __version__
|
||||
host_name = "tvpaint"
|
||||
|
||||
def add_implementation_envs(self, env, _app):
|
||||
|
|
|
|||
|
|
@ -8,6 +8,7 @@ class ImportImage(plugin.Loader):
|
|||
|
||||
product_types = {"render", "image", "background", "plate", "review"}
|
||||
representations = {"*"}
|
||||
settings_category = "tvpaint"
|
||||
|
||||
label = "Import Image"
|
||||
order = 1
|
||||
|
|
|
|||
|
|
@ -19,6 +19,7 @@ class LoadImage(plugin.Loader):
|
|||
|
||||
product_types = {"render", "image", "background", "plate", "review"}
|
||||
representations = {"*"}
|
||||
settings_category = "tvpaint"
|
||||
|
||||
label = "Load Image"
|
||||
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"
|
||||
title = "TVPaint"
|
||||
version = "0.2.0"
|
||||
version = "0.2.1"
|
||||
client_dir = "ayon_tvpaint"
|
||||
|
||||
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