Merge remote-tracking branch 'origin/master' into v2.1.0-dev

This commit is contained in:
Joel Collins 2020-03-25 17:00:55 +00:00
commit 6476778673
13 changed files with 142 additions and 41 deletions

View file

@ -359,7 +359,7 @@ class FastAutofocusAPI(View):
autofocus_extension_v2 = BaseExtension(
"org.openflexure.autofocus", version="2.0.0-beta.1"
"org.openflexure.autofocus", version="2.0.0"
)
autofocus_extension_v2.add_method(fast_autofocus, "fast_autofocus")

View file

@ -88,7 +88,7 @@ class AutostorageExtension(BaseExtension):
BaseExtension.__init__(
self,
"org.openflexure.autostorage",
version="2.0.0-beta.1",
version="2.0.0",
description="Handle switching capture storage devices",
)

View file

@ -354,6 +354,6 @@ class TileScanAPI(View):
return task
scan_extension_v2 = BaseExtension("org.openflexure.scan", version="2.0.0-beta.1")
scan_extension_v2 = BaseExtension("org.openflexure.scan", version="2.0.0")
scan_extension_v2.add_view(TileScanAPI, "/tile")

View file

@ -202,7 +202,7 @@ class ZipGetterAPIView(View):
zip_extension_v2 = BaseExtension(
"org.openflexure.zipbuilder",
version="2.0.0-beta.1",
version="2.0.0",
description="Build and download capture collections as ZIP files",
)