The branch "master" has been updated. The following is a summary of the commits.
from: 20876d2816a0930eab0b7c1568a968498db46dfa 11158f6 Fix ctor. 5072e0a Fix setting color. a3f07c0 Fix setting text. 203bef9 Fix and simplify roundedRectangle(). b4e1a04 Fix and drastically simplify arc(). edeeb32 BFN 3c11991 [jan] Complete the backends' capabilities properties. e7b303f Catch all extensions. 32728d1 Fix test. f36082c Style, cleanup. 2e53d15 Make test more portable. Fonts aren't. caef996 Show error image if a test fails. 2302a85 [jan] Add 'ratio' parameter to Horde_Image_Effect_Imagick_LiquidResize. fcc20e5 [jan] Fix setting background color in SVG backend. b9b9e76 [jan] Fix transparent rectangles in SVG backend. d9452a4 Make these work with current Horde versions. 7d23981 Add test column for SVG. Summary: http://github.com/horde/horde/compare/20876d2816a0930eab0b7c1568a968498db46dfa...7d23981da0671370de41608edbe19608238a471b ----------------------------------------------------------------------- commit 11158f60016f5aac82dfc590e0a9e33890c44b22 Author: Jan Schneider <[email protected]> Date: Thu Mar 12 16:50:48 2015 +0100 Fix ctor. framework/Image/lib/Horde/Image/Svg.php | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) http://github.com/horde/horde/commit/11158f60016f5aac82dfc590e0a9e33890c44b22 ----------------------------------------------------------------------- commit 5072e0ab73064b35041fd3ff94aae7011056ad19 Author: Jan Schneider <[email protected]> Date: Thu Mar 12 16:51:08 2015 +0100 Fix setting color. framework/Image/lib/Horde/Image/Svg.php | 28 ++++++++++++++-------------- framework/Image/lib/Horde/Image/Swf.php | 2 +- 2 files changed, 15 insertions(+), 15 deletions(-) http://github.com/horde/horde/commit/5072e0ab73064b35041fd3ff94aae7011056ad19 ----------------------------------------------------------------------- commit a3f07c039c8e114140f27060fe060cd683e58ef9 Author: Jan Schneider <[email protected]> Date: Thu Mar 12 16:52:50 2015 +0100 Fix setting text. framework/Image/lib/Horde/Image/Swf.php | 8 ++------ 1 files changed, 2 insertions(+), 6 deletions(-) http://github.com/horde/horde/commit/a3f07c039c8e114140f27060fe060cd683e58ef9 ----------------------------------------------------------------------- commit 203bef9e33684e5c3bd541b6cc4266f2f11d1c9b Author: Jan Schneider <[email protected]> Date: Thu Mar 12 16:53:27 2015 +0100 Fix and simplify roundedRectangle(). framework/Image/lib/Horde/Image/Swf.php | 65 ++++++++----------------------- 1 files changed, 17 insertions(+), 48 deletions(-) http://github.com/horde/horde/commit/203bef9e33684e5c3bd541b6cc4266f2f11d1c9b ----------------------------------------------------------------------- commit b4e1a04e95e926d358005790ebc3aa5ecbb2182b Author: Jan Schneider <[email protected]> Date: Thu Mar 12 16:53:47 2015 +0100 Fix and drastically simplify arc(). framework/Image/lib/Horde/Image/Swf.php | 52 +++++-------------------------- 1 files changed, 8 insertions(+), 44 deletions(-) http://github.com/horde/horde/commit/b4e1a04e95e926d358005790ebc3aa5ecbb2182b ----------------------------------------------------------------------- commit edeeb32aa6a0f71df6346813c1dcec4c190838ae Author: Jan Schneider <[email protected]> Date: Thu Mar 12 16:54:27 2015 +0100 BFN framework/Image/package.xml | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) http://github.com/horde/horde/commit/edeeb32aa6a0f71df6346813c1dcec4c190838ae ----------------------------------------------------------------------- commit 3c11991d4bde0484bddb5cfc9d63d6b5c91d743e Author: Jan Schneider <[email protected]> Date: Thu Mar 12 16:59:39 2015 +0100 [jan] Complete the backends' capabilities properties. framework/Image/lib/Horde/Image/Gd.php | 28 ++++++++++++++------- framework/Image/lib/Horde/Image/Im.php | 22 ++++++++++++---- framework/Image/lib/Horde/Image/Imagick.php | 35 +++++++++++++++++--------- framework/Image/lib/Horde/Image/Svg.php | 12 ++++++++- framework/Image/lib/Horde/Image/Swf.php | 12 ++++++++- framework/Image/package.xml | 2 + 6 files changed, 82 insertions(+), 29 deletions(-) http://github.com/horde/horde/commit/3c11991d4bde0484bddb5cfc9d63d6b5c91d743e ----------------------------------------------------------------------- commit e7b303fedb869870919c24bf8d8137c7bbf6e55d Author: Jan Schneider <[email protected]> Date: Thu Mar 12 20:22:00 2015 +0100 Catch all extensions. What a great idea to not have a common base exception for exceptions thrown from the imagick extension. Now we have to catch each possible exception individually. framework/Image/lib/Horde/Image/Effect/Imagick/Border.php | 16 +- framework/Image/lib/Horde/Image/Effect/Imagick/CenterCrop.php | 12 +- framework/Image/lib/Horde/Image/Effect/Imagick/Composite.php | 36 +- framework/Image/lib/Horde/Image/Effect/Imagick/DropShadow.php | 44 +- framework/Image/lib/Horde/Image/Effect/Imagick/PhotoStack.php | 250 +++--- framework/Image/lib/Horde/Image/Effect/Imagick/PolaroidImage.php | 51 +- framework/Image/lib/Horde/Image/Effect/Imagick/RoundCorners.php | 92 +- framework/Image/lib/Horde/Image/Effect/Imagick/SmartCrop.php | 138 ++-- framework/Image/lib/Horde/Image/Imagick.php | 147 +++- framework/Image/package.xml | 2 + 10 files changed, 456 insertions(+), 332 deletions(-) http://github.com/horde/horde/commit/e7b303fedb869870919c24bf8d8137c7bbf6e55d ----------------------------------------------------------------------- commit 32728d19cf5efba0fe9d0f7cc080f4f348259c53 Author: Jan Schneider <[email protected]> Date: Thu Mar 12 20:23:56 2015 +0100 Fix test. framework/Image/test/im.php | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) http://github.com/horde/horde/commit/32728d19cf5efba0fe9d0f7cc080f4f348259c53 ----------------------------------------------------------------------- commit f36082c1e409c9cc500c6759521da78fdacb05a5 Author: Jan Schneider <[email protected]> Date: Thu Mar 12 20:24:12 2015 +0100 Style, cleanup. framework/Image/test/im.php | 7 +++---- 1 files changed, 3 insertions(+), 4 deletions(-) http://github.com/horde/horde/commit/f36082c1e409c9cc500c6759521da78fdacb05a5 ----------------------------------------------------------------------- commit 2e53d15959a9c96966ca9826965bb031822e288e Author: Jan Schneider <[email protected]> Date: Thu Mar 12 20:24:33 2015 +0100 Make test more portable. Fonts aren't. framework/Image/test/im.php | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) http://github.com/horde/horde/commit/2e53d15959a9c96966ca9826965bb031822e288e ----------------------------------------------------------------------- commit caef9963cce205fca376d6085a1b1615aa83a27f Author: Jan Schneider <[email protected]> Date: Thu Mar 12 20:25:04 2015 +0100 Show error image if a test fails. framework/Image/package.xml | 6 +- framework/Image/test/error.png | Bin 0 -> 440 bytes framework/Image/test/im.php | 899 ++++++++++++++++++++-------------------- 3 files changed, 457 insertions(+), 448 deletions(-) create mode 100644 framework/Image/test/error.png http://github.com/horde/horde/commit/caef9963cce205fca376d6085a1b1615aa83a27f ----------------------------------------------------------------------- commit 2302a85d54c59736ead6cff04871b883549b7151 Author: Jan Schneider <[email protected]> Date: Thu Mar 12 20:29:51 2015 +0100 [jan] Add 'ratio' parameter to Horde_Image_Effect_Imagick_LiquidResize. framework/Image/doc/Horde/Image/UPGRADING | 4 + framework/Image/lib/Horde/Image/Effect/Imagick/LiquidResize.php | 32 ++++--- framework/Image/package.xml | 2 + 3 files changed, 26 insertions(+), 12 deletions(-) http://github.com/horde/horde/commit/2302a85d54c59736ead6cff04871b883549b7151 ----------------------------------------------------------------------- commit fcc20e5580f7ef9f15aab6696b0ae6d71ddacbe7 Author: Jan Schneider <[email protected]> Date: Thu Mar 12 20:31:36 2015 +0100 [jan] Fix setting background color in SVG backend. framework/Image/lib/Horde/Image/Svg.php | 9 ++++++++- framework/Image/package.xml | 2 ++ 2 files changed, 10 insertions(+), 1 deletions(-) http://github.com/horde/horde/commit/fcc20e5580f7ef9f15aab6696b0ae6d71ddacbe7 ----------------------------------------------------------------------- commit b9b9e76171d0c9c0738b95e47474bf02e34c187d Author: Jan Schneider <[email protected]> Date: Thu Mar 12 20:32:05 2015 +0100 [jan] Fix transparent rectangles in SVG backend. framework/Image/lib/Horde/Image/Svg.php | 2 +- framework/Image/package.xml | 2 ++ 2 files changed, 3 insertions(+), 1 deletions(-) http://github.com/horde/horde/commit/b9b9e76171d0c9c0738b95e47474bf02e34c187d ----------------------------------------------------------------------- commit d9452a40bf336e3300ed1bc81979356659a1dd8e Author: Jan Schneider <[email protected]> Date: Thu Mar 12 20:32:49 2015 +0100 Make these work with current Horde versions. framework/Image/test/gd.php | 7 +++++-- framework/Image/test/svg.php | 11 +++++++++-- framework/Image/test/swf.php | 11 +++++++++-- 3 files changed, 23 insertions(+), 6 deletions(-) http://github.com/horde/horde/commit/d9452a40bf336e3300ed1bc81979356659a1dd8e ----------------------------------------------------------------------- commit 7d23981da0671370de41608edbe19608238a471b Author: Jan Schneider <[email protected]> Date: Thu Mar 12 20:33:45 2015 +0100 Add test column for SVG. framework/Image/test/runtest.php | 13 +++++++++++-- 1 files changed, 11 insertions(+), 2 deletions(-) http://github.com/horde/horde/commit/7d23981da0671370de41608edbe19608238a471b -- commits mailing list Frequently Asked Questions: http://wiki.horde.org/FAQ To unsubscribe, mail: [email protected]
