Merge branch 'main' into 654-enhancement-output-to-json

This commit is contained in:
DastInDark
2022-09-10 15:55:12 +09:00
3 changed files with 4 additions and 4 deletions

View File

@@ -12,7 +12,7 @@
- 結果概要を出力しないようにするために `--no-summary` オプションを追加した。 (#672) (@hitenkoku) - 結果概要を出力しないようにするために `--no-summary` オプションを追加した。 (#672) (@hitenkoku)
- 結果概要の表示を短縮させた。 (#675 #678) (@hitenkoku) - 結果概要の表示を短縮させた。 (#675 #678) (@hitenkoku)
- channel_abbreviations.txtによるChannelフィールドのチェックを大文字小文字の区別をなくした。 (#685) (@hitenkoku) - channel_abbreviations.txtによるChannelフィールドのチェックを大文字小文字の区別をなくした。 (#685) (@hitenkoku)
- 出力結果の区切り文字を変更した。 (#687) (@hitenkoku) - 出力結果の区切り文字を`|`から`‖`変更した。 (#687) (@hitenkoku)
- 結果概要の検知数と総イベント数の数に色付けを行い見やすくした。 (#690) (@hitenkoku) - 結果概要の検知数と総イベント数の数に色付けを行い見やすくした。 (#690) (@hitenkoku)
**バグ修正:** **バグ修正:**

View File

@@ -12,7 +12,7 @@
- Added `--no-summary` option to not display the results summary. (#672) (@hitenkoku) - Added `--no-summary` option to not display the results summary. (#672) (@hitenkoku)
- Made the results summary more compact. (#675 #678) (@hitenkoku) - Made the results summary more compact. (#675 #678) (@hitenkoku)
- Made Channel field in channel_abbreviations.txt case-insensitive. (#685) (@hitenkoku) - Made Channel field in channel_abbreviations.txt case-insensitive. (#685) (@hitenkoku)
- Changed pipe separator character in output. (#687) (@hitenkoku) - Changed pipe separator character in output from `|` to `‖`. (#687) (@hitenkoku)
- Added color to Saved alerts and events / Total events analyzed. (#690) (@hitenkoku) - Added color to Saved alerts and events / Total events analyzed. (#690) (@hitenkoku)
**Bug Fixes:** **Bug Fixes:**

View File

@@ -426,7 +426,7 @@ fn emit_csv<W: std::io::Write>(
write_color_buffer( write_color_buffer(
&disp_wtr, &disp_wtr,
get_writable_color(Some(Color::Rgb(255, 255, 0))), get_writable_color(Some(Color::Rgb(255, 255, 0))),
"Saved alerts and events", "Events with hits",
false, false,
) )
.ok(); .ok();
@@ -434,7 +434,7 @@ fn emit_csv<W: std::io::Write>(
write_color_buffer( write_color_buffer(
&disp_wtr, &disp_wtr,
get_writable_color(Some(Color::Rgb(0, 255, 255))), get_writable_color(Some(Color::Rgb(0, 255, 255))),
"Total events analyzed", "Total events",
false, false,
) )
.ok(); .ok();