Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified client/ayon_photoshop/api/extension.zxp
Binary file not shown.
2 changes: 1 addition & 1 deletion client/ayon_photoshop/api/extension/CSXS/manifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version='1.0' encoding='UTF-8'?>
<ExtensionManifest ExtensionBundleId="io.ynput.PS.panel" ExtensionBundleVersion="1.1.17" Version="7.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ExtensionManifest ExtensionBundleId="io.ynput.PS.panel" ExtensionBundleVersion="1.1.18" Version="7.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ExtensionList>
<Extension Id="io.ynput.PS.panel" />
</ExtensionList>
Expand Down
7 changes: 2 additions & 5 deletions client/ayon_photoshop/api/extension/host/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -329,16 +329,13 @@ function saveAs(output_path, ext, as_copy){
is_temp_doc = true;
doc.bitsPerChannel = BitsPerChannelType.EIGHT;
}
if (
doc.bitsPerChannel === BitsPerChannelType.SIXTEEN ||
doc.bitsPerChannel === BitsPerChannelType.EIGHT
&& (ext === 'exr')
) {
if (ext === 'exr'){
// Create a temp duplicate of the document to enforce 32 bit
// document, because EXR save is only supported from 32 bit
doc = doc.duplicate();
is_temp_doc = true;
doc.bitsPerChannel = BitsPerChannelType.THIRTYTWO;
doc.flatten();
}
Comment thread
moonyuet marked this conversation as resolved.
if (ext === 'jpg') {
saveOptions = new JPEGSaveOptions();
Expand Down
Loading