Merge branch 'ios-candidate'

This commit is contained in:
Maurice Parker 2022-11-13 19:36:32 -06:00
commit f6feb64289
4 changed files with 32 additions and 9 deletions

View File

@ -635,6 +635,10 @@ public final class Account: DisplayNameProvider, UnreadCountProvider, Container,
delegate.restoreFolder(for: self, folder: folder, completion: completion)
}
public func mark(articles: Set<Article>, statusKey: ArticleStatus.Key, flag: Bool, completion: @escaping (Result<Void, Error>) -> Void) {
delegate.markArticles(for: self, articles: articles, statusKey: statusKey, flag: flag, completion: completion)
}
func clearWebFeedMetadata(_ feed: WebFeed) {
webFeedMetadata[feed.url] = nil
}
@ -829,11 +833,6 @@ public final class Account: DisplayNameProvider, UnreadCountProvider, Container,
}
}
public func mark(articles: Set<Article>, statusKey: ArticleStatus.Key, flag: Bool, completion: @escaping (Result<Void, Error>) -> Void) {
delegate.markArticles(for: self, articles: articles, statusKey: statusKey, flag: flag, completion: completion)
}
/// Mark articleIDs statuses based on statusKey and flag.
/// Will create statuses in the database and in memory as needed. Sends a .StatusesDidChange notification.
func mark(articleIDs: Set<String>, statusKey: ArticleStatus.Key, flag: Bool, completion: DatabaseCompletionBlock? = nil) {

View File

@ -5,12 +5,12 @@
</head>
<body>
<outline text="Colossal" title="Colossal" type="rss" version="RSS" htmlUrl="https://www.thisiscolossal.com/" xmlUrl="https://www.thisiscolossal.com/feed/"/>
<outline text="Accidentally in Code" title="Accidentally in Code" type="rss" version="RSS" htmlUrl="https://cate.blog/" xmlUrl="https://cate.blog/feed/"/>
<outline text="Becky Hansmeyer" title="Becky Hansmeyer" type="rss" version="RSS" htmlUrl="https://beckyhansmeyer.com" xmlUrl="https://beckyhansmeyer.com/feed/"/>
<outline text="Maurice Parker" title="Maurice Parker" type="rss" version="RSS" htmlUrl="https://vincode.io/" xmlUrl="https://vincode.io/feed.xml"/>
<outline text="Maurice Parker" title="Maurice Parker" type="rss" version="RSS" htmlUrl="https://vincode.io/" xmlUrl="https://vincode.io/feed.xml"/>
<outline text="Daring Fireball" title="Daring Fireball" type="rss" version="RSS" htmlUrl="https://daringfireball.net/" xmlUrl="https://daringfireball.net/feeds/json"/>
<outline text="Manton Reece" title="Manton Reece" type="rss" version="RSS" htmlUrl="https://manton.org/" xmlUrl="https://www.manton.org/feed/json"/>
<outline text="inessential" title="inessential" type="rss" version="RSS" htmlUrl="https://inessential.com/" xmlUrl="https://inessential.com/feed.json"/>
<outline text="Julia Evans" title="Julia Evans" type="rss" version="RSS" htmlUrl="https://jvns.ca/" xmlUrl="https://jvns.ca/atom.xml"/>
<outline text="Jason Kottke" title="Jason Kottke" type="rss" version="RSS" htmlUrl="https://kottke.org/" xmlUrl="http://feeds.kottke.org/json"/>
<outline text="Six Colors" title="Six Colors" type="rss" version="RSS" htmlUrl="https://sixcolors.com/" xmlUrl="https://feedpress.me/sixcolors?type=xml"/>

View File

@ -1,6 +1,32 @@
# iOS Release Notes
### 6.1 Release build 6110 - 9 Nov 2022
Changes since 6.0.1…
Article themes. Several themes ship with the app, and you can create your own. You can change the theme in Preferences.
Fixed a bug that could prevent BazQux syncing when an article may not contain all the info we expect
Fixed a bug that could prevent Feedly syncing when marking a large number of articles as read
Disallow creation of iCloud account in the app if iCloud and iCloud Drive arent both enabled
Added links to iCloud Syncing Limitations & Solutions on iCloud Account Management UI
Copy URLs using repaired, rather than raw, feed links
Fixed bug showing quote tweets that only included an image
Video autoplay is now disallowed
Article view now supports RTL layout
Fixed a few crashing bugs
Fixed a layout bug that could happen on returning to the Feeds list
Fixed a bug where go-to-feed might not properly expand disclosure triangles
Prevented the Delete option from showing in the Edit menu on the Article View
Fixed Widget article icon lookup bug
### 6.1 TestFlight build 6109 - 31 Oct 2022
Enhanced Widget integration to make counts more accurate
Enhanced Widget integration to make make it more efficient and save on battery life
### 6.1 TestFlight build 6108 - 28 Oct 2022
Fixed a bug that could prevent BazQux syncing when an article may not contain all the info we expect
Fixed a bug that could prevent Feedly syncing when marking a large number of articles as read
Prevent Widget integration from running while in the background to remove some crashes

View File

@ -1,9 +1,7 @@
// High Level Settings common to both the iOS application and any extensions we bundle with it
MARKETING_VERSION = 6.1
CURRENT_PROJECT_VERSION = 6108
MARKETING_VERSION = 6.0.2
CURRENT_PROJECT_VERSION = 610
CURRENT_PROJECT_VERSION = 6110
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon