Skip to content

Commit

Permalink
Merge pull request #14 from ynput/feature/OP-6465_hiero_update_to_new…
Browse files Browse the repository at this point in the history
…_publisher_continuation

Finish Hiero update to new publisher #14
  • Loading branch information
robin-ynput authored Nov 4, 2024
2 parents 198951a + 80c45f0 commit 9e83367
Show file tree
Hide file tree
Showing 23 changed files with 1,746 additions and 1,037 deletions.
36 changes: 17 additions & 19 deletions client/ayon_hiero/api/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,9 @@
)

from .pipeline import (
HieroHost,
launch_workfiles_app,
ls,
install,
uninstall,
reload_config,
containerise,
publish,
Expand All @@ -22,7 +21,7 @@
)

from .constants import (
OPENPYPE_TAG_NAME,
AYON_TAG_NAME,
DEFAULT_SEQUENCE_NAME,
DEFAULT_BIN_NAME
)
Expand All @@ -35,15 +34,15 @@
get_timeline_selection,
get_current_track,
get_track_item_tags,
get_track_openpype_tag,
set_track_openpype_tag,
get_track_openpype_data,
get_track_ayon_tag,
set_track_ayon_tag,
get_track_ayon_data,
get_track_item_pype_tag,
set_track_item_pype_tag,
get_track_item_pype_data,
get_trackitem_openpype_tag,
set_trackitem_openpype_tag,
get_trackitem_openpype_data,
get_trackitem_ayon_tag,
set_trackitem_ayon_tag,
get_trackitem_ayon_data,
set_publish_attribute,
get_publish_attribute,
imprint,
Expand All @@ -66,11 +65,10 @@
)

__all__ = [
# avalon pipeline module
# pipeline module
"HieroHost",
"launch_workfiles_app",
"ls",
"install",
"uninstall",
"reload_config",
"containerise",
"publish",
Expand All @@ -88,7 +86,7 @@
"work_root",

# Constants
"OPENPYPE_TAG_NAME",
"AYON_TAG_NAME",
"DEFAULT_SEQUENCE_NAME",
"DEFAULT_BIN_NAME",

Expand All @@ -100,12 +98,12 @@
"get_timeline_selection",
"get_current_track",
"get_track_item_tags",
"get_track_openpype_tag",
"set_track_openpype_tag",
"get_track_openpype_data",
"get_trackitem_openpype_tag",
"set_trackitem_openpype_tag",
"get_trackitem_openpype_data",
"get_track_ayon_tag",
"set_track_ayon_tag",
"get_track_ayon_data",
"get_trackitem_ayon_tag",
"set_trackitem_ayon_tag",
"get_trackitem_ayon_data",
"set_publish_attribute",
"get_publish_attribute",
"imprint",
Expand Down
11 changes: 8 additions & 3 deletions client/ayon_hiero/api/constants.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
OPENPYPE_TAG_NAME = "openpypeData"
DEFAULT_SEQUENCE_NAME = "openpypeSequence"
DEFAULT_BIN_NAME = "openpypeBin"
AYON_TAG_NAME = "AYONdata"
LEGACY_OPENPYPE_TAG_NAME = "openpypeData"

AYON_WORKFILE_TAG_BIN = "AYONdata"
AYON_WORKFILE_TAG_NAME = "workfile"

DEFAULT_SEQUENCE_NAME = "AYONsequence"
DEFAULT_BIN_NAME = "AYONbin"
Loading

0 comments on commit 9e83367

Please sign in to comment.