Browse Source

Should check plugins if build-type is 'essentials' now.

part of CURA-6856
Remco Burema 5 years ago
parent
commit
4bae97529c
2 changed files with 3 additions and 3 deletions
  1. 2 2
      cura/ApplicationMetadata.py
  2. 1 1
      cura/CuraApplication.py

+ 2 - 2
cura/ApplicationMetadata.py

@@ -43,9 +43,9 @@ except ImportError:
     CuraDebugMode = DEFAULT_CURA_DEBUG_MODE
 
 try:
-    from cura.CuraVersion import CuraIsEnterpriseVersion  # type: ignore
+    from cura.CuraVersion import CuraIsSecuredVersion  # type: ignore
 except ImportError:
-    CuraIsEnterpriseVersion = True  # (DEFAULT_CURA_BUILD_TYPE != "")
+    CuraIsSecuredVersion = (CuraBuildType.lower() in ["essentials", "enterprise", "assured", "secure", "secured"])
 
 # Each release has a fixed SDK version coupled with it. It doesn't make sense to make it configurable because, for
 # example Cura 3.2 with SDK version 6.1 will not work. So the SDK version is hard-coded here and left out of the

+ 1 - 1
cura/CuraApplication.py

@@ -720,7 +720,7 @@ class CuraApplication(QtApplication):
     ##  Handle loading of all plugin types (and the backend explicitly)
     #   \sa PluginRegistry
     def _loadPlugins(self) -> None:
-        self._plugin_registry.setCheckIfTrusted(ApplicationMetadata.CuraIsEnterpriseVersion)
+        self._plugin_registry.setCheckIfTrusted(ApplicationMetadata.CuraIsSecuredVersion)
 
         self._plugin_registry.addType("profile_reader", self._addProfileReader)
         self._plugin_registry.addType("profile_writer", self._addProfileWriter)