| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Merged src/style.h from svg-paints-support branch | Tomasz Boczkowski | 2014-10-14 | 1 | -0/+11 |
| | | | | (bzr r13611.1.3) | ||||
| * | Merged src/style.h from svg-paints-support branch | Tomasz Boczkowski | 2014-10-14 | 1 | -0/+5 |
| | | | | (bzr r13611.1.2) | ||||
| * | Merged src/display folder from svg-paints-support branch | Tomasz Boczkowski | 2014-10-14 | 12 | -35/+415 |
| | | | | (bzr r13611.1.1) | ||||
| * | Fix crash with GTK+ 3.14 on launch | Bryce Harrington | 2014-10-14 | 1 | -1/+3 |
| | | | | | | | | | | | | | | Patch from Liam to check for undefined desktop during startup. ** (inkscape:57708): CRITICAL **: SPCanvas* sp_desktop_canvas(const SPDesktop*): assertion 'desktop != NULL' failed Fixes: https://bugs.launchpad.net/inkscape/+bug/1375085 Fixed bugs: - https://launchpad.net/bugs/1375085 (bzr r13611) | ||||
| * | 2geom: Re-fix IS_NAN and IS_FINITE for solaris | Bryce Harrington | 2014-10-14 | 1 | -2/+2 |
| | | | | | | This patch should go upstream to 2geom... (bzr r13610) | ||||
| * | Fixed: "Called C++ object pointer is null" | Tavmjong Bah | 2014-10-13 | 1 | -1/+6 |
| | | | | (bzr r13609) | ||||
| * | Fix multiple: "Called C++ object pointer is null" | Tavmjong Bah | 2014-10-13 | 1 | -0/+6 |
| | | | | (bzr r13608) | ||||
| * | Fix "Called C++ object pointer is null" | Tavmjong Bah | 2014-10-13 | 1 | -3/+12 |
| | | | | (bzr r13607) | ||||
| * | Fix: "Forming reference to null pointer" | Tavmjong Bah | 2014-10-13 | 1 | -1/+10 |
| | | | | (bzr r13606) | ||||
| * | DrawingItem: add NULL check (bug found by clang static analyzer) | Johan B. C. Engelen | 2014-10-12 | 1 | -1/+1 |
| | | | | (bzr r13603) | ||||
| * | path combine: add an assert to indicate that item list cannot be empty | Johan B. C. Engelen | 2014-10-12 | 1 | -0/+1 |
| | | | | (bzr r13602) | ||||
| * | object-snapper.cpp : make the logic easier to read (use else-clause as ↵ | Johan B. C. Engelen | 2014-10-12 | 1 | -4/+1 |
| | | | | | | default initialization value) (bzr r13601) | ||||
| * | noop: remove duplicate assignment in sp-lpe-item.cpp | Johan B. C. Engelen | 2014-10-12 | 1 | -2/+1 |
| | | | | (bzr r13600) | ||||
| * | Extension enumeration/dropdownbox parameter: fix potential NULL-deref crash ↵ | Johan B. C. Engelen | 2014-10-12 | 1 | -27/+28 |
| | | | | | | on xml == nullptr. (bzr r13599) | ||||
| * | Fix "Value stored to 'child' is never read" | Tavmjong Bah | 2014-10-12 | 1 | -1/+0 |
| | | | | (bzr r13598) | ||||
| * | Fix "Access to field 'image_out' results in a dereference of a null pointer" | Tavmjong Bah | 2014-10-12 | 1 | -10/+15 |
| | | | | (bzr r13597) | ||||
| * | Fix "Access to field 'image_out' results in a dereference of a null pointer" | Tavmjong Bah | 2014-10-12 | 1 | -10/+16 |
| | | | | (bzr r13596) | ||||
| * | Fix "Access to field 'image_out' results in a dereference of a null pointer" | Tavmjong Bah | 2014-10-12 | 1 | -10/+16 |
| | | | | (bzr r13595) | ||||
| * | undo whitespace edit. it's an external dependency, and let's assume that the ↵ | Johan B. C. Engelen | 2014-10-12 | 1 | -1040/+1019 |
| | | | | | | potential bug is not a bug (line 611, possibly uninitialized used of prev[i]) (bzr r13594) | ||||
| * | Mass fix whitespace (clang-format) before working on bug | Johan B. C. Engelen | 2014-10-12 | 1 | -1019/+1040 |
| | | | | (bzr r13593) | ||||
| * | LPEVonKoch: improve rev. 13589 by removing the else branch for complexity ↵ | Johan B. C. Engelen | 2014-10-12 | 1 | -4/+2 |
| | | | | | | calculation for better human readability (bzr r13591) | ||||
| * | maintain page size units when resizing page to drawing (Bug 1310787) | Alvin Penner | 2014-10-11 | 1 | -17/+16 |
| | | | | | | | Fixed bugs: - https://launchpad.net/bugs/1310787 (bzr r13590) | ||||
| * | LPEVonKoch : remove redundant assignment (is taken care of by the following ↵ | Johan B. C. Engelen | 2014-10-11 | 1 | -1/+1 |
| | | | | | | | | if-statement) Found by clang static analyzer (bzr r13589) | ||||
| * | Fix uninitialized variable use in svg-color.cpp. (additionally reduce scope ↵ | Johan B. C. Engelen | 2014-10-11 | 1 | -2/+2 |
| | | | | | | | | | | | | | | of variable) Bug found using clang static analyzer. The bug happens with color_out not being initialized upon definition; then 1. if(icc) == true 2. if(prof) == true 3. if(trans) == false 4. *r = color_out[0]; <-- un-init use Fixed by initializing color_out (with black). (bzr r13588) | ||||
| * | Fix "Argument with 'nonnull' attribute passed null" API bug in extension ↵ | Johan B. C. Engelen | 2014-10-11 | 1 | -5/+7 |
| | | | | | | | | | | | color parameter construction. Clang static analyzer has found an "Argument with 'nonnull' attribute passed null". The applied fix here checks if the defaulthex argument is nullptr before making the call. A default initialization value is added to the constructor in case defaulthex == nullptr. (with additional whitespace improvements) (bzr r13587) | ||||
| * | Apply cx, cy, etc. from template to newly created document window. | Tavmjong Bah | 2014-10-09 | 1 | -1/+5 |
| | | | | (bzr r13586) | ||||
| * | Allow <sodipodi:namedview> attributes to be set by scripts. | Tavmjong Bah | 2014-10-09 | 1 | -62/+82 |
| | | | | (bzr r13583) | ||||
| * | Add comment. | Tavmjong Bah | 2014-10-09 | 1 | -0/+1 |
| | | | | (bzr r13582) | ||||
| * | avoid round-off error when calculating viewbox transform c2p (Bug 1374614 ↵ | Alvin Penner | 2014-10-08 | 1 | -10/+10 |
| | | | | | | | | | and Bug 1235279) Fixed bugs: - https://launchpad.net/bugs/1374614 (bzr r13581) | ||||
| * | Remove unused functions. | Tavmjong Bah | 2014-10-05 | 2 | -155/+0 |
| | | | | (bzr r13580) | ||||
| * | More direct way of finding font-family in SPText::description. | Tavmjong Bah | 2014-10-05 | 1 | -16/+4 |
| | | | | (bzr r13579) | ||||
| * | modify scaling procedure for uniform scaling of flowed text (Bug 1278561) | Alvin Penner | 2014-10-03 | 2 | -2/+17 |
| | | | | | | | Fixed bugs: - https://launchpad.net/bugs/1278561 (bzr r13578) | ||||
| * | Work-around for Pango 1.36.7 which introduced 'Semi-Light' font weight, | Tavmjong Bah | 2014-10-02 | 1 | -0/+32 |
| | | | | | | bug #1364937. (bzr r13577) | ||||
| * | i18n. Fix for Bug #380522 (strings that need to be fixed for translation). | Nicolas Dufour | 2014-10-02 | 11 | -14/+18 |
| | | | | | | | | | Translations. Inkscape.pot and French translation update. Fixed bugs: - https://launchpad.net/bugs/380522 (bzr r13576) | ||||
| * | Fixing inconsistencies in the PixelArt dialog. | Nicolas Dufour | 2014-10-02 | 1 | -2/+2 |
| | | | | (bzr r13575) | ||||
| * | Fix style string while searching for best face match. | Tavmjong Bah | 2014-10-02 | 1 | -2/+2 |
| | | | | | | Fix typo for 'ultra-condensed' face in fontspec_from_style(). (bzr r13574) | ||||
| * | Importing. Fix for Bug #1325822 (BMP images resolution not correctly imported). | Nicolas Dufour | 2014-10-01 | 1 | -0/+7 |
| | | | | | | | Fixed bugs: - https://launchpad.net/bugs/1325822 (bzr r13573) | ||||
| * | Fix for Bug #1358520 (show/hide other layers not properly recorded in undo ↵ | Nicolas Dufour | 2014-10-01 | 1 | -2/+2 |
| | | | | | | | | | history). Fixed bugs: - https://launchpad.net/bugs/1358520 (bzr r13572) | ||||
| * | Fix for bug #690255 (Rename te_IN.po to te.po). | Nicolas Dufour | 2014-10-01 | 1 | -2/+2 |
| | | | | | | | Fixed bugs: - https://launchpad.net/bugs/690255 (bzr r13571) | ||||
| * | Revert r13496 (regression -- needs more work) | Liam P. White | 2014-10-01 | 1 | -1/+1 |
| | | | | | | | Fixed bugs: - https://launchpad.net/bugs/1357805 (bzr r13570) | ||||
| * | Remove NRTypePosDef class and associated cruft. More direct CSS -> Pango ↵ | Tavmjong Bah | 2014-09-29 | 11 | -601/+130 |
| | | | | | | translation. (bzr r13569) | ||||
| * | Quick fix to unbreak build from last check in. | Tavmjong Bah | 2014-09-29 | 2 | -0/+5 |
| | | | | (bzr r13568) | ||||
| * | Conditionally add 'semilight' due to changes in Pango 1.36.6. Curse Behdad. | Tavmjong Bah | 2014-09-29 | 4 | -0/+16 |
| | | | | (bzr r13567) | ||||
| * | transform text in text-on-path the same regardless of whether optimized or ↵ | Alvin Penner | 2014-09-27 | 1 | -2/+4 |
| | | | | | | | | | preserved (Bug 1279534) Fixed bugs: - https://launchpad.net/bugs/1279534 (bzr r13566) | ||||
| * | Fix for #1334792. Correct inheritance for 'line-height' property. | Tavmjong Bah | 2014-09-23 | 3 | -3/+27 |
| | | | | (bzr r13564) | ||||
| * | Extensions. Fix for Bug #1372200 (Comment within <script> element in INX ↵ | Nicolas Dufour | 2014-09-23 | 1 | -2/+7 |
| | | | | | | | | | file triggers crash on launch). Fixed bugs: - https://launchpad.net/bugs/1372200 (bzr r13563) | ||||
| * | improved version of rev 13561, to allow transforming both clip and mask on ↵ | Alvin Penner | 2014-09-19 | 1 | -1/+9 |
| | | | | | | | | | the same group Fixed bugs: - https://launchpad.net/bugs/1287288 (bzr r13562) | ||||
| * | scale clip or mask upon unit change (Bug 1287288) | Alvin Penner | 2014-09-19 | 1 | -0/+12 |
| | | | | | | | Fixed bugs: - https://launchpad.net/bugs/1287288 (bzr r13561) | ||||
| * | Fix build for fink on OS X 10.9 by including unistd.h | Bryce Harrington | 2014-09-18 | 1 | -0/+1 |
| | | | | | | | | | Fixes: https://bugs.launchpad.net/inkscape/+bug/1340914 Fixed bugs: - https://launchpad.net/bugs/1340914 (bzr r13560) | ||||
| * | Always check result of sp_repr_read_mem for NULL | Bryce Harrington | 2014-09-14 | 3 | -2/+7 |
| | | | | | | | | | | | | | In cases where undefined or invalid XML is passed to sp_repr_read_mem(), it will indicate failure by returning NULL. All callers must check for this and handle the error condition accordingly. Fixes: lp: #1170248 Fixed bugs: - https://launchpad.net/bugs/1170248 (bzr r13556) | ||||
