Skip to content

Releases: RegenJacob/egui_logger

v0.6.3

23 Feb 21:24
242d909
Compare
Choose a tag to compare

This release updates to egui to 0.31

What's Changed1

New Contributors

Full Changelog: v0.6.1...v0.6.3

  1. I kind of forgot to set a release for 0.6.2 on Github so it shows those changes aswell.

v0.6.1

03 Oct 11:09
a3d34d8
Compare
Choose a tag to compare

This release updates egui to 0.29

Full Changelog: v0.6.0...v0.6.1

v0.6.0

21 Sep 17:34
ac13cf7
Compare
Choose a tag to compare

v0.6.0

This release added more filtering and nicer display for some information to egui_logger

What's Changed

New Contributors

Full Changelog: v0.5.0...v0.6.0

v0.5.0

10 Jul 19:59
3cf3c45
Compare
Choose a tag to compare

This update changes the API a bit:

UI:

// before
egui_logger::logger_ui(ui);
// now
egui_logger::logger_ui().show();

This is because LoggerUI provides new options.
And will (hopefully) provide more in the future.
Currently only has support to toggle regex support

Log

// before
egui_logger::init().unwrap();
// now
egui_logger::builder().init().unwrap();

Like the above this will add some more features in the future.
Currently this only adds the features to set the max log level

What's Changed

Full Changelog: v0.4.4...v0.5.0

v0.4.4

28 Mar 11:19
ca9a27d
Compare
Choose a tag to compare

v0.4.4

This release updates egui to 0.27

Full Changelog: v0.4.3...v0.4.4

v0.4.3

05 Feb 22:37
Compare
Choose a tag to compare

This release updates the egui dependency to 0.26.
Now you can also use multi_log to have multiple loggers e.g env_logger.

What's Changed

  • Change visibility of EguiLogger to public by @nikoof in #14

New Contributors

Full Changelog: v0.4.2...v0.4.3

v.0.4.2

11 Jan 17:28
f8f63e6
Compare
Choose a tag to compare

Small dependency update, no code changes where made

What's Changed

Full Changelog: v0.4.1...v0.4.2

v.0.4.1

25 Nov 13:25
Compare
Choose a tag to compare

This release just updates to egui 0.24

What's Changed

New Contributors

Full Changelog: v0.4.0...v0.4.1

v.0.4.0

12 Oct 04:24
Compare
Choose a tag to compare

This release updates the egui dependency to v0.23

It also finally has the option to log things below log::Level::Info by using

egui_logger::init_with_max_level(log::LevelFilter::Debug).unwrap();

of course Trace is possible too but not recommended.

What's Changed

New Contributors

Full Changelog: v0.3.1...v0.4.0

v0.3.1

01 Jun 15:17
Compare
Choose a tag to compare

This release updates the egui dependency to v0.22

What's Changed

New Contributors

Full Changelog: https://github.com/RegenJacob/egui_logger/commits/v0.3.1