diff options
| author | Andre Weissflog <floooh@gmail.com> | 2021-04-10 17:26:59 +0200 |
|---|---|---|
| committer | Andre Weissflog <floooh@gmail.com> | 2021-04-10 17:26:59 +0200 |
| commit | 8af227f667f6834eb7e4d5c04db1bc9bb1c09a19 (patch) | |
| tree | 3776b7f6c368d9e15cb7ba1f94f8f2cc4fe4ab33 | |
| parent | 54a5375fb1ac1d3a31aa6dfed60423a34cac4fa1 (diff) | |
update sokol_app.h feature matrix and CHANGELOG
| -rw-r--r-- | CHANGELOG.md | 6 | ||||
| -rw-r--r-- | sokol_app.h | 4 |
2 files changed, 9 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 471d7005..b900f336 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ ## Updates +- **10-Apr-2021**: followup fixes from yesterday: custom icon support on macOS + has been added (since macOS has no regular window icons, the dock icon is + updated instead), and a bugfix in the internal helper which select the + best matching candidate image (this actually always selected the first + candidate image) + - **09-Apr-2021**: sokol_app.h now allows to programmatically set the window icon in the Win32, X11 and HTML5 backends. Search for "WINDOW ICON SUPPORT" in sokol_app.h for documentation, and see the new diff --git a/sokol_app.h b/sokol_app.h index 892fd305..411bd607 100644 --- a/sokol_app.h +++ b/sokol_app.h @@ -135,7 +135,9 @@ clipboard | YES | YES | TODO | --- | --- | TODO | --- | YES MSAA | YES | YES | YES | YES | YES | TODO | TODO | YES drag'n'drop | YES | YES | YES | --- | --- | TODO | TODO | YES - window icon | YES | --- | YES | --- | --- | TODO | TODO | YES + window icon | YES | YES(1)| YES | --- | --- | TODO | TODO | YES + + (1) macOS has no regular window icons, instead the dock icon is changed STEP BY STEP ============ |