mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 05:14:40 +01:00
add version to traypublisher client addon class
This commit is contained in:
parent
811bb5de65
commit
cdd3919c09
4 changed files with 10 additions and 1 deletions
|
|
@ -1,6 +1,9 @@
|
|||
from .version import __version__
|
||||
from .addon import TrayPublishAddon
|
||||
|
||||
|
||||
__all__ = (
|
||||
"__version__",
|
||||
|
||||
"TrayPublishAddon",
|
||||
)
|
||||
|
|
|
|||
|
|
@ -10,12 +10,15 @@ from ayon_core.addon import (
|
|||
IHostAddon,
|
||||
)
|
||||
|
||||
from .version import __version__
|
||||
|
||||
TRAYPUBLISH_ROOT_DIR = os.path.dirname(os.path.abspath(__file__))
|
||||
|
||||
|
||||
class TrayPublishAddon(AYONAddon, IHostAddon, ITrayAction):
|
||||
label = "Publisher"
|
||||
name = "traypublisher"
|
||||
version = __version__
|
||||
host_name = "traypublisher"
|
||||
|
||||
def initialize(self, settings):
|
||||
|
|
|
|||
|
|
@ -0,0 +1,3 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
"""Package declaring AYON addon 'traypublisher' version."""
|
||||
__version__ = "0.2.2"
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
name = "traypublisher"
|
||||
title = "TrayPublisher"
|
||||
version = "0.2.1"
|
||||
version = "0.2.2"
|
||||
|
||||
client_dir = "ayon_traypublisher"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue