From 961f8cec5e76928e612723be0a2bbba34760e70c Mon Sep 17 00:00:00 2001 From: Sam Date: Thu, 20 Jun 2024 13:19:45 +0100 Subject: [PATCH 1/2] Update default thumbnail size and adjust config file - Change the default thumbnail size from index 7 to 3 in `thumb_sizes[]` array. --- config.def.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.def.h b/config.def.h index 5e0d03f..d491788 100644 --- a/config.def.h +++ b/config.def.h @@ -77,7 +77,7 @@ static const bool ALPHA_LAYER = false; static const int thumb_sizes[] = { 32, 64, 96, 128, 160, 256, 512, 800, 1024 }; /* thumbnail size at startup, index into thumb_sizes[]: */ -static const int THUMB_SIZE = 7; +static const int THUMB_SIZE = 3; #endif #ifdef INCLUDE_MAPPINGS_CONFIG From 64fc67397220a7749819a432befe9ec35ad9e388 Mon Sep 17 00:00:00 2001 From: Sam Date: Thu, 20 Jun 2024 13:26:38 +0100 Subject: [PATCH 2/2] Update default thumbnail size * Modify `config.def.h` to increase the initial thumbnail size from index 3 (96) to index 4 (128) in `thumb_sizes[]` array. --- config.def.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.def.h b/config.def.h index d491788..c09097d 100644 --- a/config.def.h +++ b/config.def.h @@ -77,7 +77,7 @@ static const bool ALPHA_LAYER = false; static const int thumb_sizes[] = { 32, 64, 96, 128, 160, 256, 512, 800, 1024 }; /* thumbnail size at startup, index into thumb_sizes[]: */ -static const int THUMB_SIZE = 3; +static const int THUMB_SIZE = 4; #endif #ifdef INCLUDE_MAPPINGS_CONFIG