summaryrefslogtreecommitdiffstats
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* update to trunkJabier Arraiza Cenoz2014-11-113-0/+211
|\ | | | | (bzr r13682.1.5)
| * Add totally unfinished XML/SPObject test suiteLiam P. White2014-11-113-0/+211
| | | | | | (bzr r13702)
* | Code cleanupJabier Arraiza Cenoz2014-11-111-3/+5
| | | | | | (bzr r13682.1.4)
* | added join modeJabier Arraiza Cenoz2014-11-101-32/+15
| | | | | | (bzr r13682.1.3)
* | update to trunkJabier Arraiza Cenoz2014-11-1033-750/+1080
|\| | | | | (bzr r13682.1.2)
| * Removed SP_USE/SP_IS_USE Gtk-ish macros and cleaned affected files.Jon A. Cruz2014-11-1019-662/+921
| | | | | | (bzr r13700)
| * Fix 32-bit build break.Jon A. Cruz2014-11-101-1/+1
| | | | | | (bzr r13699)
| * Fix use-after-free crashLiam P. White2014-11-101-0/+2
| | | | | | (bzr r13698)
| * fix a bug pointed by su_v in fillet chamfer dialog, about unitsJabier Arraiza Cenoz2014-11-096-20/+38
| | | | | | (bzr r13697)
| * Add special rotation solution to optimized transforms, found by JohanLiam P. White2014-11-092-12/+13
| | | | | | (bzr r13691)
| * Fix bug in previous commit. Add test against itLiam P. White2014-11-092-3/+4
| | | | | | (bzr r13690)
| * Add specialized transformsLiam P. White2014-11-092-59/+100
| | | | | | | | | | | | Fixed bugs: - https://launchpad.net/bugs/1207502 (bzr r13688)
| * export dialog, small code cleanup, should be a noop. (check if pointer is ↵Johan B. C. Engelen2014-11-081-1/+1
| | | | | | | | | | nullptr, instead of checking the pre-condition for newing into the pointer) (bzr r13687)
| * powerstroke: enable unset fill fallback when style is nullptr. fixes nullptr ↵Johan B. C. Engelen2014-11-081-1/+1
| | | | | | | | | | deref. (bzr r13686)
| * fix potential nullptr deref.Johan B. C. Engelen2014-11-081-1/+1
| | | | | | (bzr r13685)
| * sp-filter: fix memory leak when trying to set a duplicate name for an image.Johan B. C. Engelen2014-11-081-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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; } (bzr r13684)
| * fix missing assignment to variable.Johan B. C. Engelen2014-11-081-0/+4
| | | | | | (bzr r13683)
* | adding blending supportJabier Arraiza Cenoz2014-11-103-16/+93
|/ | | (bzr r13682.1.1)
* Update style cxxtests.Tavmjong Bah2014-11-081-14/+14
| | | (bzr r13681)
* Black list some properties that shouldn't appear in default styles.Tavmjong Bah2014-11-084-2/+44
| | | (bzr r13679)
* fixed typo in src/ui/dialog/Makefile_insert -- dialpg to dialogRyan Lerch2014-11-071-1/+1
| | | (bzr r13675)
* Doc comment cleanup.Jon A. Cruz2014-11-072-110/+141
| | | (bzr r13674)
* Fixing typos found by Firas Hanife.Nicolas Dufour2014-11-051-1/+1
| | | (bzr r13673)
* Refactor to remove references to Desktop/Ui in Effect, bspline and ↵Jabier Arraiza Cenoz2014-11-059-219/+106
| | | | | | | | fillet-chamfer. Also fixed the selected node problem in units not px. Also fixed two var to not allow NULL pointed by Johan Engelen. (bzr r13672)
* i18n. Fix for bug #1389509 (typos in trunk-r13669).Masato Hashimoto2014-11-052-2/+2
| | | (bzr r13670)
* Remove unused variable and put well a constantJabier Arraiza Cenoz2014-11-031-4/+1
| | | (bzr r13669)
* Update wrong variable name and apply the same way to select nodes to ↵Jabier Arraiza Cenoz2014-11-034-25/+25
| | | | | fillet/chamfer and BSpline, still the boring bug -ignore apply only to selected nodes- when document not in 'px' (bzr r13668)
* A bit remove of unnecesary codeJabier Arraiza Cenoz2014-11-031-9/+3
| | | (bzr r13667)
* Added a extra layer of roughen pointed by Ivan LouetteJabier Arraiza Cenoz2014-11-032-2/+24
| | | (bzr r13666)
* Update fillet/chamfer to allow subdivisions in chamfer mode. Jabier Arraiza Cenoz2014-11-036-47/+69
| | | | | | Still happends bug affecting only selected nodes in document:units diferent than "px". I think the problem is node->position() send me a bad data if document units not px. (bzr r13665)
* update svg-length-test.h from 90 to 96 dpiAlvin Penner2014-11-032-10/+10
| | | (bzr r13664)
* Fix a bug pointed by Ivan Louette about strage fixed angle displazementsJabier Arraiza Cenoz2014-11-031-1/+3
| | | (bzr r13663)
* default export dpi = 96Alvin Penner2014-11-021-4/+4
| | | (bzr r13661)
* change default pdf import resolution to 96 dpiAlvin Penner2014-11-024-7/+7
| | | (bzr r13660)
* Correct check-for-layer that should have been check-for-group. Fixes bug ↵Jon A. Cruz2014-11-021-1/+1
| | | | | | | | #1388297. Fixed bugs: - https://launchpad.net/bugs/1388297 (bzr r13658)
* Warning cleanup.Jon A. Cruz2014-11-026-29/+26
| | | (bzr r13657)
* Change calls to desktop with SP_ACTIVE_DESKTOPJabier Arraiza Cenoz2014-11-026-15/+14
| | | (bzr r13656)
* Fix a bug in perspective/envelope LPE, rendering points -handles- outside ↵Jabier Arraiza Cenoz2014-11-011-2/+2
| | | | | | | bounding box It affect to Envelope mode, sometimes give undesirable results, now fixed. (bzr r13655)
* Warning cleanup.Jon A. Cruz2014-11-017-11/+11
| | | (bzr r13653)
* Fix a bug whith units pointed by suv in fillet-chamfer, affecting also to ↵Jabier Arraiza Cenoz2014-11-011-4/+7
| | | | | roughen, thanks to Ivan Louette for advert me (bzr r13651)
* Fixed 32-bit build break.Jon A. Cruz2014-11-011-1/+1
| | | (bzr r13650)
* Fix a bug whith units pointed by suvJabier Arraiza Cenoz2014-10-302-12/+9
| | | (bzr r13647)
* Re-enable warning commented out from pony2ink branchLiam P. White2014-10-301-3/+2
| | | (bzr r13644)
* Fix version numbersBryce Harrington2014-10-304-16/+16
| | | (bzr r13643)
* Open development for the 0.92 seriesBryce Harrington2014-10-304-16/+16
| | | (bzr r13642)
* Merge with trunk r13640Liam P. White2014-10-291-1/+1
|\ | | | | (bzr r13341.1.288)
| * i18n. Fixing untranslated strings.Nicolas Dufour2014-10-291-1/+1
| | | | | | (bzr r13640)
* | Update to trunk r13638Liam P. White2014-10-2520-802/+1092
|\| | | | | (bzr r13341.1.286)
| * Cleaned casts from sp-shape by fixing member type.Jon A. Cruz2014-10-253-67/+67
| | | | | | (bzr r13638)
| * Correct casting from wrong variable.Jon A. Cruz2014-10-241-1/+1
| | | | | | (bzr r13637)