From 8347c32c3f7a3d3f219c22cb018aaa9b4d47a26b Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Sun, 3 Nov 2019 03:01:46 +0100 Subject: [PATCH] Add support for Cura 4.4 --- CMakeLists.txt | 2 +- plugin.json.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c40c82544..64e36c574 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,7 +12,7 @@ set(SETTINGSGUIDE_PLUGIN_ID "SettingsGuide2" CACHE STRING "The plug-in ID of the set(SETTINGSGUIDE_VERSION_MAJOR 2 CACHE STRING "The major version number, indicating a backward compatibility break.") set(SETTINGSGUIDE_VERSION_MINOR 0 CACHE STRING "The minor version number, indicating a forward compatibility break.") set(SETTINGSGUIDE_VERSION_PATCH 1 CACHE STRING "The patch version number, indicating an incremental improvement without compatibility break.") -set(SETTINGSGUIDE_SUPPORTED_SDKS "6.0.0" CACHE STRING "List of supported Cura SDK versions.") +set(SETTINGSGUIDE_SUPPORTED_SDKS "6.0.0;7.0.0" CACHE STRING "List of supported Cura SDK versions.") #Make sure we have Mistune. include(ExternalProject) diff --git a/plugin.json.in b/plugin.json.in index 73e7a10e1..e2807d399 100644 --- a/plugin.json.in +++ b/plugin.json.in @@ -4,5 +4,5 @@ "version": "${SETTINGSGUIDE_VERSION_MAJOR}.${SETTINGSGUIDE_VERSION_MINOR}.${SETTINGSGUIDE_VERSION_PATCH}", "description": "Provides extra information and explanations about settings in Cura, with images and animations.", "api": 6, - "supported_sdk_versions": ["6.0.0"] + "supported_sdk_versions": ["6.0.0", "7.0.0"] }