Merge branch 'develop' into enhancement/1296-product-base-types-support-in-integrator

This commit is contained in:
Jakub Trllo 2025-12-04 18:02:34 +01:00 committed by GitHub
commit 49b736fb68
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 7 additions and 3 deletions

View file

@ -35,6 +35,7 @@ body:
label: Version
description: What version are you running? Look to AYON Tray
options:
- 1.6.13
- 1.6.12
- 1.6.11
- 1.6.10

View file

@ -48,6 +48,7 @@ class ExtractThumbnail(pyblish.api.InstancePlugin):
"unreal",
"houdini",
"batchdelivery",
"webpublisher",
]
settings_category = "core"
enabled = False

View file

@ -1114,6 +1114,8 @@ class SceneInventoryView(QtWidgets.QTreeView):
try:
for item_id, item_version in zip(item_ids, versions):
container = containers_by_id[item_id]
if container.get("version_locked"):
continue
try:
update_container(container, item_version)
except Exception as exc:

View file

@ -1,3 +1,3 @@
# -*- coding: utf-8 -*-
"""Package declaring AYON addon 'core' version."""
__version__ = "1.6.12+dev"
__version__ = "1.6.13+dev"

View file

@ -1,6 +1,6 @@
name = "core"
title = "Core"
version = "1.6.12+dev"
version = "1.6.13+dev"
client_dir = "ayon_core"

View file

@ -5,7 +5,7 @@
[tool.poetry]
name = "ayon-core"
version = "1.6.12+dev"
version = "1.6.13+dev"
description = ""
authors = ["Ynput Team <team@ynput.io>"]
readme = "README.md"