Skip to content

Commit

Permalink
changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
pthom committed Mar 12, 2024
1 parent d09e221 commit 044e164
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down

0 comments on commit 044e164

Please sign in to comment.