commit f4296d2b385fd7bf5b369a8ba249fb4c0fb87da8 Author: Federico Mena Quintero Date: Wed Mar 30 19:48:56 2016 -0600 RsvgFilterPrimitive: use a single destructor for most subclasses Instead of duplicating code to free the superclass all over the place, use a single function. Also, remove a bit of the 'upself' idiom - it's unreadable. rsvg-filter.c | 287 +++++++++++++++++++++++----------------------------------- 1 file changed, 111 insertions(+), 176 deletions(-) commit 76ad48b8210168869cedb1419b1e49dcf2e064a1 Author: Ron Hopper Date: Mon Feb 8 15:21:08 2016 -0500 RsvgFilterPrimitiveComponentTransfer: add destructor; fix memory leak https://bugzilla.gnome.org/show_bug.cgi?id=761728 rsvg-filter.c | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) commit 03c5bfcfee7736b1c29255f489053a0bd90ce714 Author: Federico Mena Quintero Date: Wed Feb 10 19:12:30 2016 -0600 s/propegate/propagate gdk-pixbuf-loader/io-svg.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) commit 5dc85eb2a13f92ba3be32669e7f6e9178b1d643c Author: Federico Mena Quintero Date: Wed Feb 10 19:05:40 2016 -0600 Bump version to 2.40.14 configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit fcbb915d8594a246cace478095a9124aa0df60f1 Author: Federico Mena Quintero Date: Wed Feb 10 19:00:37 2016 -0600 Update the Contributor Covenant to version 1.4 code_of_conduct.md | 80 +++++++++++++++++++++++++++++++++++------------------- 1 file changed, 52 insertions(+), 28 deletions(-) commit 6eabff9d11d9111a9565ae4cdeed841157308737 Author: Javier Jardón Date: Mon Feb 8 13:15:25 2016 +0000 autogen.sh: Replace deprecated gnome-autogen.sh with standard autotools See https://wiki.gnome.org/Projects/GnomeCommon/Migration autogen.sh | 61 +++++++++++++++++++++++++++++-------------------------------- 1 file changed, 29 insertions(+), 32 deletions(-) commit 7948f3b862a8c43c68de0951927e3a3402a580f9 Author: Federico Mena Quintero Date: Fri Jan 29 19:19:52 2016 -0600 Add a code of conduct, the Contributor Covenant 1.3.0 http://contributor-covenant.org README | 2 ++ code_of_conduct.md | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 52 insertions(+) commit d937c691678803ceda6be701587d997ccd03a1da Author: Benjamin Otte Date: Fri Jan 29 12:49:55 2016 +0100 Don't crash when filters don't exist We put a new surface on the stack if a filter existed by name but we didn't pop it if the name didn't resolve to a real filter. New test: crash/bug759084.svg https://bugzilla.gnome.org/show_bug.cgi?id=759084 rsvg-cairo-draw.c | 6 +++--- tests/fixtures/crash/bug759084.svg | 9 +++++++++ 2 files changed, 12 insertions(+), 3 deletions(-) commit 91e50fe393a25eeff7c5e4430d5666362bce0283 Author: Benjamin Otte Date: Thu Dec 10 22:59:30 2015 +0100 filter: Remove unused variables rsvg-filter.c | 30 ------------------------------ 1 file changed, 30 deletions(-) commit 2ae18d05e654b1130fa7397b316d270be1707450 Author: Chun-wei Fan Date: Thu Jan 21 18:13:54 2016 +0800 Visual Studio builds: Fix pre-Visual Studio 2012 builds A recent commit made use of the C99 function isnan(), which is not supported directly in pre-2013 Visual Studio. Earlier Visual Studio however does provide _isnan() which does what we will need, so add a fallback math.h in build/win32/vs9 that defines isnan() and includes the stock math.h, and make the projects include this math.h. This header is copied to the build/win32/vs[10|11] during 'make dist', as Visual Studio 2010 and 2012 will need this as well. build/win32/vs10/Makefile.am | 6 ++++- build/win32/vs10/rsvg-build-defines.props | 2 +- build/win32/vs11/Makefile.am | 6 ++++- build/win32/vs9/Makefile.am | 1 + build/win32/vs9/math.h | 39 ++++++++++++++++++++++++++++++ build/win32/vs9/rsvg-build-defines.vsprops | 2 +- 6 files changed, 52 insertions(+), 4 deletions(-)