From 044e164c6a3d3088961930b5ba00a9eccada6f6f Mon Sep 17 00:00:00 2001
From: Pascal Thomet <pthomet@gmail.com>
Date: Tue, 12 Mar 2024 22:34:48 +0100
Subject: [PATCH] changelog

---
 Changelog.md | 20 ++++++++++++++------
 1 file changed, 14 insertions(+), 6 deletions(-)

diff --git a/Changelog.md b/Changelog.md
index 0270af1e..51166108 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -1,12 +1,20 @@
 Version numbers are synced between hello_imgui and imgui_bundle.
 
 # v1.5.0
-* Breaking change: add FontAwesome options with support for v4 and v6:
-  - See  e04af395c5a25e20861d06afd9ec0cddcccd7542
-  - the default icon font is now FontAwesome 4, but v6 includes many more icons.
-  - added runnerParams.runnerCallbacks.defaultIconFont, where you can select v6
-  - you need to include manually the icons:
-     #include "hello_imgui/icons_font_awesome_6.h" or #include "hello_imgui/icons_font_awesome_4.h" 
+
+#### Add FontAwesome options with support for FontAwesome 4 and FontAwesome 6:
+
+Breaking change: you need to include manually the icons: `#include "hello_imgui/icons_font_awesome_4.h"`
+The default icon font is FontAwesome 4 (for backward compatibility), but v6 includes many more icons
+
+In order to select Font Awesome 6, you need to set the following in your runnerParams:
+```cpp
+ runnerParams.runnerCallbacks.defaultIconFont = hello_imgui::IconFont::FontAwesome6;
+```
+and then include:
+```cpp
+#include "hello_imgui/icons_font_awesome_6.h"
+ ```
 
 # v1.4.2