diff options
| author | Andre Weissflog <floooh@gmail.com> | 2021-06-21 20:03:17 +0200 |
|---|---|---|
| committer | Andre Weissflog <floooh@gmail.com> | 2021-06-21 20:03:17 +0200 |
| commit | 974d3cd7309d13bc579404418987722da79261ce (patch) | |
| tree | 3cb64436115e03043def216ddef5d0adafb8630b | |
| parent | 7d3565bb63abed48908bfda6355fe44355d96fe4 (diff) | |
mention sokol_gl.h in changelog
| -rw-r--r-- | CHANGELOG.md | 5 | ||||
| -rw-r--r-- | README.md | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index bc897a4f..6c60b1bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ ## Updates +- **21-Jul-2021**: A new utility header sokol_color.h has been added, which adds + sokol_gfx.h-compatible named color constants and a handful initial utility + functions. See the [header documentation](https://github.com/floooh/sokol/blob/master/util/sokol_color.h) + for details. Many thanks to Stuart Adams (@nyalloc) for contributing the header! + - **12-Apr-2021**: Minor new feature in sokol_app.h: mouse buttons are now also reported as modifier flags in most input events (similar to the Ctrl-, Alt-, Shift- and Super-key modifiers). This lets you quickly check @@ -6,7 +6,7 @@ Simple [STB-style](https://github.com/nothings/stb/blob/master/docs/stb_howto.txt) cross-platform libraries for C and C++, written in C. -[**See what's new**](https://github.com/floooh/sokol/blob/master/CHANGELOG.md) (**12-Apr-2021** mouse button modifiers in sokol_app.h input events) +[**See what's new**](https://github.com/floooh/sokol/blob/master/CHANGELOG.md) (**21-Jun-2021** new utility header sokol_color.h) ## Examples and Related Projects |