summaryrefslogtreecommitdiff
path: root/Sorting.md
diff options
context:
space:
mode:
authorJustAMacUser <[email protected]>2019-03-15 21:58:52 +0000
committerJustAMacUser <[email protected]>2019-03-15 21:58:52 +0000
commit4694f195becd075060bbd47ab2a4b493a4354978 (patch)
tree096f1154b4f077015452b0eec1d0ea5d1b7a90b1 /Sorting.md
parentc188bfd1d29aa21d1a319f63c9cc3cb5218eea17 (diff)
Update page 'Sorting'
Diffstat (limited to 'Sorting.md')
-rw-r--r--Sorting.md58
1 files changed, 58 insertions, 0 deletions
diff --git a/Sorting.md b/Sorting.md
new file mode 100644
index 0000000..fe82f4e
--- /dev/null
+++ b/Sorting.md
@@ -0,0 +1,58 @@
+Tiny Tiny RSS provides four options for how articles appear within a selected feed:
+
+* Default
+* Newest
+* Oldest
+* Title
+
+Be aware that special feeds (e.g. *Starred articles*) have unique sorting when *Default* is selected, otherwise they behave as described below.
+
+*Descending score* means **higher numbers** are shown before lower numbers.
+
+*Descending date/time* means **more recent** is shown before less recent.
+
+*Ascending date/time* means **less recent** is shown before more recent.
+
+### Default
+
+This is the default (surprise!) and is recommended.
+
+1. Descending [score](https://git.tt-rss.org/fox/tt-rss/wiki/Scoring).
+2. Descending date/time the article was added into the Tiny Tiny RSS database.
+3. Descending date/time the feed's site states the article was published or changed.
+
+### Newest
+
+1. Descending date/time the feed's site states the article was published or changed.
+
+### Oldest
+
+1. Descending score.
+2. Ascending date/time the article was added into the Tiny Tiny RSS database.
+3. Ascending date/time the feed's site states the article was published or changed.
+
+### Title
+
+1. Alphabetically by the title of the article.
+2. Ascending date/time the article was added into the Tiny Tiny RSS database
+3. Ascending date/time the feed's site states the article was published or changed.
+
+## Special Feeds
+
+When *Default* is selected these special feeds behave as described below.
+
+### Starred articles
+
+1. Descending date/time when the article was starred.
+2. Descending date/time the article was added into the Tiny Tiny RSS database.
+3. Descending date/time the feed's site states the article was published or changed.
+
+### Published articles
+
+1. Descending date/time when the article was published.
+2. Descending date/time the article was added into the Tiny Tiny RSS database.
+3. Descending date/time the feed's site states the article was published or changed.
+
+### Recently read
+
+1. Descending date/time when the article was marked as read in Tiny Tiny RSS. \ No newline at end of file