Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

General: Host implementation defined with class #3337

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
d9bde0c
implemented base classes for host implementation
iLLiCiTiT Jun 13, 2022
626e6f9
moved import of settings to top
iLLiCiTiT Jun 13, 2022
7f106ca
added maintained_selection to HostImplementation
iLLiCiTiT Jun 13, 2022
7ac1b6c
added logger to HostImplementation
iLLiCiTiT Jun 13, 2022
0ff8e2b
added validation methods to interfaces
iLLiCiTiT Jun 13, 2022
b81dbf9
use validations from interfaces
iLLiCiTiT Jun 13, 2022
3aa8881
added is_installed function to legacy_io
iLLiCiTiT Jun 13, 2022
97e6aa4
use HostImplementation class in Maya host
iLLiCiTiT Jun 13, 2022
df16589
added interfaces to inheritance
iLLiCiTiT Jun 14, 2022
94bccd5
Merge branch 'develop' into feature/OP-3315_Host-implementation-defin…
iLLiCiTiT Jun 22, 2022
796348d
renamed 'HostImplementation' to 'HostBase' and `MayaHostImplementatio…
iLLiCiTiT Jun 22, 2022
20cf87c
forgotten changes of MayaHost imports
iLLiCiTiT Jun 23, 2022
ecd2686
added some docstrings
iLLiCiTiT Jun 23, 2022
e36c80f
added type hints
iLLiCiTiT Jun 23, 2022
bf59264
added new names of methods and old variants are marked as deprecated
iLLiCiTiT Jun 23, 2022
779f423
use new method names based on inheritance in workfiles tool and scene…
iLLiCiTiT Jun 23, 2022
3ab8b75
fix double accessed self
iLLiCiTiT Jun 23, 2022
fcefcc7
removed type hints
iLLiCiTiT Jun 24, 2022
b4d141f
initial commit of docstrings
iLLiCiTiT Jun 24, 2022
6af7f90
added host installation and usage of tools in host
iLLiCiTiT Jun 27, 2022
9621877
renamed 'save_current_workfile' -> 'save_workfile'
iLLiCiTiT Jun 27, 2022
918ee53
renamed 'get_referenced_containers' -> 'get_containers'
iLLiCiTiT Jun 27, 2022
f846ef4
removed signature validation from host registration
iLLiCiTiT Jun 28, 2022
fb36060
Merge branch 'develop' into feature/OP-3315_Host-implementation-defin…
iLLiCiTiT Jun 28, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions openpype/host/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
from .host import (
HostBase,
IWorkfileHost,
ILoadHost,
INewPublisher,
)

__all__ = (
"HostBase",
"IWorkfileHost",
"ILoadHost",
"INewPublisher",
)
Loading