| Commit message (Collapse) | Author | Files | Lines | ||
|---|---|---|---|---|---|
| 2019-08-31 | Move prefdialog to own directory | Patrick Storz | 1 | -349/+0 | |
| 2018-11-08 | Clarify licenses | Max Gaukler | 1 | -1/+2 | |
| - add license headers to everything - convert a few files from public domain or LGPL2.1+ to GPL2+ - some archaeology to clarify which files are from which library | |||||
| 2018-10-22 | Remove 'document-private.h' where not needed plus some other header cleanup. | Tavmjong Bah | 1 | -1/+0 | |
| 2018-10-01 | Remove #include "config.h" wherever possible | Eduard Braun | 1 | -4/+0 | |
| 2018-06-19 | Run clang-tidy’s modernize-redundant-void-arg pass. | Emmanuel Gil Peyrot | 1 | -5/+5 | |
| 2018-06-18 | Run clang-tidy’s modernize-use-equals-default pass. | Emmanuel Gil Peyrot | 1 | -1/+1 | |
| This replaces empty constructors and destructors with the default keyword. | |||||
| 2018-06-18 | Run clang-tidy’s modernize-use-nullptr pass. | Emmanuel Gil Peyrot | 1 | -19/+19 | |
| This replaces all NULL or 0 with nullptr when assigned to or returned as a pointer. | |||||
| 2018-06-18 | Run clang-tidy’s modernize-use-override pass. | Emmanuel Gil Peyrot | 1 | -1/+1 | |
| This adds the override specifier on all methods which override a virtual method, whether they were already virtual or missing this specifier. | |||||
| 2018-05-04 | Revert "Fix include order with clang-tidy check llvm-include-order" | Marc Jeanmougin | 1 | -3/+3 | |
| This reverts commit bba4ff6672494fab59286b50f6c645ad62a47e60. | |||||
| 2018-04-29 | Fix include order with clang-tidy check llvm-include-order | Marc Jeanmougin | 1 | -3/+3 | |
| 2018-01-30 | Move classes derived from SPObject to own directory. | Tavmjong Bah | 1 | -1/+0 | |
| A lot of header clean-up. | |||||
| 2017-10-01 | Removed all GSList occurences in .h files | Marc Jeanmougin | 1 | -28/+8 | |
| 2017-04-28 | Fix regression introduced in r15634 | Eduard Braun | 1 | -2/+2 | |
| Fixed bugs: - https://launchpad.net/bugs/1686549 (bzr r15647) | |||||
| 2017-04-24 | Restore r14955 which was reverted in r15047 due to messed up merge | Eduard Braun | 1 | -1/+1 | |
| http://bazaar.launchpad.net/~inkscape.dev/inkscape/trunk/revision/14955 http://bazaar.launchpad.net/~inkscape.dev/inkscape/trunk/revision/15047 Fixed bugs: - https://launchpad.net/bugs/1669951 (bzr r15633) | |||||
| 2017-04-09 | Some code refactoring for consistency | Eduard Braun | 1 | -17/+17 | |
| (notably "gui_hidden" -> hidden", "guitext" -> "text", "desc" -> "description") (bzr r15633.1.3) | |||||
| 2017-04-09 | Remove unused field "scope" | Eduard Braun | 1 | -2/+1 | |
| (bzr r15633.1.2) | |||||
| 2017-04-09 | Remove unused field "gui_tip" | Eduard Braun | 1 | -2/+1 | |
| ("gui_description" does now what "gui_tip" was supposed to do) (bzr r15633.1.1) | |||||
| 2017-02-13 | Extensions: Work around gtk3 width/height calculation bug for long labels | Eduard Braun | 1 | -1/+1 | |
| Also use constants for most dimensions so they can easily be chaned in future. (bzr r15511) | |||||
| 2017-02-12 | Extensions: Make "indent" attribute a common attribute for all parameters ↵ | Eduard Braun | 1 | -17/+15 | |
| that behaves more consistent and predictable than before. - Every "Parameter" now has an "_indent" member variable (specifying the indentation level; set in "Parameter::make()", see parameter.cpp) - Indentation is achieved by using "set_margin_left()" on the parameter's widget. This fixes bug #1662035 (comment #4 contains some more details about this patch). - Specifying "indent" on a parameter will now work consistently for all parameters. Previously the "indent" attribute often had no effect at all, e.g. for notebooks but also for parameters with 'appearance="full"' which was reasonable in most cases but made the outcome of using this attribute often unpredictable and is unnecessarily restrictive. - Most visible change: "description"s always used an indentation level of at least one (even if no indentation was specified). For the sake of consistency this discrepancy was dropped. Previous appearance can easily be restored by setting 'indent="1"'. Fixed bugs: - https://launchpad.net/bugs/1662035 (bzr r15508) | |||||
| 2016-07-28 | extensions: Drop GTKMM2 fallbacks | Alex Valavanis | 1 | -7/+2 | |
| (bzr r15023.2.5) | |||||
| 2016-06-05 | Extensions: Fixes and improvements for "gui-text" parameter attribute | Eduard Braun | 1 | -1/+1 | |
| - "gui-text" was always translated (as opposed to only "_gui-text") - This made it impossible to have parameters without label (since the empty string returns the whole .po file header when translated), which caused an issue in restack extension - Added possibility to specify "msgctxt" for "gui-text" (bzr r14955) | |||||
| 2015-04-27 | Fix unnecessary inclusion of glibmm/threads.h. This can be resolved by ↵ | Alex Valavanis | 1 | -4/+0 | |
| ensuring that glibmm headers always preceed glib.h headers. Same applies with gtkmm/gtk+ etc (bzr r14064) | |||||
| 2015-03-02 | Extensions. Fix for Bug #1426684 (INX optiongroup does not trigger a refresh). | Nicolas Dufour | 1 | -17/+24 | |
| Fixed bugs: - https://launchpad.net/bugs/1426684 (bzr r13963) | |||||
| 2014-11-08 | fix potential nullptr deref. | Johan B. C. Engelen | 1 | -1/+1 | |
| (bzr r13685) | |||||
| 2013-06-06 | Added configure/ifdef guards to only bring in the needed #include if glibmm ↵ | Jon A. Cruz | 1 | -0/+2 | |
| has it. (bzr r12353) | |||||
| 2013-06-04 | Correct to compile against recent gtkmm, including updated macports ↵ | Jon A. Cruz | 1 | -0/+2 | |
| versions. Fixes bug #1179338. Fixed bugs: - https://launchpad.net/bugs/1179338 (bzr r12346.1.1) | |||||
| 2013-05-05 | Fix for 1171434 : trunk: INX <optiongroup> broken^ | John Smith | 1 | -3/+25 | |
| (bzr r12322) | |||||
| 2013-04-06 | fix bug where extension radiobutton parameters cannot be set from cmdline ↵ | Johan B. C. Engelen | 1 | -1/+1 | |
| (e.g. "--export-area-drawing" did not work) (bzr r12267) | |||||
| 2012-11-26 | Drop support for GTK+ < 2.24 | Alex Valavanis | 1 | -4/+0 | |
| Fixed bugs: - https://launchpad.net/bugs/1069024 (bzr r11907) | |||||
| 2012-07-05 | Drop GTK+ 2.20 support. | Alex Valavanis | 1 | -4/+0 | |
| Fixed bugs: - https://launchpad.net/bugs/1020494 (bzr r11529) | |||||
| 2012-04-28 | gtkmm-3.0 fixes for Gtk::Box and header inclusions | Alex Valavanis | 1 | -0/+8 | |
| (bzr r11304) | |||||
| 2012-02-26 | header cleaning | Alex Valavanis | 1 | -2/+2 | |
| (bzr r11017) | |||||
| 2012-02-12 | Cleaning up a few headers | Alex Valavanis | 1 | -0/+1 | |
| (bzr r10961) | |||||
| 2012-02-09 | Backward compat fix for Gtkmm 2.20 | Alex Valavanis | 1 | -0/+4 | |
| Fixed bugs: - https://launchpad.net/bugs/928520 (bzr r10956) | |||||
| 2012-02-08 | (cppcheck and janitorial tasks:) C-style casting to C++-style casting | Kris De Gussem | 1 | -1/+1 | |
| (bzr r10952) | |||||
| 2012-02-07 | Cleaning up my mess... backward compatibility and fix Windows build (hopefully) | Alex Valavanis | 1 | -0/+4 | |
| Fixed bugs: - https://launchpad.net/bugs/927992 (bzr r10947) | |||||
| 2012-02-06 | Extensions: replace deprecated gtkmm symbols | Alex Valavanis | 1 | -2/+2 | |
| (bzr r10943) | |||||
| 2012-02-06 | Get rid of gtkmm top-level header usage - not required by API | Alex Valavanis | 1 | -2/+1 | |
| (bzr r10940) | |||||
| 2012-01-03 | Janitorial tasks: get rid of deprecated repr wrapper functions | Kris De Gussem | 1 | -3/+3 | |
| (bzr r10830) | |||||
| 2012-01-03 | More deprecated GtkTooltips | Alex Valavanis | 1 | -6/+1 | |
| (bzr r10827) | |||||
| 2011-12-19 | Const correctness fixes that also correct bug #893146. | Jon A. Cruz | 1 | -42/+36 | |
| Fixed bugs: - https://launchpad.net/bugs/893146 (bzr r10783) | |||||
| 2011-08-06 | Extensions. New "indent" attribute to add an indent level to extension elements. | Nicolas Dufour | 1 | -14/+27 | |
| Filters. Adding the new "indent" attribute to parameters groups. (bzr r10529) | |||||
| 2010-10-09 | Extensions, i18n. Adding context to description, groupheader and radiobutton ↵ | Nicolas Dufour | 1 | -4/+14 | |
| extension parameters. (bzr r9821) | |||||
| 2009-08-06 | Revert recent refactoring changes by johnce because they break the build, ↵ | Maximilian Albert | 1 | -7/+7 | |
| which cannot be fixed easily. (bzr r8422) | |||||
| 2009-08-05 | SPDocument->Document | johnce | 1 | -7/+7 | |
| (bzr r8408) | |||||
| 2009-02-05 | Fixed small translation issue for extensions. | Marcin Floryan | 1 | -1/+2 | |
| (bzr r7233) | |||||
| 2008-10-27 | From trunk | Ted Gould | 1 | -6/+4 | |
| (bzr r6885) | |||||
| 2008-09-16 | Refactored preferences handling into a new version of | Krzysztof Kosi??ski | 1 | -5/+7 | |
| the Inkscape::Preferences class. Removed all use of prefs_get_string_attribute(), pref_path_get_nth_child() and create_pref() in favor of the new API. Replaced some "0 or 1" integer preferences with booleans. (bzr r6823) | |||||
| 2008-05-24 | Added an 'appearance' hint to .inx optiongroups to allow for dropdowns ↵ | Jon A. Cruz | 1 | -22/+84 | |
| instead of radio buttons. (bzr r5748) | |||||
| 2008-04-21 | r19076@shi: ted | 2008-04-21 15:42:45 -0700 | Ted Gould | 1 | -1/+1 | |
| Core of having a real namespace for Inkscape extensions. r19077@shi: ted | 2008-04-21 15:50:12 -0700 First layer of adding NS r19078@shi: ted | 2008-04-21 15:56:03 -0700 Whew, doing the rest of them. (bzr r5483) | |||||
