Skip to content

Commit ce7e3de

Browse files
committedDec 18, 2022
2.3.0rc1 baseline
1 parent 266a5a3 commit ce7e3de

File tree

2 files changed

+16
-4
lines changed

2 files changed

+16
-4
lines changed
 

‎octoprint_bettergrblsupport/__init__.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ def __init__(self):
183183
self.bgsFilters = self.bgs_filters
184184

185185
self.settingsVersion = 6
186-
self.wizardVersion = 12
186+
self.wizardVersion = 13
187187

188188
self.whenConnected = time.time()
189189
self.handshakeSent = False
@@ -529,10 +529,10 @@ def on_settings_save(self, data):
529529
if not self._printer.is_printing():
530530
if "fluidYaml" in data or "fluidSettings" in data:
531531
self._plugin_manager.send_plugin_message(self._identifier, dict(type="simple_notify",
532-
title="Finalizing FluidNC Changes",
532+
title="Finalizing Changes. . .",
533533
text="Please wait while the FluidNC Configuration and Settings are finalized.",
534534
hide=True,
535-
delay=10000,
535+
delay=15000,
536536
notify_type="notice"))
537537
# save our fluid config
538538
if "fluidYaml" in data:

‎octoprint_bettergrblsupport/templates/bettergrblsupport_wizard.jinja2

+13-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,19 @@
1212
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
1313
<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.
1414
<br>
15-
<h4>Release Notes - 2.2.3</h4>
15+
<h4>Release Notes - 2.3.0rc1</h4>
16+
This is already a pretty sizable update with the introduction of FluidNC support, including full management of its
17+
Configuration files and Settings. Behind the scenes, numerous other changes have implemented that optimize existing
18+
Grbl and Grbl_Esp32 settings management. Additional major behind the scenes work includes synchronization of multi-message
19+
command responses.
20+
<ul>
21+
<li>Full FluidNC Support!</li>
22+
<li>Refactored Grbl and Grbl_Esp32 settings management</li>
23+
<li>Implemented multi-message command response synchronization</li>
24+
<li>Replaced more UI references to print / printer with job / machine</li>
25+
</ul>
26+
<br>
27+
<h5>Release Notes - 2.2.3</h5>
1628
<ul>
1729
<li>Grbl ESP32 Settings Supported via Plugin Settings</li>
1830
<li>Fixed an issue causing xPro V5 Grbl ESP32 controller to panic on connect</li>

0 commit comments

Comments
 (0)
Please sign in to comment.