This commit is contained in:
Kim Woelders 2024-02-03 16:59:40 +01:00
parent 15ab46d03e
commit a860e34b19
2 changed files with 30 additions and 2 deletions

View File

@ -1,3 +1,31 @@
v1.12.2 - 2024-02-03
--------------------
Chema Gonzalez (3):
Y4M loader: fix support for unexpected framerates
Y4M loader: fix C option analysis
Y4M loader: add error messages on parsing errors
Kim Woelders (15):
test_save: Update crcs for jxl saver (libjxl 0.8.0)
x11_grab: Remove some obsolete code
Y4M loader: Guard some debug code properly
Consistently use #if IMLIB2_DEBUG (not #ifdef)
test_load_2: Check some more y4m files
Y4M loader: Avoid use of sscanf() in frame rate parsing
ANI loader: Avoid debug line when image does not have proper signature
PNG loader: Properly suppress messages from libpng
Y4M loader: Fix warning in non-debug build
Change formatting style
PNG saver: Avoid potential issues around setjmp/longjmp
JPG saver: Fix error path
TIFF loader: Properly suppress messages from libtiff
savers: Fix error returns
v1.12.2
NRK (2):
PNG saver: avoid double-free on write errors
Y4M loader: don't fail on newline
v1.12.1 - 2023-09-21
--------------------
Kim Woelders (12):

View File

@ -1,4 +1,4 @@
AC_INIT([imlib2],[1.12.1],[enlightenment-devel@lists.sourceforge.net])
AC_INIT([imlib2],[1.12.2],[enlightenment-devel@lists.sourceforge.net])
AC_CONFIG_SRCDIR(configure.ac)
AC_CONFIG_MACRO_DIR([m4])
AC_CANONICAL_BUILD
@ -21,7 +21,7 @@ define([AC_LIBTOOL_LANG_F77_CONFIG], [:])dnl
LT_INIT
VERSION_CUR=13
VERSION_REV=1
VERSION_REV=2
VERSION_AGE=12
lt_version=${VERSION_CUR}:${VERSION_REV}:${VERSION_AGE}
AC_SUBST(lt_version)