This commit is contained in:
Kim Woelders 2018-02-17 10:12:37 +01:00
parent b26c72281f
commit 4311d5f8ad
2 changed files with 37 additions and 5 deletions

View File

@ -1,11 +1,43 @@
***
*** Version 1.5.0 ***
***
Alexander Volkov (3):
put a check for shared memory inside __imlib_ShmGetXImage()
introduce __imlib_ShmDestroyXImage() instead of __imlib_ShmDetach()
Add support for MIT-SHM FD-passing
Kim Woelders (19):
XPM loader: Fix incorrect image invalidation.
Make some more functions static.
Introduce __imlib_LoadImageData()
Remove redundant CAST_IMAGE()
imlib2_grab: Always use imlib_create_scaled_image_from_drawable() to grab image
imlib_create_scaled_image_from_drawable(): speed up 1:1 case
imlib_create_scaled_image_from_drawable(): Drop shape handling if unshaped
Indent
Autofoo cosmetics
Strip trailing whitespace, cosmetics
Fix potential OOB memory access if border elements are negative
Fix potential OOB memory access if border sizes exceed image dimensions
Introduce IMLIB2_SHM_OPT to enable overriding/testing SHM modes
Add IMLIB2_XIMAGE_CACHE_COUNT to enable testing the ximage cache
Refactor the XImage cache
Add imlib_get_cache_used()
Expose XImage cache control functions
Drop -Waggregate-return
1.5.0.
***
*** Version 1.4.10 ***
***
Kim Woelders (2):
Kim Woelders (3):
PNM loader: Fix reading PNM bitmaps.
Fix missing break.
1.4.10.
Tobias Stoeckmann (3):
Avoid out of boundary operations while parsing xpm

View File

@ -1,7 +1,7 @@
# get rid of that stupid cache mechanism
rm -f config.cache
AC_INIT([imlib2], [1.4.10], [enlightenment-devel@lists.sourceforge.net])
AC_INIT([imlib2], [1.5.0], [enlightenment-devel@lists.sourceforge.net])
AC_CONFIG_SRCDIR(configure.ac)
AC_CONFIG_MACRO_DIR([m4])
AC_CANONICAL_BUILD
@ -22,9 +22,9 @@ define([AC_LIBTOOL_LANG_CXX_CONFIG], [:])dnl
define([AC_LIBTOOL_LANG_F77_CONFIG], [:])dnl
LT_INIT
VERSION_CUR=5
VERSION_REV=10
VERSION_AGE=4
VERSION_CUR=6
VERSION_REV=0
VERSION_AGE=5
lt_version=${VERSION_CUR}:${VERSION_REV}:${VERSION_AGE}
AC_SUBST(lt_version)