From 53c83b3b92b66bffea83078d9db72f99b5f2b103 Mon Sep 17 00:00:00 2001 From: Petr Kalis Date: Tue, 30 Nov 2021 10:20:49 +0100 Subject: [PATCH 1/4] Fix - remove wrongly used host for hook Host left here after debugging, causing issue in openpype_gui --- openpype/hooks/pre_foundry_apps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openpype/hooks/pre_foundry_apps.py b/openpype/hooks/pre_foundry_apps.py index 7df1a6a833..85f68c6b60 100644 --- a/openpype/hooks/pre_foundry_apps.py +++ b/openpype/hooks/pre_foundry_apps.py @@ -13,7 +13,7 @@ class LaunchFoundryAppsWindows(PreLaunchHook): # Should be as last hook because must change launch arguments to string order = 1000 - app_groups = ["nuke", "nukex", "hiero", "nukestudio", "photoshop"] + app_groups = ["nuke", "nukex", "hiero", "nukestudio"] platforms = ["windows"] def execute(self): From 746504004401a3f435bff82130af3ae13ec9ab87 Mon Sep 17 00:00:00 2001 From: Ondrej Samohel Date: Tue, 30 Nov 2021 17:33:19 +0100 Subject: [PATCH 2/4] update of avalon-core --- repos/avalon-core | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repos/avalon-core b/repos/avalon-core index 7e5efd6885..9499f6517a 160000 --- a/repos/avalon-core +++ b/repos/avalon-core @@ -1 +1 @@ -Subproject commit 7e5efd6885330d84bb8495975bcab84df49bfa3d +Subproject commit 9499f6517a1ff2d3bf94c5d34c0aece146734760 From e6ab772dd74e8141ea0c1e7defce95921c2cb946 Mon Sep 17 00:00:00 2001 From: iLLiCiTiT Date: Wed, 1 Dec 2021 13:16:45 +0100 Subject: [PATCH 3/4] fix import of constant --- openpype/tools/standalonepublish/widgets/widget_family.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openpype/tools/standalonepublish/widgets/widget_family.py b/openpype/tools/standalonepublish/widgets/widget_family.py index 682a6fc974..1e20028392 100644 --- a/openpype/tools/standalonepublish/widgets/widget_family.py +++ b/openpype/tools/standalonepublish/widgets/widget_family.py @@ -10,7 +10,7 @@ from openpype.api import ( Creator ) from openpype.lib import TaskNotSetError -from avalon.tools.creator.app import SubsetAllowedSymbols +from openpype.pipeline.create import SUBSET_NAME_ALLOWED_SYMBOLS class FamilyWidget(QtWidgets.QWidget): @@ -223,7 +223,7 @@ class FamilyWidget(QtWidgets.QWidget): # QUESTION should Creator care about this and here should be # only validated with schema regex? subset_name = re.sub( - "[^{}]+".format(SubsetAllowedSymbols), + "[^{}]+".format(SUBSET_NAME_ALLOWED_SYMBOLS), "", subset_name ) From 1d8adf52fd44fbb1b306638286018126f8ab3aea Mon Sep 17 00:00:00 2001 From: iLLiCiTiT Date: Wed, 1 Dec 2021 13:40:21 +0100 Subject: [PATCH 4/4] set explicit window hints in launcher --- openpype/tools/launcher/window.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/openpype/tools/launcher/window.py b/openpype/tools/launcher/window.py index c8acbe77c2..a8f65894f2 100644 --- a/openpype/tools/launcher/window.py +++ b/openpype/tools/launcher/window.py @@ -243,7 +243,11 @@ class LauncherWindow(QtWidgets.QDialog): # Allow minimize self.setWindowFlags( - self.windowFlags() | QtCore.Qt.WindowMinimizeButtonHint + QtCore.Qt.Window + | QtCore.Qt.CustomizeWindowHint + | QtCore.Qt.WindowTitleHint + | QtCore.Qt.WindowMinimizeButtonHint + | QtCore.Qt.WindowCloseButtonHint ) project_model = ProjectModel(self.dbcon)