summaryrefslogtreecommitdiffstats
path: root/src/extension (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix typo.Tavmjong Bah2017-03-141-1/+1
| | | (bzr r15597)
* Attempt to fix build with dbus enabled.Tavmjong Bah2017-03-131-5/+1
| | | (bzr r15593)
* Fix Gtkmm deprecation warnings in VSD import dialogAlex Valavanis2017-03-111-14/+18
| | | (bzr r15586)
* Fix Gtkmm deprecation warnings in CDR import dialogAlex Valavanis2017-03-111-16/+21
| | | (bzr r15585)
* Use Gtkmm version test instead of Gtk+Alex Valavanis2017-03-111-1/+1
| | | (bzr r15584)
* Repair functionality broken by Alex Valvani's "Gtk+ 3 deprecation fixes"Eduard Braun2017-03-081-2/+5
| | | | | | | | | | | | (see in r15547 [1]) Gtk::Label::set_halign() is *not* the same as Gtk::Label::set_xalign() or the deprecated Gtk::Label::set_alignment() The former sets the alignment of the widget itself while the latter two set the alignment of the text within the widget's size allocation. Is it really more important to eradicate deprecations then to have working code? http://bazaar.launchpad.net/~inkscape.dev/inkscape/trunk/revision/15547 (bzr r15580)
* EMF/WFM export: Fix crash when selecting "Convert gradients to colored ↵Eduard Braun2017-03-062-6/+29
| | | | | | | | | | polygon series" The problem where calls of "sprintf()" to format SVG path data. Unfortunately depending on the locale set at this point via "setlocale()" the output could contain commas (,) instead of dots (.) as decimal spearator resulting in invalid path data. Fixed bugs: - https://launchpad.net/bugs/1549015 (bzr r15568)
* Fix ACLsEduard Braun2017-03-051-0/+0
| | | (bzr r15567)
* merge minor refactoringShlomi Fish2017-02-281-0/+36
|\ | | | | (bzr r15555)
| * Merged.Shlomi Fish2017-02-2332-222/+403
| |\ | | | | | | (bzr r15369.1.19)
| * \ Merged.Shlomi Fish2017-02-0610-16/+46
| |\ \ | | | | | | | | (bzr r15369.1.18)
| * \ \ Merged.Shlomi Fish2017-01-283-0/+21
| |\ \ \ | | | | | | | | | | (bzr r15369.1.17)
| * | | | Extract some common code into a routine.Shlomi Fish2017-01-041-0/+36
| | | | | | | | | | | | | | | (bzr r15369.1.8)
* | | | | Gtk+ 3 deprecation fixesAlex Valavanis2017-02-263-1/+9
| |_|_|/ |/| | | | | | | (bzr r15547)
* | | | [Bug #1664372] preset filter names inconsistent.suv-lp2017-02-182-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | Fixed bugs: - https://launchpad.net/bugs/1664372 (bzr r15532)
* | | | improve dot dash support in wmf exportmathog2017-02-171-1/+22
| | | | | | | | | | | | (bzr r15526)
* | | | resolve bug 1665421mathog2017-02-171-0/+10
| | | | | | | | | | | | (bzr r15525)
* | | | Extensions: Add 'appearance="url"' to desccription parameters.Eduard Braun2017-02-133-5/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It allows to create and add a clickable plain text link to extensions The description parameter's text is escaped and converted to a URL as-is preventing potential security issues The Scour extension shows a first example implementation (bzr r15519)
* | | | Extensions: Fix potential security issue with "description" parameters.Eduard Braun2017-02-131-5/+5
| | | | | | | | | | | | | | | | | | | | When using 'appearance="header"' arbitrary markup could be inlcuded (including URLs) (bzr r15518)
* | | | Extensions: Do not require name for pure UI elements (i.e. parameters that ↵Eduard Braun2017-02-131-2/+9
| | | | | | | | | | | | | | | | | | | | do not store a value and therefore do not need to have a name) (bzr r15515)
* | | | Extensions: Fix for old versions of gtkmmEduard Braun2017-02-131-1/+2
| | | | | | | | | | | | | | | | | | | | Use "Gtk::Misc::set_alignment()" as "Gtk::Label::set_xalign()" is only available since gtkmm 3.16 (bzr r15512)
* | | | Extensions: Work around gtk3 width/height calculation bug for long labelsEduard Braun2017-02-1310-12/+31
| | | | | | | | | | | | | | | | | | | | Also use constants for most dimensions so they can easily be chaned in future. (bzr r15511)
* | | | Extensions: Make "int" and "float" parameters specifying ↵Eduard Braun2017-02-132-2/+2
| | | | | | | | | | | | | | | | | | | | 'appearance="full"'expand in horizontal direction when the window is expanded (bzr r15510)
* | | | Extensions: Harmonize appearance and try to simplify layouting a bitEduard Braun2017-02-124-11/+23
| | | | | | | | | | | | (bzr r15509)
* | | | Extensions: Make "indent" attribute a common attribute for all parameters ↵Eduard Braun2017-02-1222-183/+276
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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)
* | | | Fix a memory leak introduced in r15421 and r15501 respectivelyEduard Braun2017-02-113-8/+15
| | | | | | | | | | | | (bzr r15505)
* | | | fix two memory leaksperegrine2017-02-072-0/+4
| |_|/ |/| | | | | | | | | | | | | | | | | Fixed bugs: - https://launchpad.net/bugs/1662686 - https://launchpad.net/bugs/1662683 (bzr r15493)
* | | [Bug #1537497] Icon preview doesn't render background.tghs2017-01-251-1/+1
| | | | | | | | | | | | | | | | | | Fixed bugs: - https://launchpad.net/bugs/1537497 (bzr r15446)
* | | fixing to new trunkJabiertxof2017-01-249-29/+88
|\ \ \ | | |/ | |/| (bzr r15142.1.38)
| * | Partially fix opening of librevenge based input formats (cdr/vsd/wpg) on ↵Eduard Braun2017-01-173-0/+21
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Windows if the filename contains non-ASCII characters The problem is that "RVNGFileStream" uses "fopen()" internally which only supports ANSI filenames on Windows (i.e. a complete fix would require upstream code changes). By using "g_win32_locale_filename_from_utf8()" the problem can be worked around in most cases, though: * the filename is converted to the current codepage (i.e. all 255 characters that are available in the current character encoding are allowed in the filename) * even if the filename contains a character that's not available in the current character encoding it's attempted to use the alternative short (8.3) file name instead Therefore the input operation will only fail in the unlikely case that the filename contains a character not available in the current ANSI code page while at the same time short file names are disabled on the file system (which is not the case in standard configurations). Fixed bugs: - https://launchpad.net/bugs/1656763 - https://launchpad.net/bugs/1656763 (bzr r15421)
| * Rm remaining Gtk::Stock usageAlex Valavanis2016-12-271-1/+0
| | | | | | (bzr r15368)
| * Fix typoAlex Valavanis2016-12-261-1/+1
| | | | | | (bzr r15364)
| * vsd-input: Gtk3 fixesAlex Valavanis2016-12-261-2/+2
| | | | | | (bzr r15363)
| * cdr-import: Gtk3 fixesAlex Valavanis2016-12-261-2/+2
| | | | | | (bzr r15362)
| * pdf-input: Gtk3 fixesAlex Valavanis2016-12-262-16/+56
| | | | | | (bzr r15360)
| * Fix Gtkmm deprecations in extensionsAlex Valavanis2016-12-262-6/+4
| | | | | | (bzr r15359)
| * Fix filter editor updateMarc Jeanmougin2016-11-111-0/+1
| | | | | | | | | | | | Fixed bugs: - https://launchpad.net/bugs/1639985 (bzr r15238)
| * patch for bug 1405292, start clipping with COPY instead of OR so GDI ↵mathog2016-11-101-1/+1
| | | | | | | | | | clipping works (bzr r15235)
| * Remove embedded build date, to allow reproducible building.Mattia Rizzolo2016-11-071-1/+1
| | | | | | | | | | | | | | | | | | | | | | Reproducible Builds is a ongoing project which aims at having "packages" "build" (as in, every build step, be it code compilation, doc generation, etc) be bit-by-bit reproducible regardless of the build environment. With this commit inkscape can be built reproducibly. See https://reproducible-builds.org for more info about the project. (bzr r15222.1.1)
* | Add exportersJabier Arraiza Cenoz2016-11-059-15/+45
|/ | | (bzr r15142.1.32)
* CPPification: almost all sp_object_set_whatever and sp_selection_whatever ↵Marc Jeanmougin2016-10-242-9/+9
| | | | | | | | | | | | global functions are now methods of ObjectSet*, with these additional benefits: - They can now act on any SelectionSet, not just the current selection; - Whenever possible, they don't need a desktop anymore and can run if called from GUI. I hope I did not break too many things in the process. *: So instead of callink sp_selection_move(desktop,x,y), you call myobjectset->move(x,y) (bzr r15189)
* Merged.Shlomi Fish2016-10-021-0/+26
|\ | | | | (bzr r15100.1.28)
| * Add a prune method to saving svg files that removes Adobe's i:pgf tag.Martin Owens2016-10-011-0/+26
| | | | | | | | | | | | Fixed bugs: - https://launchpad.net/bugs/179679 (bzr r15141)
* | Merged.Shlomi Fish2016-09-291-3/+3
|\| | | | | (bzr r15100.1.23)
| * Rename <mesh> to <meshgradient> per SVG 2 CR specificiation.Tavmjong Bah2016-09-271-3/+3
| | | | | | | | | | Note: <mesh> has been repurposed to be a special shape that tightly wraps a mesh gradient. (bzr r15137)
* | Merged.Shlomi Fish2016-09-231-1/+6
|\| | | | | (bzr r15100.1.20)
| * adds a layer to put things in when opening raster filesMarc Jeanmougin2016-09-151-1/+6
| | | | | | | | | | | | Fixed bugs: - https://launchpad.net/bugs/394503 (bzr r15119)
* | Inline two "style" variables.Shlomi Fish2016-09-021-4/+2
| | | | | | | | | | | | They were used only once and completely unnecessary, so I just replaced them with their expressions. (bzr r15100.1.3)
* | Remove a pointless == for boolShlomi Fish2016-09-021-1/+1
|/ | | (bzr r15100.1.2)
* Use M_PI, M_PI_2. We use these constants everywhere so if they are not ↵Tavmjong Bah2016-08-172-5/+2
| | | | | | | defined we are already in trouble. No need to define them ourselves (except maybe in shared libraries). (bzr r15063)