Releases: RegenJacob/egui_logger
v0.6.3
This release updates to egui to 0.31
What's Changed1
New Contributors
Full Changelog: v0.6.1...v0.6.3
-
I kind of forgot to set a release for 0.6.2 on Github so it shows those changes aswell. ↩
v0.6.1
This release updates egui to 0.29
Full Changelog: v0.6.0...v0.6.1
v0.6.0
v0.6.0
This release added more filtering and nicer display for some information to egui_logger
What's Changed
- Better labels by @RegenJacob in #20
- Add category filtering, display time and target by @Azkellas in #22
New Contributors
Full Changelog: v0.5.0...v0.6.0
v0.5.0
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
- New API by @RegenJacob in #19
Full Changelog: v0.4.4...v0.5.0
v0.4.4
v0.4.3
v.0.4.2
Small dependency update, no code changes where made
What's Changed
- release version 0.4.2 by @RegenJacob in #12
Full Changelog: v0.4.1...v0.4.2
v.0.4.1
This release just updates to egui 0.24
What's Changed
- Fix small typo in README.md by @zirconium-n in #9
New Contributors
- @zirconium-n made their first contribution in #9
Full Changelog: v0.4.0...v0.4.1
v.0.4.0
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
- General optimizations by @cmleinz in #5
- Fix deadlock when copying by @cmleinz in #7
- Add init_with_max_level() and update egui by @RegenJacob in #8
New Contributors
Full Changelog: v0.3.1...v0.4.0
v0.3.1
This release updates the egui dependency to v0.22
What's Changed
- add multi loglevels and number of logs displayed by @liquidhelium in #2
- Regex and case-insensitive searching; Scroll area expanding by @liquidhelium in #3
- prepare for v0.3.1 by @RegenJacob in #4
New Contributors
- @liquidhelium made their first contribution in #2
Full Changelog: https://github.com/RegenJacob/egui_logger/commits/v0.3.1