Merge branch '8.5'

This commit is contained in:
John Cupitt 2017-08-02 11:05:39 +01:00
commit 302f4f2517
4 changed files with 9 additions and 2 deletions

View File

@ -12,6 +12,9 @@
- rename 'disc' as 'memory' and default off
- add vips_find_trim(), search for non-background areas
2/8/17 started 8.5.8
- fix transparency detection in merge, thanks Haida
9/6/17 started 8.5.7
- better smartcrop
- transform cmyk->rgb automatically on write if there's an embedded profile

View File

@ -2,7 +2,11 @@
# also update the version number in the m4 macros below
<<<<<<< HEAD
AC_INIT([vips], [8.6.0], [vipsip@jiscmail.ac.uk])
=======
AC_INIT([vips], [8.5.8], [vipsip@jiscmail.ac.uk])
>>>>>>> 8.5
# required for gobject-introspection
AC_PREREQ(2.62)

View File

@ -392,7 +392,7 @@ make_firstlast( MergeInfo *inf, Overlapping *ovlap, Rect *oreg )
int ii; \
\
for( ii = 0; ii < cb; ii++ ) \
if( tt[i] ) \
if( tt[i + ii] ) \
break; \
if( ii == cb ) \
(RESULT) = 1; \

View File

@ -335,7 +335,7 @@ make_firstlast( MergeInfo *inf, Overlapping *ovlap, Rect *oreg )
int ii; \
\
for( ii = 0; ii < cb; ii++ ) \
if( tt[i] ) \
if( tt[i + ii] ) \
break; \
if( ii == cb ) \
(RESULT) = 1; \