From fe674040acb26ce61c5b6f7fcbdf22650091fe77 Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Tue, 10 Nov 2020 02:34:30 +0000 Subject: [PATCH 1/3] Update change notes and appcasts for 5.1.3 for Mac. --- Appcasts/netnewswire-beta.xml | 10 ++++++++++ Appcasts/netnewswire-release.xml | 11 +++++++++++ Technotes/ReleaseNotes-Mac.markdown | 5 +++++ 3 files changed, 26 insertions(+) diff --git a/Appcasts/netnewswire-beta.xml b/Appcasts/netnewswire-beta.xml index 7c5366da7..760d030ec 100755 --- a/Appcasts/netnewswire-beta.xml +++ b/Appcasts/netnewswire-beta.xml @@ -6,6 +6,16 @@ Most recent NetNewsWire changes with links to updates. en + + NetNewsWire 5.1.3 + Fixed a crashing bug that could happen with empty titles in the timeline.

+

Fixed a crashing bug that could happen when adding a feed.

+ ]]>
+ Mon, 09 Nov 2020 18:30:00 -0700 + + 10.15.0 +
NetNewsWire 5.1.3b1 diff --git a/Appcasts/netnewswire-release.xml b/Appcasts/netnewswire-release.xml index d29f71950..f6b883d92 100755 --- a/Appcasts/netnewswire-release.xml +++ b/Appcasts/netnewswire-release.xml @@ -6,6 +6,17 @@ Most recent NetNewsWire releases (not test builds). Well, we’re including test builds up until 5.0 ships, but after that it won’t be test builds. en + + NetNewsWire 5.1.3 + Fixed a crashing bug that could happen with empty titles in the timeline.

+

Fixed a crashing bug that could happen when adding a feed.

+ ]]>
+ Mon, 09 Nov 2020 18:30:00 -0700 + + 10.15.0 +
+ NetNewsWire 5.1.2 Date: Mon, 9 Nov 2020 19:12:52 -0800 Subject: [PATCH 2/3] Fix length in appcast. --- Appcasts/netnewswire-beta.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Appcasts/netnewswire-beta.xml b/Appcasts/netnewswire-beta.xml index 760d030ec..03b68174a 100755 --- a/Appcasts/netnewswire-beta.xml +++ b/Appcasts/netnewswire-beta.xml @@ -13,7 +13,7 @@

Fixed a crashing bug that could happen when adding a feed.

]]>
Mon, 09 Nov 2020 18:30:00 -0700 - + 10.15.0
From 3bb61ea6c60447cc3aa53ef25b6391261609833d Mon Sep 17 00:00:00 2001 From: Jonathan Bennett Date: Wed, 11 Nov 2020 21:31:10 -0500 Subject: [PATCH 3/3] Mark lastArticleFetchEndTime for article fetch Fixes #2557 --- .../Account/FeedWrangler/FeedWranglerAccountDelegate.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/Account/Sources/Account/FeedWrangler/FeedWranglerAccountDelegate.swift b/Account/Sources/Account/FeedWrangler/FeedWranglerAccountDelegate.swift index f9f07e377..8ab0614db 100644 --- a/Account/Sources/Account/FeedWrangler/FeedWranglerAccountDelegate.swift +++ b/Account/Sources/Account/FeedWrangler/FeedWranglerAccountDelegate.swift @@ -96,6 +96,7 @@ final class FeedWranglerAccountDelegate: AccountDelegate { switch result { case .success: DispatchQueue.main.async { + account.metadata.lastArticleFetchEndTime = Date() completion(.success(())) }