From fbb348bc823da695c218a9136ffae14ecd4f3bf0 Mon Sep 17 00:00:00 2001 From: AG <98327736+ggold7046@users.noreply.github.com> Date: Fri, 24 Mar 2023 20:50:45 +0530 Subject: [PATCH 1/2] Update utils.py Changed the colour/highlight to "cyan" instead of "blue" for easy noticing. --- capa/render/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/capa/render/utils.py b/capa/render/utils.py index c65b705b..20a817d7 100644 --- a/capa/render/utils.py +++ b/capa/render/utils.py @@ -16,7 +16,7 @@ import capa.render.result_document as rd def bold(s: str) -> str: """draw attention to the given string""" - return termcolor.colored(s, "blue") + return termcolor.colored(s, "cyan") def bold2(s: str) -> str: From cd2ef15a8a37dbec1459ab4c9621186016a74027 Mon Sep 17 00:00:00 2001 From: AG <98327736+ggold7046@users.noreply.github.com> Date: Tue, 28 Mar 2023 01:11:23 +0530 Subject: [PATCH 2/2] Update CHANGELOG.md Update changelog to reflect changes introduced in pull request #1399 --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a92a5a9..2d4a887d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ - extractor: add Binary Ninja feature extractor @xusheng6 - new cli flag `--os` to override auto-detected operating system for a sample @captainGeech42 +- Change colour/highlight to "cyan" instead of "blue" for easy noticing.#1384 @ggold7046 ### Breaking Changes