diff --git a/CHANGELOG.md b/CHANGELOG.md index 8324302554d..4af010239fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ - Minor: Updated the look of the Black Theme to be more in line with the other themes. (#4523) - Minor: Re-added leading @mentions from replies in chat logs. These were accidentally removed during the reply overhaul. (#4420) - Minor: Added a local backup of the Twitch Badges API in case the request fails. (#4463) +- Minor: Updated the MacOS Icon to match the look of other Mac Apps (#4577) - Bugfix: Fixed an issue where Chatterino could lose track of the sound device in certain scenarios. (#4549) - Bugfix: Fixed an issue where animated emotes would render on top of zero-width emotes. (#4314) - Bugfix: Fixed an issue where it was difficult to hover a zero-width emote. (#4314) @@ -25,6 +26,7 @@ - Bugfix: Fixed `/mods` displaying incorrectly when the channel has no mods. (#4546) - Bugfix: Fixed emote & badge tooltips not showing up when thumbnails were hidden. (#4509) - Bugfix: Fixed links with invalid IPv4 addresses being parsed. (#4576) +- Bugfix: Fixed Icon reverting to default when application is open. (#4577) - Dev: Disabling precompiled headers on Windows is now tested in CI. (#4472) - Dev: Themes are now stored as JSON files in `resources/themes`. (#4471, #4533) - Dev: Ignore unhandled BTTV user-events. (#4438) diff --git a/resources/chatterino.icns b/resources/chatterino.icns index 8b6482ee76f..b200b8f3e6b 100644 Binary files a/resources/chatterino.icns and b/resources/chatterino.icns differ diff --git a/src/RunGui.cpp b/src/RunGui.cpp index 1f08d1a6418..6d903bb452f 100644 --- a/src/RunGui.cpp +++ b/src/RunGui.cpp @@ -82,7 +82,9 @@ namespace { QApplication::setStyle(QStyleFactory::create("Fusion")); +#ifndef Q_OS_MAC QApplication::setWindowIcon(QIcon(":/icon.ico")); +#endif installCustomPalette(); }