DueUI Version 3.2.0 is Available
-
https://github.com/gtjoseph/DueUI/releases/tag/v3.2.0
Updates for 3.2.0
NOTE: Since v3.2.0-beta2 there have been just a few housekeeping fixes.
Main Contents:
-
Refactor to autodetect DSF vs Standalone mode and make
implementation cleaner. -
Fix bugs in Standalone mode with displaying status and
print filename. -
Add additional sort capability to the "file_select" and
"file_dropdown" widgets. You can now specify "date"
as a sort parameter and you can add a sort order
specifier by appending it to the parameter like so:
"sort": "date,desc" or "sort": "label,desc" to sort
by date descending or label descending. The default
is ascending. -
You can now specify DueUI settings in the URL and/or
in the dueui_config.json file. The following settings
can be specified:- backend_type: "DSF" or "STANDALONE"
- duet_host: The IP address or hostname of the Duet or SBC
- dueui_config_url: The full URL to your dueui_config.json
- duet_debug_polling_enabled: Defaults to 0 (disabled)
- dueui_settings_dont_send_gcode: Defaults to 0 (disabled)
- duet_polling_enabled: Defaults to 0 (disabled)
- dueui_test_mode: Defaults to 0 (disabled)
- theme: Defaults to "Cerulean"
Applies only to STANDALONE mode:
- duet_password: Defaults to "reprap"
- duet_poll_interval_1: Defaults to 1000
- duet_poll_interval_2: Defaults to 0
- duet_poll_interval_3: Defaults to 5000
Example: (would all be on one line)
http://<dueui_installation>?
dueui_config_url=http://<your_config_server>/dueui_config.json
&theme=Darkly&duet_host=<your_duet_hostname>You can also specify the settings in your dueui_config.json
file and only specify "dueui_config_url" in the URL.
-