๐Ÿ–Œ egui v0.10.0 Release Notes

Release Date: 2021-02-28 // about 3 years ago
  • โž• Added โญ

    • โž• Added egui::plot::Plot to plot some 2D data.
    • โž• Added Ui::hyperlink_to(label, url).
    • Sliders can now have a value prefix and suffix (e.g. the suffix "ยฐ" works like a unit).
    • Context::set_pixels_per_point to control the scale of the UI.
    • โž• Added Response::changed() to query if e.g. a slider was dragged, text was entered or a checkbox was clicked.
    • โž• Added support for all integers in DragValue and Slider (except 128-bit).

    ๐Ÿ”„ Changed ๐Ÿ”ง

    • ๐Ÿ‘Œ Improve the positioning of tooltips.
    • Only show tooltips if mouse is still.
    • 0๏ธโƒฃ Slider will now show the value display by default, unless turned off with .show_value(false).
    • The Slider value is now a DragValue which when dragged can pick values outside of the slider range (unless clamp_to_range is set).