update changelog
This commit is contained in:
@@ -6,11 +6,11 @@
|
||||
|
||||
- Hayabusa now checks Channel and EID information based on `rules/config/channel_eid_info.txt` to provide more accurate results. (#463) (@garigariganzy)
|
||||
- Do not display a message about loading detection rules when using the `-M` or `-L` options. (#730) (@hitenkoku)
|
||||
- Added output of detected rule authors in standard output. (#724) (@hitenkoku)
|
||||
- Added a table of rule authors to standard output. (#724) (@hitenkoku)
|
||||
|
||||
**Bug Fixes:**
|
||||
|
||||
- Fixed duplicate event outputted with metric option due to sum up of event IDs key name. (#729) (@hitenkoku)
|
||||
- Fixed a bug where the same Channel and EID would be counted seperately with the `-M` option. (#729) (@hitenkoku)
|
||||
|
||||
## 1.7.0 [2022/09/29]
|
||||
|
||||
|
||||
@@ -422,7 +422,7 @@ fn emit_csv<W: std::io::Write>(
|
||||
write_color_buffer(
|
||||
&disp_wtr,
|
||||
get_writable_color(Some(Color::Rgb(0, 255, 0))),
|
||||
"Rules brought to you by:",
|
||||
"Rule Authors:",
|
||||
false,
|
||||
)
|
||||
.ok();
|
||||
@@ -1189,7 +1189,7 @@ fn output_detected_rule_authors(rule_author_counter: HashMap<String, i128>) {
|
||||
for y in 0..div {
|
||||
if y * 4 + x < sorted_authors.len() {
|
||||
tmp.push(format!(
|
||||
"{}({})",
|
||||
"{} ({})",
|
||||
sorted_authors[y * 4 + x].0,
|
||||
sorted_authors[y * 4 + x].1
|
||||
));
|
||||
|
||||
Reference in New Issue
Block a user