summaryrefslogtreecommitdiffstats
path: root/src/extension (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 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)
* 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)
* Merged trunkAdrian Boguszewski2016-08-0920-527/+20
|\ | | | | (bzr r14954.1.30)
| * Remove deprecated Autotools and btool files. Please use CMake insteadAlex Valavanis2016-08-084-347/+0
| | | | | | (bzr r15046)
| * End GTK+ 2 support and remove GDL forkAlex Valavanis2016-08-0414-176/+16
| |\ | | | | | | (bzr r15038)
| | * extensions: Drop GTKMM2 fallbacksAlex Valavanis2016-07-2814-176/+16
| | | | | | | | | (bzr r15023.2.5)
| * | Fix broken headersAlex Valavanis2016-08-032-4/+4
| | | | | | | | | (bzr r15035)
* | | Merged trunkAdrian Boguszewski2016-08-0314-28/+15
|\| | | | | | | | (bzr r14954.1.29)
| * | Removed unused includes, decreased compilation time. Once againAdrian Boguszewski2016-08-0313-24/+11
| | | | | | | | | (bzr r15034)
| * | Reverted changes to r15024 after many building problemsAdrian Boguszewski2016-07-2813-11/+25
| | | | | | | | | (bzr r15027)
| * | Fixed failed buildAdrian Boguszewski2016-07-281-1/+1
| | | | | | | | | (bzr r15026)
| * | Removed unused includes, decrease compilation timeAdrian Boguszewski2016-07-2813-24/+10
| |/ | | | | (bzr r15025)
* | Renamed children list in SPObjectAdrian Boguszewski2016-07-146-12/+12
| | | | | | (bzr r14954.1.21)
* | Last part of new SPObject children listAdrian Boguszewski2016-07-141-8/+10
| | | | | | (bzr r14954.1.20)
* | Second part of new SPObject children listAdrian Boguszewski2016-07-135-25/+32
| | | | | | (bzr r14954.1.19)
* | Added items as a range functionAdrian Boguszewski2016-07-038-16/+16
|\| | | | | (bzr r14954.1.13)
* | Moved next functions, added namespace, renamed range functionsAdrian Boguszewski2016-06-258-9/+9
| | | | | | (bzr r14954.1.10)
* | Replaced old selection containersAdrian Boguszewski2016-06-1255-434/+436
|\| | | | | (bzr r14954.1.6)
| * Extensions: Use underscored variants of parameters / attribute names in ↵Eduard Braun2016-06-1151-431/+431
| | | | | | | | | | | | | | | | internal extensions where translation via gettext is desired. Fixed bugs: - https://launchpad.net/bugs/1591230 (bzr r14979)
| * Clean up includes after r14955Eduard Braun2016-06-114-4/+2
| | | | | | | | | | | | Fixed bugs: - https://launchpad.net/bugs/1589300 (bzr r14978)
| * Extensions: Fixes and improvements for "gui-text" parameter attributeEduard Braun2016-06-057-8/+19
|/ | | | | | | - "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)
* Fix guide placement when guides are generated by a template with ↵Tavmjong Bah2016-06-031-24/+27
| | | | | width/height/viewBox different from default SVG file. (bzr r14947)
* Remove last use of getSVGUnit() and remove all remnants of this abomination.Tavmjong Bah2016-06-011-1/+1
| | | (bzr r14939)
* Replace two instances of getSVGUnit() by getDocumentScale().Tavmjong Bah2016-06-012-18/+8
| | | | | | Simplify writing of style string. Switch 'pt' to 'px'. (bzr r14938)
* Fixed path resolution in plugin loader.Moritz Eberl2016-04-273-9/+12
| | | (bzr r14862.1.1)
* minor warning cleanup.Jon A. Cruz2016-04-211-2/+2
| | | (bzr r14861)
* removed unnecessary commentsMoritz Eberl2016-04-161-8/+0
| | | (bzr r14761.1.13)
* merge and fixed buildMoritz Eberl2016-04-162-14/+30
|\ | | | | (bzr r14761.1.11)
| * CMake build: builds with WITH_DBUSMarc Jeanmougin2016-04-162-14/+30
| | | | | | (bzr r14853)
* | Added missing fileMoritz Eberl2016-04-161-0/+1
| | | | | | (bzr r14761.1.9)
* | Added an example plugin.Moritz Eberl2016-04-165-0/+316
| | | | | | (bzr r14761.1.8)
* | MergeMoritz Eberl2016-04-133-10/+74
|\| | | | | (bzr r14761.1.4)
| * Hackfest 2016: un-obfuscate the SPCanvas widget.Krzysztof Kosi??ski2016-04-122-3/+3
| | | | | | (bzr r14790)
| * [Bug #1545319] Failure to retrieve image resolution of PNGs with Units: ↵suv-lp2016-04-111-7/+71
| | | | | | | | | | | | | | | | Undefined (clang from Xcode 4.6.3). Fixed bugs: - https://launchpad.net/bugs/1545319 (bzr r14772)
* | Modified the windows build to integrate gmodule-2.0 and loader.cpp/.hMoritz Eberl2016-04-121-2/+36
| | | | | | | | | | Added method to check inscape version used to build plugins. (bzr r14761.1.3)
* | fixed naming of methods. External extensions can now be other module types.Moritz Eberl2016-04-125-15/+13
| | | | | | (bzr r14761.1.2)
* | Added a mechanism to load c++ extensions dynamically.Moritz Eberl2016-04-117-8/+202
|/ | | (bzr r14761.1.1)
* Fix for bug #1395435 (Inkscape crashes on load CDR select sheet) and bug ↵Eduard Braun2016-03-302-183/+171
| | | | | | | | | | | #1441437 (crashes when load multi page visio and select page 2 or more) Also clean up code to create dialog a bit and make dialog resizable. Fixed bugs: - https://launchpad.net/bugs/1395435 - https://launchpad.net/bugs/1441437 (bzr r14751)
* Correct typoRaphaël Bournhonesque2016-03-221-1/+1
| | | (bzr r14733)