From 1502b4af0cf9abe98296be7ec56b2c66ecb7a0ea Mon Sep 17 00:00:00 2001 From: John Cupitt Date: Sat, 18 Dec 2021 18:24:13 +0000 Subject: [PATCH 1/3] oop, dropped patch --- libvips/foreign/libnsgif/{ => patches}/default-frame-delay.patch | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename libvips/foreign/libnsgif/{ => patches}/default-frame-delay.patch (100%) diff --git a/libvips/foreign/libnsgif/default-frame-delay.patch b/libvips/foreign/libnsgif/patches/default-frame-delay.patch similarity index 100% rename from libvips/foreign/libnsgif/default-frame-delay.patch rename to libvips/foreign/libnsgif/patches/default-frame-delay.patch From b6ca9eeff3098f42e7e3626bbbe748e28a50dc7a Mon Sep 17 00:00:00 2001 From: Aaron Date: Tue, 21 Dec 2021 10:43:48 +0100 Subject: [PATCH 2/3] dzsave.c: Remove trailing comma from IIIFv3 folder names (#2590) Fixes #2589. Signed-off-by: Aaron --- libvips/foreign/dzsave.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libvips/foreign/dzsave.c b/libvips/foreign/dzsave.c index 8f3f4b35..d89c0988 100644 --- a/libvips/foreign/dzsave.c +++ b/libvips/foreign/dzsave.c @@ -89,6 +89,8 @@ * - better IIIF tile naming * 15/10/21 martimpassos * - add IIIF3 layout + * 21/12/21 whalehub + * - remove trailing comma from IIIFv3 folder names */ /* @@ -1486,7 +1488,7 @@ tile_name( Layer *layer, int x, int y ) int ysize = VIPS_MIN( dz->tile_size, layer->height - y * dz->tile_size ); - vips_snprintf( dirname2, VIPS_PATH_MAX, "%d,%d,", + vips_snprintf( dirname2, VIPS_PATH_MAX, "%d,%d", xsize, ysize ); } else { From 6020d25be48e60bdb51100704bb0247882f4190f Mon Sep 17 00:00:00 2001 From: John Cupitt Date: Tue, 21 Dec 2021 09:47:23 +0000 Subject: [PATCH 3/3] update changelog for iiif change --- ChangeLog | 1 + 1 file changed, 1 insertion(+) diff --git a/ChangeLog b/ChangeLog index 51827126..85e15346 100644 --- a/ChangeLog +++ b/ChangeLog @@ -4,6 +4,7 @@ - fall back to magicksave for gif if cgif is not present [erik-frontify] - fix a crash with 0 length vectors - change default frame delay for GIFs from 1s to 0.1s +- remove stray trailing comma from iiif3 dirnames [whalehub] 21/11/21 started 8.12.1 - fix insert [chregu]