summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKim Woelders <kim@woelders.dk>2018-02-17 10:12:37 +0100
committerKim Woelders <kim@woelders.dk>2018-02-22 10:37:26 +0100
commit4311d5f8ad4fdf3acaf60768f0142663cbe28200 (patch)
tree5d9286ad28c8298e1d116afe3a5c7c4de4911522
parentb26c72281f0e1f805eb79ba8a83268034355996c (diff)
downloadimlib2-1.5.0.tar.gz
1.5.0.v1.5.0
-rw-r--r--ChangeLog34
-rw-r--r--configure.ac8
2 files changed, 37 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 01fdd32..617be6d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
diff --git a/configure.ac b/configure.ac
index f69dc3c..e838447 100644
--- a/configure.ac
+++ b/configure.ac
@@ -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)