4bf96339af907a30f499f5fa08790abe0b3c5926 |
|
29-Apr-2016 |
tavmjong-free <tavmjong@free.fr> |
Backout last commit as it introduced subtle errors. |
07863d7022116b416c3903f7b5c4388be3ab7c22 |
|
29-Apr-2016 |
tavmjong-free <tavmjong@free.fr> |
SVG 2 allows 'href' without 'xlink:'. For now just read plain 'href'. |
2cd1c06bc00c120593ad812a47cffbfe339ad982 |
|
28-Oct-2015 |
Kris De Gussem <Kris.De.Gussem@hotmail.com> |
static code analysis |
171bd4f3b6a8cdaa7d2ae5bdf0774b6e93e7d40d |
|
05-May-2015 |
insaner <launchpad@insaner.com> |
show filter usage count |
aa9235c966804d9b8f8daa083a2d123d9d47d2bb |
|
27-Feb-2015 |
Marc Jeanmougin <mc@localhost.localdomain> |
corrected the casts (hopefully) |
6afde8674707ca6bde7835c5a6e4f182daf789af |
|
25-Feb-2015 |
Liam P. White <inkscapebrony@gmail.com> |
create SPObject factory |
1f6daa293cacc62d85a023412c70534a12f6e99a |
|
19-Feb-2015 |
Marc Jeanmougin <mc> |
added a set to the Selection |
0de73848362e95b081e5fa85f910d6481094b2b9 |
|
17-Feb-2015 |
Marc Jeanmougin <mc@localhost.localdomain> |
At first, I was thinking "I just have to go to the selection file, and change that GSList* with a std::list, then resolve the few problems"
So, i tried that.
And I will continue tomorrow, and the days after, on and on. |
7851b4b4bb161abbc3a3100f9f94ce9b7369a6e0 |
|
08-Nov-2014 |
Johan B. C. Engelen <j.b.c.engelen@alumnus.utwente.nl> |
sp-filter: fix memory leak when trying to set a duplicate name for an image.
This function could use more cleanup, but because I can't test now, I will write it down here:
int sp_filter_set_image_name(SPFilter *filter, gchar const *name) {
gchar *name_copy = strdup(name);
pair<gchar*,int> new_pair(name_copy, filter->_image_number_next++); // post-increment number_next
pair<map<gchar*,int,ltstr>::iterator,bool> ret = filter->_image_name->insert(new_pair);
if (ret.second == false) {
// The element is not inserted (because an element with the same key was already in the map)
// Therefore, free the memory allocated for the new entry:
free(name_copy);
}
return (*ret.first).second;
} |
437c1cd94c72c1a38636a923cd9c0a95189596ad |
|
18-Aug-2014 |
Liam P. White <inkscapebrony@gmail.com> |
Fix build (not pretty). |
a7f76d0e65f2b7a3957ba51bcc4aa25f07ac2d8c |
|
01-Mar-2014 |
tavmjong-free <tavmjong@free.fr> |
Use viewport when calculating filter primitive region when 'primitiveUnits' set to "userSpaceOnUse". |
f1cc811680c8327cf4888284c04d4b4e2a2d6446 |
|
28-Feb-2014 |
tavmjong-free <tavmjong@free.fr> |
Use viewport when calculating filter region when filterUnits set to "userSpaceOnUse", fixes #229246. |
a36e7dcbb0538abae15967717c90049a5225ff9c |
|
04-Jan-2014 |
JazzyNico <nicoduf@yahoo.fr> |
Fix for Bug #1265556 (plain svg export is broken for filter). |
4ab5a40fd84422a8fe0306b2ccd03d211f4bce81 |
|
07-Oct-2013 |
Kris <Kris.De.Gussem@hotmail.com> |
cppcheck |
bbbcfcca035affdf7a344b211a9f53039077c7f7 |
|
28-Sep-2013 |
buliabyak <> |
components of _image_name were g_strdup'ed so need to be g_free'd |
81092741e7a5b65552e8224f5cb152a618d54a48 |
|
31-Jul-2013 |
Markus Engel <markus.engel@tum.de> |
Cleaned up a bit; fixed struct vs. class forward declarations. |
35087bff7509c736a32e0b74fd9ff0834bde7b6b |
|
07-Apr-2013 |
Markus Engel <markus.engel@tum.de> |
Merge Object and subclasses. Merging of SP- and C-classes complete. |
c9ebeb3ded5075c514a3cfa23bc2619d70136493 |
|
07-Apr-2013 |
Markus Engel <markus.engel@tum.de> |
Merged FilterPrimitive and subclasses. |
2ee985b728402e20092ee821697f4c5117247290 |
|
06-Apr-2013 |
Markus Engel <markus.engel@tum.de> |
Merged more classes. |
980f39d0ea2b51d4b46d2ea552d9b8e02dbea8c2 |
|
02-Apr-2013 |
Markus Engel <markus.engel@tum.de> |
Registered classes with new factory. Hkern, Vkern and FeFuncX have to be rewritten, as they aren't real classes. |
a2e796b608034e2c62290378d713058b8b58ef8f |
|
02-Apr-2013 |
Markus Engel <markus.engel@tum.de> |
Added constructors to SP classes. |
54ad9fc9cd6da88557d0dcd6c17eb47c7bbb5551 |
|
01-Apr-2013 |
Markus Engel <markus.engel@tum.de> |
Prepared exchange of casting macros. |
51dc158adbe2c9d1df3c941cbf78b90944d1afc2 |
|
30-Mar-2013 |
Markus Engel <markus.engel@tum.de> |
Renamed virtual function names. |
883c5b2d5104c153708fdc513209d5694b489900 |
|
30-Mar-2013 |
Markus Engel <markus.engel@tum.de> |
Removed function pointers from SPObject and subclasses.
Added some missing virtual pads for classes that were hidden by preprocessor macros. |
266ee4d3d312ded676ec7b8a257775a67f0f4f1b |
|
30-Mar-2013 |
Markus Engel <markus.engel@tum.de> |
Replaced virtual function call to "build_renderer". |
c0b63558d39bdea91ac5c41ef0f9a88439e18888 |
|
30-Mar-2013 |
Markus Engel <markus.engel@tum.de> |
Added "virtual pads" to
- SPFeFuncNode
- SPFeDistantLight
- SPFeMergeNode
- SPFePointLight
- SPFeSpotLight
- SPFilter
- SPFont
- SPGuide
Changes in SPItem and SPNamedView. |
4c0ce26a3d50888ea326789170588360b784e935 |
|
14-Mar-2013 |
Markus Engel <markus.engel@tum.de> |
Various changes. |
7fcaa5a74fb9115a7110b16473821458f39afaa5 |
|
12-Feb-2013 |
Alex Valavanis <valavanisalex@gmail.com> |
A couple of forward declarations |
c185efb1dc7c60b149d98ee4eb21662cdd405df9 |
|
26-Jan-2013 |
Alex Valavanis <valavanisalex@gmail.com> |
More GObject boilerplate reduction |
9f6f7e74a1ded383518676e0ecb2ccc5caa73d25 |
|
22-Dec-2012 |
tavmjong-free <tavmjong@free.fr> |
Add support for color-interpolation-filters = linearRGB. |
9c2f0b322c3f754ddafb5dbf768c2379354380bc |
|
09-Apr-2012 |
Kris <Kris.De.Gussem@hotmail.com> |
cppcheck tells us: "scanf without field width limits can crash with huge input data" |
b6b6fb614b494412013ec0cde6f9cd147e8207f3 |
|
15-Feb-2012 |
Kris <Kris.De.Gussem@hotmail.com> |
cppcheck |
5cacbbec22b42a0480f396eb94bcfb5f746ac68a |
|
06-Feb-2012 |
Alex Valavanis <valavanisalex@gmail.com> |
Get rid of gtkmm top-level header usage - not required by API |
b6057c3a851bd7a51e11bf08222474d720be5119 |
|
04-Feb-2012 |
Kris <Kris.De.Gussem@hotmail.com> |
cppcheck tells us: scanf without field width limits can crash with huge input data. (gimpgrad)
Some additional scanf modifications |
ae7d21f6b12a24dc9efc4a83401efbf3133f7f27 |
|
29-Aug-2011 |
tavmjong-free <tavmjong@free.fr> |
Add minimal support for reading color-interpolation and color-interpolation-filters
properties (however, Inkscape assumes sRGB everywhere at the moment).
Change color-interpolation-filters from attribute to style property in
sp-filter.cpp as it is not allowed as an attribute in a <filter> (it is
only allowed as an attribute in filter primitives).
Added color-interpolation-filters:sRGB to style when new filter is created
in filter-chemistry.cpp. |
f68aabe351946119c80978525cd86564dd33e02f |
|
21-Feb-2011 |
Jon A. Cruz <jon@joncruz.org> |
Finished cleanup of outated SP_OBJECT_DOCUMENT C macro. |
a4030d5ca449e7e384bc699cd249ee704faaeab0 |
|
17-Nov-2010 |
Chris Morgan <chris.morganiser@gmail.com> |
Super duper mega (fun!) commit: replaced encoding=utf-8 with fileencoding=utf-8 in all 1074 Vim modelines.
The reason for this is that (a) setting the encoding isn't nice, and (b) Vim 7.3 (with modeline enabled) disallows it and pops up an error whenever you open any file with it ("invalid modeline").
Also corrected five deviant modestrings:
* src/ui/widget/dock.cpp and src/ui/widget/dock.h: missing colon at the end
* src/ui/dialog/tile.cpp: removed gratuitous second colon at the end
* src/helper/units-test.h: removed gratuitous space before a colon
* share/extensions/export_gimp_palette.py: missing textwidth=99
That's my geekiest commit yet. |
7059798b454ecd2386eb02769ad8d9c6d9d5f98e |
|
14-Jul-2010 |
Krzysztof Kosiński <tweenk.pl@gmail.com> |
Merge redundant *-fns.h into respective filter headers.
Move gaussian blur to filters directory.
Blend filter effect. |
094dc7c249a0253b9bbed67205e341a05b59eca7 |
|
12-Jul-2010 |
Abhishek Sharma Public <spyzerdotabhishek0at-signgmaildotcom> |
SPObject c++ification finalized along with the beginning of XML Privatisation tweaks |
ab17729e09d54ccfcb65645e6dae62a343e9c6b7 |
|
03-Jul-2010 |
Abhishek Sharma Public <spyzerdotabhishek0at-signgmaildotcom> |
another c++ification for sp-object.h/cpp and still in progress... |
2b635337710b879262acf4906dd85ee99b69f474 |
|
01-Jul-2010 |
Abhishek Sharma Public <spyzerdotabhishek0at-signgmaildotcom> |
C++fied SPDocument added |
f3e28e14b8c9e58bd65893d7b507e04e33679b80 |
|
15-Apr-2010 |
Jasper van de Gronde <jasper.vandegronde@gmail.com> |
filterUnits and primitiveUnits are now actually read/set, percentages for primitiveUnits are still problematic though |
09ba3247163582bf2e30e17c4c154aa259ce038a |
|
06-Aug-2009 |
cilix42 <cilix42@users.sourceforge.net> |
Revert recent refactoring changes by johnce because they break the build, which cannot be fixed easily. |
b45b3ca12c271745b18a142d10a6ac8efd9f79cc |
|
05-Aug-2009 |
johnce <johnce@users.sourceforge.net> |
SPDocument->Document |
ce31c2a2937dddb2eb4fd13b2cf8679882038d29 |
|
17-May-2009 |
kiirala <kiirala@users.sourceforge.net> |
Fixed several cases of bad SVG being written from filters |
7c4b60329b0211e45e6bb3dc2a10dcec11fc18ff |
|
23-Apr-2009 |
jaspervdg <jaspervdg@users.sourceforge.net> |
Evil work-around for Inkscape's lack of support for color-interpolation-filters (and color-interpolation). |
d9a7c806ee7f408ddb61ff4f233c9d96111ee2b5 |
|
02-Jan-2009 |
johanengelen <johanengelen@users.sourceforge.net> |
Move filters into their own namespace Inkscape::Filters (from NR::) |
43d06c7da14a174c6b2b41f9849b0cf098de4770 |
|
11-Jun-2008 |
mental <mental@users.sourceforge.net> |
plumb XML::Documents in everywhere |
4355211b8f2c460da655d4b71445e69495aecc49 |
|
09-Jun-2008 |
verbalshadow <verbalshadow@users.sourceforge.net> |
Fix include in sp-filter.cpp NR:filter issue |
edb914131cdbaafc595358490cde08faec1a3be4 |
|
02-Jun-2008 |
kiirala <kiirala@users.sourceforge.net> |
Fixed conflicting result image names inside filter effects (bug 196126) |
d5d05ac0115e3bf6f241f903598ca639fc4898cb |
|
05-Feb-2008 |
kiirala <kiirala@users.sourceforge.net> |
Patch by John Faith: fixed crash resulting from inproperly initialized std::map |
66632b492f9cd54e5667fd4e1fca8e457f59b282 |
|
31-Jan-2008 |
bryce <bryce@users.sourceforge.net> |
Applying fixes for gcc 4.3 build issues (closes LP: #169115) |
e7333a0a54c8d33b7397406dd76938aa430836d5 |
|
04-Nov-2007 |
joncruz <joncruz@users.sourceforge.net> |
Warning cleanup |
55a7b883cd44d9d59767e06d857d9d364f9e996c |
|
15-Aug-2007 |
kiirala <kiirala@users.sourceforge.net> |
Fixed blur not rotating with the object in some cases (bug 1762289) |
c6c387ac9d151b60ab64ec3c9d647bf31576735e |
|
21-Jul-2007 |
kiirala <kiirala@users.sourceforge.net> |
Added a missing link in making the filterRes attribute work |
6789e8158675229b9644f31befc27e683311fef6 |
|
02-Jul-2007 |
buliabyak <buliabyak@users.sourceforge.net> |
fix wrong modified signal handling: connecting was sigc but disconnecting was old g_signal |
368622010cf5cb2dda801c6a3ad939e28757a635 |
|
23-Jun-2007 |
kiirala <kiirala@users.sourceforge.net> |
Using the blur slider no longer destroys filters already applied to the object |
ef1b9366178b231dc7a25a228e5e0f62f2cb4192 |
|
30-May-2007 |
kiirala <kiirala@users.sourceforge.net> |
Fixed segfault when opening about screen |
1eb1d82bb52720d1379a4ed8f78c0e700251956d |
|
29-May-2007 |
kiirala <kiirala@users.sourceforge.net> |
Added support for in-parameter in filter primitives |
f727367dddbf050f0a7d33757e9290f571cbd492 |
|
21-May-2007 |
kiirala <kiirala@users.sourceforge.net> |
Refactoring work for filter effects renderer initialization |
1ed1764f573921b7f9d210a3fcca322234c36480 |
|
09-Apr-2007 |
mental <mental@users.sourceforge.net> |
fix crash temporarily until next refactoring phase |
7333a6d3d0e1b6b738726a859e5875d5d97b27d9 |
|
20-Mar-2007 |
mental <mental@users.sourceforge.net> |
plumb XML::Document parameter into duplication, courtesy of bryce |
91934be261c16d036521379306a74b0991720e67 |
|
19-Feb-2007 |
joncruz <joncruz@users.sourceforge.net> |
Cleaned up DOS line ends that had snuck in. |
2a67507e7a675c7c516ab207418d3a5c7bfe5989 |
|
18-Feb-2007 |
buliabyak <buliabyak@users.sourceforge.net> |
standardize converting from number to string and back |
cf17ac5d73e9734c09f5ea2434308a04314a8152 |
|
07-Oct-2006 |
buliabyak <buliabyak@users.sourceforge.net> |
whitespace (line ends) |
8c833a9abfd335f0305466ad7451c03c2f6b50dd |
|
14-Aug-2006 |
haa_rodrigues <haa_rodrigues@users.sourceforge.net> |
Work on filters. spFilterPrimitive structure added. Blur slider updated. Fixed sp-object-repr.cpp typos |
e7a2b63dd05c88adcac422aedc11fed284640bed |
|
27-Jul-2006 |
kiirala <kiirala@users.sourceforge.net> |
switch to sigc++ signals |
fc839ab79804b2e356876cd6e8a7b719752b9be3 |
|
30-Jun-2006 |
haa_rodrigues <haa_rodrigues@users.sourceforge.net> |
fixed win32 crash when working with filter tags |
6c1edd8c9f1d31e0b4ceafa26f44692e18ee09d2 |
|
29-Jun-2006 |
haa_rodrigues <haa_rodrigues@users.sourceforge.net> |
Fixed crash when adding filter attributes on XML tree. |
36a048753a41b465ae130b361fb3b68c605e3e86 |
|
21-Jun-2006 |
kiirala <kiirala@users.sourceforge.net> |
svg-filters branch merged back to head |