Skip to content

Commit

Permalink
Merge branch 'develop' into enhancement/dynamice_runtime_instance_cre…
Browse files Browse the repository at this point in the history
…ator
  • Loading branch information
MustafaJafar authored Sep 23, 2024
2 parents 1f34931 + d00fa72 commit d3950b0
Show file tree
Hide file tree
Showing 126 changed files with 6,555 additions and 3,516 deletions.
6 changes: 0 additions & 6 deletions client/ayon_core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,6 @@
# -------------------------
PACKAGE_DIR = AYON_CORE_ROOT
PLUGINS_DIR = os.path.join(AYON_CORE_ROOT, "plugins")
AYON_SERVER_ENABLED = True

# Indicate if AYON entities should be used instead of OpenPype entities
USE_AYON_ENTITIES = True
# -------------------------


Expand All @@ -23,6 +19,4 @@
"AYON_CORE_ROOT",
"PACKAGE_DIR",
"PLUGINS_DIR",
"AYON_SERVER_ENABLED",
"USE_AYON_ENTITIES",
)
4 changes: 0 additions & 4 deletions client/ayon_core/addon/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,3 @@ AYON addons should contain separated logic of specific kind of implementation, s
"inventory": []
}
```

### TrayAddonsManager
- inherits from `AddonsManager`
- has specific implementation for AYON Tray and handle `ITrayAddon` methods
14 changes: 12 additions & 2 deletions client/ayon_core/addon/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,18 @@
)

from .base import (
ProcessPreparationError,
ProcessContext,
AYONAddon,
AddonsManager,
TrayAddonsManager,
load_addons,
)

from .utils import (
ensure_addons_are_process_context_ready,
ensure_addons_are_process_ready,
)


__all__ = (
"click_wrap",
Expand All @@ -25,8 +31,12 @@
"ITrayService",
"IHostAddon",

"ProcessPreparationError",
"ProcessContext",
"AYONAddon",
"AddonsManager",
"TrayAddonsManager",
"load_addons",

"ensure_addons_are_process_context_ready",
"ensure_addons_are_process_ready",
)
Loading

0 comments on commit d3950b0

Please sign in to comment.