Skip to content

Commit a1517b6

Browse files
#44499 added nuke quickreview and playlist support (#52)
Adds a new tk-nuke-quickreview app to nuke Adds a generic shotgun action to add versions to playlists (all dccs) Updates core to 18.124 Updates to latest shotgun panel (improved action support) Updates to latest widget fw (generic task picker widget)
1 parent 883b67d commit a1517b6

File tree

10 files changed

+30
-11
lines changed

10 files changed

+30
-11
lines changed

core/core_api.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
location:
1515
type: app_store
1616
name: tk-core
17-
version: v0.18.120
17+
version: v0.18.124

env/includes/3dsmax/apps.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ includes:
8585
- actions:
8686
- quicktime_clipboard
8787
- sequence_clipboard
88+
- add_to_playlist
8889
filters: {}
8990
enable_context_switch: true
9091
location: "@common.apps.tk-multi-shotgunpanel.location"

env/includes/common/apps.yml

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,18 @@ common.apps.tk-multi-pythonconsole:
2929
type: app_store
3030
name: tk-multi-pythonconsole
3131

32+
common.apps.tk-multi-setframerange:
33+
location:
34+
version: v0.3.0
35+
type: app_store
36+
name: tk-multi-setframerange
37+
3238
# locations for common apps
3339

3440
common.apps.tk-multi-publish2.location:
3541
type: app_store
3642
name: tk-multi-publish2
37-
version: v2.0.6
43+
version: v2.0.9
3844

3945
common.apps.tk-multi-loader2.location:
4046
type: app_store
@@ -44,18 +50,17 @@ common.apps.tk-multi-loader2.location:
4450
common.apps.tk-multi-shotgunpanel.location:
4551
type: app_store
4652
name: tk-multi-shotgunpanel
47-
version: v1.4.9
53+
version: v1.5.0
4854

4955
common.apps.tk-multi-launchapp.location:
5056
type: app_store
5157
name: tk-multi-launchapp
5258
version: v0.9.15
5359

54-
common.apps.tk-multi-setframerange:
55-
location:
56-
version: v0.3.0
57-
type: app_store
58-
name: tk-multi-setframerange
60+
common.apps.tk-nuke-quickreview.location:
61+
type: app_store
62+
name: tk-nuke-quickreview
63+
version: v1.0.1
5964

6065
# help urls
6166

env/includes/common/frameworks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
frameworks:
1515
tk-framework-qtwidgets_v2.x.x:
1616
location:
17-
version: v2.6.6
17+
version: v2.7.1
1818
type: app_store
1919
name: tk-framework-qtwidgets
2020
tk-framework-shotgunutils_v4.x.x:

env/includes/houdini/apps.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ houdini.apps.tk-multi-shotgunpanel:
8686
- actions:
8787
- quicktime_clipboard
8888
- sequence_clipboard
89+
- add_to_playlist
8990
filters: {}
9091
enable_context_switch: true
9192
location: "@common.apps.tk-multi-shotgunpanel.location"

env/includes/maya/apps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ maya.apps.tk-multi-shotgunpanel:
8080
- actions: [assign_task, task_to_ip]
8181
filters: {}
8282
Version:
83-
- actions: [quicktime_clipboard, sequence_clipboard]
83+
- actions: [quicktime_clipboard, sequence_clipboard, add_to_playlist]
8484
filters: {}
8585
enable_context_switch: true
8686
location: "@common.apps.tk-multi-shotgunpanel.location"

env/includes/nuke/apps.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,10 +92,18 @@ nuke.apps.tk-multi-shotgunpanel:
9292
filters: {published_file_type: Rendered Image}
9393
- actions: [read_node]
9494
filters: {published_file_type: Texture}
95+
- actions: [publish_clipboard]
96+
filters: {}
9597
Task:
9698
- actions: [assign_task, task_to_ip]
9799
filters: {}
100+
Version:
101+
- actions: [quicktime_clipboard, sequence_clipboard, add_to_playlist]
102+
filters: {}
103+
98104
actions_hook: '{self}/general_actions.py:{self}/tk-nuke_actions.py'
99105
enable_context_switch: true
100106
location: "@common.apps.tk-multi-shotgunpanel.location"
101107

108+
nuke.apps.tk-nuke-quickreview:
109+
location: "@common.apps.tk-nuke-quickreview.location"

env/includes/nuke/project.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ nuke.project:
2727

2828
tk-multi-shotgunpanel: '@nuke.apps.tk-multi-shotgunpanel'
2929

30+
tk-nuke-quickreview: '@nuke.apps.tk-nuke-quickreview'
31+
3032
location: "@common.engines.tk-nuke.location"
3133
menu_favourites: []
3234
run_at_startup:

env/includes/nuke/shot.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ nuke.shot:
3030

3131
tk-multi-shotgunpanel: '@nuke.apps.tk-multi-shotgunpanel'
3232

33+
tk-nuke-quickreview: '@nuke.apps.tk-nuke-quickreview'
34+
3335
location: "@common.engines.tk-nuke.location"
3436
menu_favourites: []
3537
run_at_startup:

env/includes/photoshopcc/apps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ photoshopcc.apps.tk-multi-shotgunpanel:
7979
- actions: [assign_task, task_to_ip]
8080
filters: {}
8181
Version:
82-
- actions: [quicktime_clipboard, sequence_clipboard]
82+
- actions: [quicktime_clipboard, sequence_clipboard, add_to_playlist]
8383
filters: {}
8484
enable_context_switch: true
8585
location: "@common.apps.tk-multi-shotgunpanel.location"

0 commit comments

Comments
 (0)