diff --git a/Appcasts/netnewswire-beta.xml b/Appcasts/netnewswire-beta.xml index 42cd32a91..bfbb53867 100755 --- a/Appcasts/netnewswire-beta.xml +++ b/Appcasts/netnewswire-beta.xml @@ -6,6 +6,19 @@ Most recent NetNewsWire changes with links to updates. en + + NetNewsWire 5.0d6 + Supports Mojave dark mode in the detail view, which should complete dark mode support.

+

Sidebar: feed and folder names can be edited inline.

+ + ]]>
+ Mon, 10 Sep 2018 13:15:00 -0800 + + 10.13 +
+ NetNewsWire 5.0d5 CFBundlePackageType APPL CFBundleShortVersionString - 5.0d5 + 5.0d6 CFBundleURLTypes diff --git a/NetNewsWire/MainWindow/Timeline/Cell/UnreadIndicatorView.swift b/NetNewsWire/MainWindow/Timeline/Cell/UnreadIndicatorView.swift index 99cd00253..8697d5ca9 100644 --- a/NetNewsWire/MainWindow/Timeline/Cell/UnreadIndicatorView.swift +++ b/NetNewsWire/MainWindow/Timeline/Cell/UnreadIndicatorView.swift @@ -38,7 +38,7 @@ class UnreadIndicatorView: NSView { override func draw(_ dirtyRect: NSRect) { if #available(OSX 10.14, *) { - let color = isEmphasized && isSelected ? NSColor.white : NSColor.controlAccentColor + let color = isEmphasized && isSelected ? NSColor.white : NSColor.controlAccent color.setFill() } else { let color = isEmphasized && isSelected ? NSColor.white : NSColor.systemBlue