diff --git a/resources/graphics/rssguard.ico b/resources/graphics/rssguard.ico index 1dbd74e77..41353f181 100644 Binary files a/resources/graphics/rssguard.ico and b/resources/graphics/rssguard.ico differ diff --git a/resources/graphics/rssguard.png b/resources/graphics/rssguard.png index 7cce76018..9ff1a62b5 100644 Binary files a/resources/graphics/rssguard.png and b/resources/graphics/rssguard.png differ diff --git a/resources/graphics/rssguard.psd b/resources/graphics/rssguard.psd deleted file mode 100644 index b4df7ef81..000000000 Binary files a/resources/graphics/rssguard.psd and /dev/null differ diff --git a/resources/graphics/rssguard_22.png b/resources/graphics/rssguard_22.png deleted file mode 100644 index 7722fcd88..000000000 Binary files a/resources/graphics/rssguard_22.png and /dev/null differ diff --git a/resources/graphics/rssguard_256.png b/resources/graphics/rssguard_256.png deleted file mode 100644 index 55dfb253a..000000000 Binary files a/resources/graphics/rssguard_256.png and /dev/null differ diff --git a/resources/graphics/rssguard_48.png b/resources/graphics/rssguard_48.png deleted file mode 100644 index 3a4ee310f..000000000 Binary files a/resources/graphics/rssguard_48.png and /dev/null differ diff --git a/resources/graphics/rssguard_512.png b/resources/graphics/rssguard_512.png deleted file mode 100644 index 9619fee6e..000000000 Binary files a/resources/graphics/rssguard_512.png and /dev/null differ diff --git a/resources/graphics/rssguard_64.png b/resources/graphics/rssguard_64.png deleted file mode 100644 index 99e3bab2b..000000000 Binary files a/resources/graphics/rssguard_64.png and /dev/null differ diff --git a/resources/graphics/rssguard_plain.png b/resources/graphics/rssguard_plain.png index d1c62ad67..350cc3a58 100644 Binary files a/resources/graphics/rssguard_plain.png and b/resources/graphics/rssguard_plain.png differ diff --git a/resources/text/CHANGELOG b/resources/text/CHANGELOG index 395424a1e..fef669dff 100755 --- a/resources/text/CHANGELOG +++ b/resources/text/CHANGELOG @@ -2,11 +2,12 @@ ————— Added: +▪ New icons (CC 3.0 BY) inspired by the work of Dave Gandy. ▪ "Cleanup database" action has now configurable shortcut. (issue #90) ▪ Fixed #76, now user can choose to "not show the dialog again" when opening hyperlink from message previewer. This only concerns the lite version of RSS Guard which uses simpler text component for message previewing. Changed: -▪ (Linux only) Primary user data/config storage is now undex $HOME/.config. XDG_CONFIG_HOME variable is respected. If old user data is detected, then old user data path is used. +▪ (Linux only) Primary user data/config storage is now undex $HOME/.config/RSS Guard. XDG_CONFIG_HOME variable is respected. If old user data is detected, then old user data path is used. Note that the location of cache is now changed too to $XDG_{CACHE,DATA}_HOME/RSS Guard. ▪ RSS Guard now uses "_" character as localization file names separator. (issue #75) ▪ Localizations are now placed in "translations" subfolder instead of "l10n" subfolder. (issue #75) diff --git a/src/gui/systemtrayicon.cpp b/src/gui/systemtrayicon.cpp index 852bc398f..2ba43fdd2 100755 --- a/src/gui/systemtrayicon.cpp +++ b/src/gui/systemtrayicon.cpp @@ -132,7 +132,7 @@ void SystemTrayIcon::setNumber(int number, bool any_new_message) { // FIXME: Here draw different background instead of different color of number. tray_painter.begin(&background); - tray_painter.setPen(any_new_message ? Qt::blue : Qt::black); + tray_painter.setPen(any_new_message ? Qt::black : Qt::black); tray_painter.setRenderHint(QPainter::SmoothPixmapTransform, true); tray_painter.setRenderHint(QPainter::TextAntialiasing, true);