Hi Doug the NINA nightly 3.2.0.67 introduced a breaking change in the camera plugins.
you need to add a new method in your driver:
// this is for nightly 3.2.067
public void UpdateSubSampleArea() {
throw new NotImplementedException();
}
this means you may have to maintain 2 versions of the plugin one with this new methos (and updated nuget in VS) and one for earlier/stable releases of nina....
that is what i had to do for my Lumix plugin;
https://github.com/totoantibes/NinaLumixPlugin/releases
Hi Doug the NINA nightly 3.2.0.67 introduced a breaking change in the camera plugins.
you need to add a new method in your driver:
this means you may have to maintain 2 versions of the plugin one with this new methos (and updated nuget in VS) and one for earlier/stable releases of nina....
that is what i had to do for my Lumix plugin;
https://github.com/totoantibes/NinaLumixPlugin/releases