* bed_level: major rework
deprecate screw positions, we will be auto-detecting from now on
support rotating the layout (previously only rotated the button actions)
invert support, inverting axis in KS will invert the layout
* move: mark bed_level to reinit after invert
* bed_level: rotate with a shift function
* bed_level: rotation show popup if misconfigured
* bed_level: message for screw configurations not supportted in a more informative way
* docs: update bed_level docs
remove idle_timeout from the enable status (not used)
make status data do less stuff for performance reasons
separate printer and moonraker in status enable
docs:
make menu config look more like configuration reference of klipper
also fixes some mistakes and simplify the description
* add ability to select button style for menu items
* allow for jinja template rendering for (nearly) all menu options
this shuffles params json checks to display time instead of config time
* Add current heater power % to job status
* Add show_heater_power config option and move update_temp()s to ScreenPanel
* Add the option to the UI config instead of the docs
* Prefer extra items on job_status over the power
There is not a lot of space, it's a trade off, and people will likely prefer extra_items
* Remove the comma, none of the other buttons have it
* job_status: inherit the parent config
* screen: create reload_panels to avoid some service restarts
* extrude: fix power breaking multi-extruder setups
* main and temp: remove degrees char from the table
* main and temp: revert removal of the header
Co-authored-by: alfrix <alfredomonclus@gmail.com>
it's now possible to define a custom menu without the need to copy all the menu entries from defaults.conf
if you want to define all the entries, disable the default menu with 'use_default_menu: False' under [main]
if a preheat is defined then defaults are dropped in favor of keeping only user defines, this behaviour
has not changed, and it's intended since the user may not want any of the defaults; but it's now possible to
put preheat options in an include file.
fixes#530fixes#497fixes#408