Skip to content

Commit

Permalink
Merge pull request #49 from quadproduction/release/4.0.23
Browse files Browse the repository at this point in the history
Release/4.0.23
  • Loading branch information
BenSouchet authored Jan 29, 2025
2 parents 62f6933 + dba1608 commit f2f05bc
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 269 deletions.
9 changes: 9 additions & 0 deletions src/igniter/zxp_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
import re
import shutil
import zipfile
import platform

from pathlib import Path
from typing import List
Expand Down Expand Up @@ -84,6 +85,14 @@ def update_zxp_extensions(running_version_fullpath: Path, extensions: [ZXPExtens
def get_zxp_extensions_to_update(running_version_fullpath, global_settings, force=False) -> List[ZXPExtensionData]:
# List of all Adobe software ids (named hosts) handled by QuadPype
# TODO: where and how to store the list of Adobe software ids
low_platform = platform.system().lower()
if low_platform == "linux":
# ZXP skipped for Linux
return []
elif low_platform == "darwin":
# TODO: implement this function for macOS
raise NotImplementedError(f"MacOS not implemented, implementation need before the first macOS release")

zxp_host_ids = ["photoshop", "aftereffects"]

# Determine the user-specific Adobe extensions directory
Expand Down
258 changes: 0 additions & 258 deletions src/quadpype/settings/defaults/project_anatomy/imageio.json

This file was deleted.

10 changes: 0 additions & 10 deletions src/quadpype/settings/defaults/project_settings/royalrender.json

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -381,6 +381,16 @@
"key": "enabled",
"label": "Enabled"
},
{
"type": "boolean",
"key": "optional",
"label": "Optional"
},
{
"type": "boolean",
"key": "active",
"label": "Active"
},
{
"key": "disabled_for_tasks",
"label": "Disabled for task types",
Expand Down
2 changes: 1 addition & 1 deletion src/quadpype/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# -*- coding: utf-8 -*-
"""File declaring QuadPype version."""
__version__ = "4.0.22"
__version__ = "4.0.23"

0 comments on commit f2f05bc

Please sign in to comment.