Merge branch 'develop' into enhancement/plugin-paths-interface

This commit is contained in:
Jakub Trllo 2025-08-04 10:15:09 +02:00 committed by GitHub
commit 96998586df
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 6 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.5.2
- 1.5.1
- 1.5.0
- 1.4.1

View file

@ -944,6 +944,8 @@ class IWorkfileHost:
self._emit_workfile_save_event(event_data, after_save=False)
workdir = os.path.dirname(filepath)
if not os.path.exists(workdir):
os.makedirs(workdir, exist_ok=True)
# Set 'AYON_WORKDIR' environment variable
os.environ["AYON_WORKDIR"] = workdir

View file

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

View file

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

View file

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