Skip to content

Commit

Permalink
2.3.0rc1 baseline
Browse files Browse the repository at this point in the history
  • Loading branch information
synman committed Dec 18, 2022
1 parent 266a5a3 commit ce7e3de
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
6 changes: 3 additions & 3 deletions octoprint_bettergrblsupport/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def __init__(self):
self.bgsFilters = self.bgs_filters

self.settingsVersion = 6
self.wizardVersion = 12
self.wizardVersion = 13

self.whenConnected = time.time()
self.handshakeSent = False
Expand Down Expand Up @@ -529,10 +529,10 @@ def on_settings_save(self, data):
if not self._printer.is_printing():
if "fluidYaml" in data or "fluidSettings" in data:
self._plugin_manager.send_plugin_message(self._identifier, dict(type="simple_notify",
title="Finalizing FluidNC Changes",
title="Finalizing Changes. . .",
text="Please wait while the FluidNC Configuration and Settings are finalized.",
hide=True,
delay=10000,
delay=15000,
notify_type="notice"))
# save our fluid config
if "fluidYaml" in data:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,19 @@
If this is your first time using Better Grbl Support or it has been a while since you've used it, be sure to visit the
<a href="https://github.com/synman/Octoprint-Bettergrblsupport/wiki" target="_blank">Better Grbl Support Wiki</a> to learn about its features and how they work.
<br>
<h4>Release Notes - 2.2.3</h4>
<h4>Release Notes - 2.3.0rc1</h4>
This is already a pretty sizable update with the introduction of FluidNC support, including full management of its
Configuration files and Settings. Behind the scenes, numerous other changes have implemented that optimize existing
Grbl and Grbl_Esp32 settings management. Additional major behind the scenes work includes synchronization of multi-message
command responses.
<ul>
<li>Full FluidNC Support!</li>
<li>Refactored Grbl and Grbl_Esp32 settings management</li>
<li>Implemented multi-message command response synchronization</li>
<li>Replaced more UI references to print / printer with job / machine</li>
</ul>
<br>
<h5>Release Notes - 2.2.3</h5>
<ul>
<li>Grbl ESP32 Settings Supported via Plugin Settings</li>
<li>Fixed an issue causing xPro V5 Grbl ESP32 controller to panic on connect</li>
Expand Down

0 comments on commit ce7e3de

Please sign in to comment.