use ayon naming

This commit is contained in:
Jakub Trllo 2024-05-24 10:36:39 +02:00
parent a75af77907
commit bf5d99d904
4 changed files with 5 additions and 5 deletions

View file

@ -29,8 +29,8 @@ class TrayPublishAddon(AYONAddon, IHostAddon, ITrayAction):
def on_action_trigger(self):
self.run_traypublisher()
def connect_with_addons(self, enabled_modules):
"""Collect publish paths from other modules."""
def connect_with_addons(self, enabled_addons):
"""Collect publish paths from other addons."""
publish_paths = self.manager.collect_plugin_paths()["publish"]
self.publish_paths.extend(publish_paths)

View file

@ -22,7 +22,7 @@ from .pipeline import (
)
REVIEW_EXTENSIONS = set(IMAGE_EXTENSIONS) | set(VIDEO_EXTENSIONS)
SHARED_DATA_KEY = "openpype.traypublisher.instances"
SHARED_DATA_KEY = "ayon.traypublisher.instances"
class HiddenTrayPublishCreator(HiddenCreator):

View file

@ -21,7 +21,7 @@ from ayon_traypublisher.api.plugin import TrayPublishCreator
class CreateColorspaceLook(TrayPublishCreator):
"""Creates colorspace look files."""
identifier = "io.openpype.creators.traypublisher.colorspace_look"
identifier = "io.ayon.creators.traypublisher.colorspace_look"
label = "Colorspace Look"
product_type = "ociolook"
description = "Publishes color space look file."

View file

@ -20,7 +20,7 @@ from ayon_traypublisher.api.plugin import TrayPublishCreator
class OnlineCreator(TrayPublishCreator):
"""Creates instance from file and retains its original name."""
identifier = "io.openpype.creators.traypublisher.online"
identifier = "io.ayon.creators.traypublisher.online"
label = "Online"
product_type = "online"
description = "Publish file retaining its original file name"