From d72e317896bcc2a675d21cec6f286e0b2730d77c Mon Sep 17 00:00:00 2001 From: Zero~Informatique Date: Thu, 10 Sep 2020 19:58:41 +0200 Subject: viewer: limit + show more tags github: resolves #184 --- example/config.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'example/config.json') diff --git a/example/config.json b/example/config.json index 6483257..cec359c 100644 --- a/example/config.json +++ b/example/config.json @@ -1,3 +1,4 @@ { - "galleryRoot": "out/" + "galleryRoot": "out/", + "initialTagDisplayLimit": 10, } -- cgit v1.2.3 From f89ed0bd94ea570d9e6533301783d13b13033db0 Mon Sep 17 00:00:00 2001 From: Zero~Informatique Date: Fri, 11 Sep 2020 20:10:56 +0200 Subject: viewer: PR #238 code review changes --- example/config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'example/config.json') diff --git a/example/config.json b/example/config.json index cec359c..5827d25 100644 --- a/example/config.json +++ b/example/config.json @@ -1,4 +1,4 @@ { "galleryRoot": "out/", - "initialTagDisplayLimit": 10, + "initialTagDisplayLimit": 10 } -- cgit v1.2.3 From eb636568643e892491fd925f7a92fc3feba6a67e Mon Sep 17 00:00:00 2001 From: Zero~Informatique Date: Fri, 11 Sep 2020 21:06:31 +0200 Subject: viewer: config.json url parameter + index.json configuration github: resolves #160 --- example/config.json | 1 + 1 file changed, 1 insertion(+) (limited to 'example/config.json') diff --git a/example/config.json b/example/config.json index 5827d25..b66bfcd 100644 --- a/example/config.json +++ b/example/config.json @@ -1,4 +1,5 @@ { "galleryRoot": "out/", + "galleryIndex": "index.json", "initialTagDisplayLimit": 10 } -- cgit v1.2.3 From 4cb4b6fb60aae4dcfb7fdb778c674ec315efde38 Mon Sep 17 00:00:00 2001 From: Zero~Informatique Date: Fri, 11 Sep 2020 21:37:07 +0200 Subject: viewer: PR #238 code review changes (3rd) --- example/config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'example/config.json') diff --git a/example/config.json b/example/config.json index b66bfcd..06efcbf 100644 --- a/example/config.json +++ b/example/config.json @@ -1,5 +1,5 @@ { "galleryRoot": "out/", - "galleryIndex": "index.json", + "galleryIndex": "index.json", "initialTagDisplayLimit": 10 } -- cgit v1.2.3 From 96ed5e6583a7f03d4ea7fa0512e66fffb656cc6e Mon Sep 17 00:00:00 2001 From: Zero~Informatique Date: Sat, 12 Sep 2020 06:34:58 +0200 Subject: viewer: make default sort order configurable github: resolves #239 --- example/config.json | 1 + 1 file changed, 1 insertion(+) (limited to 'example/config.json') diff --git a/example/config.json b/example/config.json index 06efcbf..892682f 100644 --- a/example/config.json +++ b/example/config.json @@ -1,5 +1,6 @@ { "galleryRoot": "out/", "galleryIndex": "index.json", + "initialSort": "date_desc", "initialTagDisplayLimit": 10 } -- cgit v1.2.3 From b909ec093591b50950c0de54b2005d471ca28116 Mon Sep 17 00:00:00 2001 From: Zero~Informatique Date: Sat, 12 Sep 2020 22:33:37 +0200 Subject: viewer: make default sort order configurable. code review improvements github: resolves #239 --- example/config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'example/config.json') diff --git a/example/config.json b/example/config.json index 892682f..cd08b25 100644 --- a/example/config.json +++ b/example/config.json @@ -1,6 +1,6 @@ { "galleryRoot": "out/", "galleryIndex": "index.json", - "initialSort": "date_desc", + "initialItemSort": "date_desc", "initialTagDisplayLimit": 10 } -- cgit v1.2.3 From 25a9af7212d757a53258990668620157c8ebe2e5 Mon Sep 17 00:00:00 2001 From: pacien Date: Fri, 25 Sep 2020 09:22:44 +0200 Subject: viewer/services/itemComparators: set default item sort order to date_asc It's the most reasonable default that doesn't break the order of sequence of photos. --- example/config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'example/config.json') diff --git a/example/config.json b/example/config.json index cd08b25..2454113 100644 --- a/example/config.json +++ b/example/config.json @@ -1,6 +1,6 @@ { "galleryRoot": "out/", "galleryIndex": "index.json", - "initialItemSort": "date_desc", + "initialItemSort": "date_asc", "initialTagDisplayLimit": 10 } -- cgit v1.2.3