Skip to content

Releases: ReagentX/Logria

0.4.2

27 Jun 19:32
00aefec

Choose a tag to compare

  • Improve Windows compatibility for #134

0.4.1

11 Jun 03:58
3686072

Choose a tag to compare

  • Refactor shutdown process
    • Use AtomicBool instead of Mutex<bool>
    • Store thread handles and child processes in a InputStream
    • Fix #132
  • Fix unassigned stream handles if saving the session file failed, but the app started anyway

0.4.0

10 Jun 03:09
aec2a3e

Choose a tag to compare

  • Refactor Processor functionality
    • Fix #130 by implementing reset() on ProcessorMethods trait
    • Refactor Date processor
      • Cache format string for faster updates
      • Compute determine_rate() lazily instead of on update()
    • Refactor Counter processor
      • Use single state HashMap
      • Remove almost all string clones
      • Calculate order only on render
  • Add progress indicator to long process_matches() jobs
  • Remove format_num crate
    • Replace crate with with simple native functions
      • Reduces CPU usage from ≈30% for a 1ms/message stream to ≈4%
    • The format_num crate compiles a regex on every format call, taking up > 90% of app runtime:
      Click to expand flamegraphsBefore:imageAfter:image

0.3.2

05 Jun 20:43
ce8efa4

Choose a tag to compare

0.3.1

05 Jun 00:07
6487992

Choose a tag to compare

0.3.0

01 Jun 23:30
aa8dd08

Choose a tag to compare

  • Replace regex filter with highlight search to implement #29
    • Highlight search activates with /
      • Enter a regex to highlight matches
      • Page Up and Page Down scroll to the previous and next match, respectively
    • Prior regex filter behavior can be accessed with r

0.2.0

23 Feb 21:52
257bf1c

Choose a tag to compare

  • Remove tokio dependency, use stdlib for Command input
  • Use separate poll rates for stdout and stderr streams
  • Resolve #110

0.1.7

22 Feb 19:09
ce58b0a

Choose a tag to compare

  • Bump deps
  • Fixes for Rust 2024

0.1.4-beta

27 Dec 05:15
f1e8cd7

Choose a tag to compare

  • Bump deps
  • Clippy fixes

0.1.3-alpha

12 Feb 20:02
6831023

Choose a tag to compare

  • Docs updates
  • Bump tokio