diff --git a/CHANGELOG.md b/CHANGELOG.md index b6de03c..c0ded77 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog of Cura-DuetRRFPlugin +## v1.0.2: 2019-01-06 + * fix layout issues on Cura 4.0-beta + * bump compatibility for Cura 4.0 / API 6.0 + ## v1.0.1: 2018-12-19 * do not try to delete the gcode file before uploading: RRF safely handles this, https://forum.duet3d.com/topic/8194/cura-duet-reprap-firmware-integration-question diff --git a/README.md b/README.md index 96d756f..877a318 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Cura-DuetRRFPlugin -Plugin for Cura 3.6 that adds output devices for a Duet RepRapFirmware printer: "Print", "Simulate", and "Upload". +Plugin for Cura 3.6 that adds output devices for a RepRapFirmware printer running a DuetWifi, DuetEthernet, or Duet Maestro controller: "Print", "Simulate", and "Upload". ## Installation via Cura Marketplace @@ -34,7 +34,7 @@ above. * Click "Add" * Enter the name of your printer - e.g., `MyBigBox` -* Enter the URL to your DuetWifi/DuetEthernet board +* Enter the URL to your controller board - make sure this URL works if you copy & paste it into your browser - if you browse to that URL, you should see the DuetWebControl (DWC) - e.g., `http://printer.local/` or `http://192.168.1.42/` @@ -51,7 +51,7 @@ Look at the bottom right - there should be the big blue button with you printer ## Features * Upload / Simulate / Print -* Works with HTTP and HTTPS connections and URLS +* Works with HTTP and HTTPS connections and URLs * Works with HTTP Basic Auth (optional) * Works with RRF passwords (if you used `M551`, default is `reprap`) * No support for UNC paths, only IP addresses or resolvable domain names (DNS) diff --git a/plugin.json b/plugin.json index c977788..b2fc021 100644 --- a/plugin.json +++ b/plugin.json @@ -2,8 +2,9 @@ "name": "DuetRRF", "author": "Thomas Kriechbaumer", "description": "Upload and Print to DuetWifi / DuetEthernet / Duet Maestro with RepRapFirmware.", - "version": "1.0.1", - "minimum_cura_version": "3.5", + "version": "1.0.2", + "minimum_cura_version": "3.6", "maximum_cura_version": "4.0", - "api": "6.0" + "api": 5, + "supported_sdk_versions": ["5.0.0", "6.0.0"] }