Merge pull request #749 from Wevah/article-status-readwrite

Make read/starred read/write via AppleScript
This commit is contained in:
Maurice Parker 2019-06-12 09:59:11 -05:00 committed by GitHub
commit 165adcefa0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 4 deletions

View File

@ -202,10 +202,10 @@
<property name="modified date" code="MDat" type="date" access="r" description="date the article was last modified">
<cocoa key="dateModified"/>
</property>
<property name="read" code="Read" type="boolean" access="r" description="has the article been read">
<property name="read" code="Read" type="boolean" access="rw" description="has the article been read">
<cocoa key="read"/>
</property>
<property name="starred" code="Star" type="boolean" access="r" description="has the article been marked with a star">
<property name="starred" code="Star" type="boolean" access="rw" description="has the article been marked with a star">
<cocoa key="starred"/>
</property>
<property name="deleted" code="Delt" type="boolean" access="r" description="has the article been deleted by the user">

View File

@ -107,12 +107,22 @@ class ScriptableArticle: NSObject, UniqueIdScriptingObject, ScriptingObjectConta
@objc(read)
var read:Bool {
return article.status.boolStatus(forKey:.read)
get {
return article.status.boolStatus(forKey:.read)
}
set {
markArticles([self.article], statusKey: .read, flag: newValue)
}
}
@objc(starred)
var starred:Bool {
return article.status.boolStatus(forKey:.starred)
get {
return article.status.boolStatus(forKey:.starred)
}
set {
markArticles([self.article], statusKey: .starred, flag: newValue)
}
}
@objc(deleted)