mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
add version to clockify client addon class
This commit is contained in:
parent
eb0083fc78
commit
f2acf10f1b
3 changed files with 4 additions and 2 deletions
|
|
@ -4,11 +4,13 @@ import time
|
||||||
|
|
||||||
from ayon_core.addon import AYONAddon, ITrayAddon, IPluginPaths
|
from ayon_core.addon import AYONAddon, ITrayAddon, IPluginPaths
|
||||||
|
|
||||||
|
from .version import __version__
|
||||||
from .constants import CLOCKIFY_FTRACK_USER_PATH, CLOCKIFY_FTRACK_SERVER_PATH
|
from .constants import CLOCKIFY_FTRACK_USER_PATH, CLOCKIFY_FTRACK_SERVER_PATH
|
||||||
|
|
||||||
|
|
||||||
class ClockifyAddon(AYONAddon, ITrayAddon, IPluginPaths):
|
class ClockifyAddon(AYONAddon, ITrayAddon, IPluginPaths):
|
||||||
name = "clockify"
|
name = "clockify"
|
||||||
|
version = __version__
|
||||||
|
|
||||||
def initialize(self, studio_settings):
|
def initialize(self, studio_settings):
|
||||||
enabled = self.name in studio_settings
|
enabled = self.name in studio_settings
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,3 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
"""Package declaring AYON addon 'clockify' version."""
|
"""Package declaring AYON addon 'clockify' version."""
|
||||||
__version__ = "0.2.0"
|
__version__ = "0.2.1"
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
name = "clockify"
|
name = "clockify"
|
||||||
title = "Clockify"
|
title = "Clockify"
|
||||||
version = "0.2.0"
|
version = "0.2.1"
|
||||||
client_dir = "ayon_clockify"
|
client_dir = "ayon_clockify"
|
||||||
|
|
||||||
ayon_required_addons = {
|
ayon_required_addons = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue