generated from ynput/ayon-addon-template
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #102 from ynput/enhancement/AY-5537_Shotgrid-renam…
…ing-assets Asset renaming synchronization
- Loading branch information
Showing
20 changed files
with
204 additions
and
136 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# -*- coding: utf-8 -*- | ||
"""Package declaring shotgrid addon version.""" | ||
__version__ = "0.4.2-dev.3" | ||
__version__ = "0.4.2-dev.5" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
from .listener import ShotgridListener | ||
from .listener import ShotgridListener, service_main | ||
|
||
|
||
__all__ = ( | ||
"service_main", | ||
"ShotgridListener", | ||
) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,5 @@ | ||
import sys | ||
|
||
from .listener import ShotgridListener | ||
from .listener import service_main | ||
|
||
|
||
if __name__ == "__main__": | ||
shotgrid_listener = ShotgridListener() | ||
sys.exit(shotgrid_listener.start_listening()) | ||
|
||
service_main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "shotgrid-leecher" | ||
version = "0.4.2-dev.3" | ||
version = "0.4.2-dev.5" | ||
description = "Shotgrid Integration for Ayon" | ||
authors = ["Oscar Domingo <[email protected]>"] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
from .processor import ShotgridProcessor | ||
from .processor import ( | ||
ShotgridProcessor, | ||
service_main, | ||
) | ||
|
||
|
||
__all__ = ( | ||
"ShotgridProcessor", | ||
"service_main", | ||
) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
import sys | ||
from .processor import ShotgridProcessor | ||
from .processor import service_main | ||
|
||
|
||
if __name__ == "__main__": | ||
shotgrid_processor = ShotgridProcessor() | ||
sys.exit(shotgrid_processor.start_processing()) | ||
service_main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "shotgrid-processor" | ||
version = "0.4.2-dev.3" | ||
version = "0.4.2-dev.5" | ||
description = "Shotgrid Integration for Ayon" | ||
authors = ["Oscar Domingo <[email protected]>"] | ||
|
||
|
Oops, something went wrong.