Photoshop CC 2019 extensions missing while others are still there
I have 2 extensions, Layer Cake and Lazy Save.
In 2019, Layer Cake still shows up and works fine while Lazy Save does not.
I've more or less copied the manifest from Layer cake and renamed the extension stuff to Lazy Save and resigned and it still doesn't show up.
I'm at my wits end why this is happening.
<?xml version="1.0" encoding="UTF-8"?>
<ExtensionManifest Version="6.0" ExtensionBundleId="LazySave" ExtensionBundleVersion="1.0.0"
ExtensionBundleName="Lazy Save" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ExtensionList>
<Extension Id="com.CanuckleHead.LazySave" Version="1.0" />
</ExtensionList>
<ExecutionEnvironment>
<HostList>
<!-- Uncomment Host tags according to the apps you want your panel to support -->
<!-- Photoshop -->
<Host Name="PHXS" Version="14" />
<Host Name="PHSP" Version="14" />
<!-- Illustrator -->
<!-- <Host Name="ILST" Version="[18.0,18.9]" />-->
<!-- InDesign -->
<!-- <Host Name="IDSN" Version="[10.0,10.9]" /> -->
<!-- Premiere -->
<!-- <Host Name="PPRO" Version="[8.0,8.9]" /> -->
<!-- AfterEffects -->
<!-- <Host Name="AEFT" Version="[13.0,13.9]" /> -->
<!-- PRELUDE -->
<!-- <Host Name="PRLD" Version="[3.0,3.9]" /> -->
<!-- FLASH Pro -->
<!-- <Host Name="FLPR" Version="[14.0,14.9]" /> -->
</HostList>
<LocaleList>
<Locale Code="All" />
</LocaleList>
<RequiredRuntimeList>
<RequiredRuntime Name="CSXS" Version="6.0" />
</RequiredRuntimeList>
</ExecutionEnvironment>
<DispatchInfoList>
<Extension Id="com.CanuckleHead.LazySave">
<DispatchInfo >
<Resources>
<MainPath>./index.html</MainPath>
</Resources>
<Lifecycle>
<AutoVisible>true</AutoVisible>
</Lifecycle>
<UI>
<Type>Panel</Type>
<Menu>Lazy Save</Menu>
<Geometry>
<MinSize>
<Height>100</Height>
<Width>100</Width>
</MinSize>
<!--<MinSize>
<Height>550</Height>
<Width>400</Width>
</MinSize>
<MaxSize>
<Height>550</Height>
<Width>400</Width>
</MaxSize>-->
</Geometry>
<Icons>
<Icon Type="Normal">./icons/LazySave.png</Icon>
<Icon Type="RollOver">./icons/LazySave.png</Icon>
<Icon Type="Disabled">./icons/LazySave.png</Icon>
<Icon Type="DarkNormal">./icons/LazySave.png</Icon>
<Icon Type="DarkRollOver">./icons/LazySave.png</Icon>
</Icons>
</UI>
</DispatchInfo>
</Extension>
</DispatchInfoList>
</ExtensionManifest>
tried editing the extensionManifest Version from 5 to 6 (saw in some other posts) both don't work for this extension...
I can't see any reasons for it, I'm not getting any errors or if I am they are totally silent and I can't find them...
