Skip to main content
Participating Frequently
March 28, 2019
Question

In need of help with compatibility/packaging & Signing

  • March 28, 2019
  • 1 reply
  • 1365 views

Hi community,

I'm developing a Photoshop extension. I have finished the functionality and ui, problem for me is that I dont really know what i'm doing with Ps compatibility

and the partner portal doesnt seem to be recognizing the version from my manifest correctly.

Is there somewhere or someone to refer to for help with this kind of thing?

I know this is a very broad description, I have many more details if someone is interested.

Thanks

This topic has been closed for replies.

1 reply

tomzag
Inspiring
March 29, 2019

Do you want to set a specific Photoshop version?

Maybe we can help you if you post your manifest file and explain this in more detail.

Participating Frequently
March 29, 2019

hi, thanks for replying.

I need some bug fixes on (I believe) my manifest, as well as potentially the HTML panel itself.

what I'd like to have in the end is an extension that is compatible with CC15.0 - CC20.0.4

Before I get into too many more details I'll post my manifest which is as follows:

<?xml version='1.0' encoding='UTF-8' standalone="no"?>

<ExtensionManifest ExtensionBundleId="PROchnl+" ExtensionBundleVersion="1.0.15" Version="4.0">

  <ExtensionList>

   <Extension Id="com.PROchnl+.panel" Version="1.0.15" />

  </ExtensionList>

  <ExecutionEnvironment>

   <HostList>

   <Host Name="PHSP" Version="[14.0,19.9]" />

   <Host Name="PHXS" Version="[14.0,19.9]" />

   </HostList>

   <LocaleList>

   <Locale Code="All" />

   </LocaleList>

   <RequiredRuntimeList>

   <RequiredRuntime Name="CSXS" Version="4.0" />

   </RequiredRuntimeList>

  </ExecutionEnvironment>

  <DispatchInfoList>

   <Extension Id="com.PROchnl+.panel">

   <DispatchInfo>

   <Resources>

   <MainPath>./client/index.html</MainPath>

   <ScriptPath>./host/index.jsx</ScriptPath>

   <CEFCommandLine />

   </Resources>

   <Lifecycle>

   <AutoVisible>true</AutoVisible>

   </Lifecycle>

   <UI>

   <Type>Panel</Type>

   <Menu>PROchnl+</Menu>

   <Geometry>

   <Size>

   <Height>410</Height>

   <Width>245</Width>

   </Size>

   <MinSize>

   <Height>410</Height>

   <Width>245</Width>

   </MinSize>

   <MaxSize>

   <Height>410</Height>

   <Width>245</Width>

   </MaxSize>

   </Geometry>

   <Icons>

   <Icon Type="Normal">./client/images/icon.jpg</Icon>

   </Icons>

   </UI>

   </DispatchInfo>

   </Extension>

  </DispatchInfoList>

</ExtensionManifest>

tomzag
Inspiring
March 29, 2019

and the partner portal doesnt seem to be recognizing the version from my manifest correctly.

What exactly is happening?