From 9c146c8ae2a4cb1ec770d184605f311e0d2a571f Mon Sep 17 00:00:00 2001 From: j Date: Thu, 27 Jul 2023 16:05:03 +0200 Subject: [PATCH] most recent items first --- config.jsonc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/config.jsonc b/config.jsonc index 84e3f78..b9b9738 100644 --- a/config.jsonc +++ b/config.jsonc @@ -900,7 +900,7 @@ "collectionColumnWidth": {}, "collectionSelection": [], "collectionSort": [ - {"key": "title", "operator": "+"}, + {"key": "created", "operator": "-"}, {"key": "extension", "operator": "+"} ], "collectionView": "grid", @@ -961,7 +961,9 @@ "listColumns": ["title", "date", "location", "tag", "language", "duration"], "listColumnWidth": {}, "listSelection": [], - "listSort": [{"key": "title", "operator": "+"}], + "listSort": [ + {"key": "created", "operator": "-"} + ], "listView": "grid", "lists": {}, "locale": "en",