4e03e059 | 28-Feb-2015 |
Danack |
Removed unused arguments. |
981ea520 | 28-Feb-2015 |
Danack |
Removed unused variables. |
a7b04be7 | 25-Feb-2015 |
Danack |
Travis has added PHP 7 nightly support, so adding it as a build target. |
1c7ad5bc | 25-Feb-2015 |
Danack |
Merge branch 'master' into phpseven * master: Added constant for RGBA channels. Some functions don't work correctly with CHANNEL_DEFAULT and having to write `\Imagick::CHANNEL_RED | \I
Merge branch 'master' into phpseven * master: Added constant for RGBA channels. Some functions don't work correctly with CHANNEL_DEFAULT and having to write `\Imagick::CHANNEL_RED | \Imagick::CHANNEL_GREEN | \Imagick::CHANNEL_BLUE |\Imagick::CHANNEL_ALPHA` is tedious.
show more ...
|
2cf07d09 | 25-Feb-2015 |
Danack |
Added constant for RGBA channels. Some functions don't work correctly with CHANNEL_DEFAULT and having to write `\Imagick::CHANNEL_RED | \Imagick::CHANNEL_GREEN | \Imagick::CHANNEL_BLUE |\Imagick::CHA
Added constant for RGBA channels. Some functions don't work correctly with CHANNEL_DEFAULT and having to write `\Imagick::CHANNEL_RED | \Imagick::CHANNEL_GREEN | \Imagick::CHANNEL_BLUE |\Imagick::CHANNEL_ALPHA` is tedious.
show more ...
|
4fecb7b8 | 24-Feb-2015 |
Danack |
Removed hard coded CFLAGS. Fixed progressMonitor not working in "7". |
1a660831 | 24-Feb-2015 |
Danack |
Enabled -Wall and fixed various small issues. Added test for progress monitor via callback, which is broken in 7. |
6b578ca8 | 24-Feb-2015 |
Danack |
Merge branch 'master' into phpseven * master: Fixed kernel debug info.
|
a187331d | 24-Feb-2015 |
Danack |
Fixed kernel debug info. |
9aed279b | 24-Feb-2015 |
Danack |
Use correct free and offset handlers for PHP "7". |
e6a311d1 | 24-Feb-2015 |
Danack |
Merge branch 'master' into phpseven * master: Fixed parameter parsing. This is actually a 1bit difference. Moved setting CFLAGS out of travis script, to allow it to be more flexi
Merge branch 'master' into phpseven * master: Fixed parameter parsing. This is actually a 1bit difference. Moved setting CFLAGS out of travis script, to allow it to be more flexible and not forced onto a single line. Added PHP5.6 - only use strict compile options for 5.6 Enabled CFLAGS="-Wno-deprecated-declarations -Wdeclaration-after-statement -Werror" to prevent C89 errors. Conflicts: imagick.c imagick_class.c imagickkernel_class.c
show more ...
|
3ded0e1e | 24-Feb-2015 |
Danack |
Fixed parameter parsing. This is actually a 1bit difference. |
f3f0d778 | 23-Feb-2015 |
Danack |
Moved setting CFLAGS out of travis script, to allow it to be more flexible and not forced onto a single line. |
7396d2e5 | 23-Feb-2015 |
Danack |
Added PHP5.6 - only use strict compile options for 5.6 |
7ba42ae3 | 23-Feb-2015 |
Danack |
Enabled CFLAGS="-Wno-deprecated-declarations -Wdeclaration-after-statement -Werror" to prevent C89 errors. |
357db856 | 22-Feb-2015 |
Danack |
Added -Wdeclaration-after-statement to CFLAGS for travis, to catch bad placement of variables. Fixed a bad placement of a variable. |
0c9c8e88 | 22-Feb-2015 |
Danack |
Fixed regression. |
953abb3f | 22-Feb-2015 |
Danack |
Disable test for versions unavailable. |
23e65439 | 22-Feb-2015 |
Danack |
Fixed skip by version check. |
88ef6f30 | 22-Feb-2015 |
Danack |
skip test for earlier versions of ImageMagick |
3002cc3a | 22-Feb-2015 |
Danack |
Listed skip probe for fourier functon availability to package list. |
e8c0e6fb | 22-Feb-2015 |
Danack |
Fixed PHP7 regression. |
0aa0ebd1 | 22-Feb-2015 |
Danack |
Fixed incorrect iteration. |
434a1428 | 22-Feb-2015 |
Danack |
Merge branch 'master' into phpseven * master: Fixed issue with 'out of order' matrix e.g. "$foo[1] = 1; $foo[0] = 0;" is read out by zend_hash_move_forward as 1, 0. Added ability
Merge branch 'master' into phpseven * master: Fixed issue with 'out of order' matrix e.g. "$foo[1] = 1; $foo[0] = 0;" is read out by zend_hash_move_forward as 1, 0. Added ability to set origin as 'optional' second parameter for ImagickKernel::fromMatrix function. Fixed wrong default channels. Made function name be more consistent ImagickKernel::fromMatrix and Imagick::getMatrix rather than ::fromArray and ::getValues. Fixed unitialized memory access and set x and y values. Conflicts: imagickkernel_class.c
show more ...
|
7a79d7c4 | 20-Feb-2015 |
Danack |
Fixed issue with 'out of order' matrix e.g. "$foo[1] = 1; $foo[0] = 0;" is read out by zend_hash_move_forward as 1, 0. |