From c1b36b8f0942a8ec34f97f28c8c77c84adf0c2c4 Mon Sep 17 00:00:00 2001 From: NRK Date: Sat, 8 Jul 2023 07:05:57 +0000 Subject: add some upgrade comments (#457) these document improvements and/or removal of unnecessary code for when we will require a higher minimum version of Imlib2. all the comments have been prefixed with "UPGRADE: " for easy grepping. Reviewed-on: https://codeberg.org/nsxiv/nsxiv/pulls/457 Reviewed-by: explosion-mental --- thumbs.c | 1 + 1 file changed, 1 insertion(+) (limited to 'thumbs.c') diff --git a/thumbs.c b/thumbs.c index c1778b5..d5a6c6b 100644 --- a/thumbs.c +++ b/thumbs.c @@ -268,6 +268,7 @@ bool tns_load(tns_t *tns, int n, bool force, bool cache_only) char tmppath[] = "/tmp/nsxiv-XXXXXX"; Imlib_Image tmpim; + /* UPGRADE: Imlib2 v1.10.0: avoid tempfile and use imlib_load_image_mem() */ if ((ed = exif_data_new_from_file(file->path)) != NULL) { if (ed->data != NULL && ed->size > 0 && (tmpfd = mkstemp(tmppath)) >= 0) -- cgit v1.2.3-54-g00ecf