aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md6
-rw-r--r--sokol_app.h4
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
============