From a00ef6440f98b0ff1052e5cf75b89d8dd3a38330 Mon Sep 17 00:00:00 2001 From: supahgreg Date: Sun, 5 Oct 2025 19:09:04 +0000 Subject: Add initial content (with issues). --- Sorting.md | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 Sorting.md (limited to 'Sorting.md') diff --git a/Sorting.md b/Sorting.md new file mode 100644 index 0000000..67d34d4 --- /dev/null +++ b/Sorting.md @@ -0,0 +1,54 @@ +# Sorting + +Tiny Tiny RSS provides four options for how articles appear within a +selected feed: `Default`, `Newest`, `Oldest`, `Title`. + +!!! notice + + 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](Scoring.md). +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. 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. -- cgit v1.2.3-54-g00ecf