diff --git a/Technotes/ReleaseNotes-iOS.markdown b/Technotes/ReleaseNotes-iOS.markdown index d17fe9b43..0054166eb 100644 --- a/Technotes/ReleaseNotes-iOS.markdown +++ b/Technotes/ReleaseNotes-iOS.markdown @@ -1,5 +1,23 @@ # iOS Release Notes +### 6.0 TestFlight build 603 - 16 May 2021 + +Feedly: handle Feedly API change with return value on deleting a folder +NewsBlur: sync no longer includes items marked as hidden on NewsBlur +FreshRSS: form for adding account now suggests endpoing URL +FreshRSS: improved the error message for when the API URL can’t be found +iCloud: retain existing feeds moved to a folder that doesn’t exist yet (sync ordering issue) +Renamed a Delete Account button to Remove Account +iCloud: skip displaying an error message on deleting a feed that doesn’t exist in iCloud +Preferences: Tweaked text explaining Feed Providers +Feeds list: context menu for smart feeds is back (regression fix) +Feeds list: all smart feeds remain visible despite Hide Read Feeds setting +Article view: fixed zoom issue on iPad on rotation +Article view: fixed bug where mark-read button on toolbar would flash on navigating to an unread article +Article view: made footnote detection more robust +Fixed regression on iPad where timeline and article wouldn’t update after the selected feed was deleted +Sharing: handle feeds where the URL has unencoded space characters (why a feed would do that is beyond our ken) + ### 6.0 TestFlight build 602 - 21 April 2021 Inoreader: don’t call it so often, so we don’t go over the API limits diff --git a/iOS/Settings/AddExtensionPointViewController.swift b/iOS/Settings/AddExtensionPointViewController.swift index f0d31752f..249498dba 100644 --- a/iOS/Settings/AddExtensionPointViewController.swift +++ b/iOS/Settings/AddExtensionPointViewController.swift @@ -44,7 +44,7 @@ class AddExtensionPointViewController: UITableViewController, AddExtensionPointD } override func tableView(_ tableView: UITableView, titleForFooterInSection section: Int) -> String? { - return NSLocalizedString("Feed Providers allow you to subscribe to website URLs as if they were RSS feeds.", comment: "Feed Provider Footer") + return NSLocalizedString("Feed Providers allow you to subscribe to some pages as if they were RSS feeds.", comment: "Feed Provider Footer") } override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) { diff --git a/xcconfig/common/NetNewsWire_ios_target_common.xcconfig b/xcconfig/common/NetNewsWire_ios_target_common.xcconfig index 658143103..e643a8230 100644 --- a/xcconfig/common/NetNewsWire_ios_target_common.xcconfig +++ b/xcconfig/common/NetNewsWire_ios_target_common.xcconfig @@ -1,7 +1,7 @@ // High Level Settings common to both the iOS application and any extensions we bundle with it MARKETING_VERSION = 6.0 -CURRENT_PROJECT_VERSION = 602 +CURRENT_PROJECT_VERSION = 603 ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon