summaryrefslogtreecommitdiffstats
path: root/src/extension (follow)
Commit message (Collapse)AuthorAgeFilesLines
* apply printing w32 patch ↵Adib Taraben2009-04-242-5/+7
| | | | | https://bugs.launchpad.net/inkscape/+bug/179988/comments/174 (bzr r7767)
* patch 179589 with UI added: optionally, try to replace a font name specified ↵bulia byak2009-04-154-7/+103
| | | | | in PDF with the closest-named local installed font (since we do not extract any fonts, nor can we embed them into svg) (bzr r7718)
* Use the new sp_document_change_uri_and_hrefs function.Peter Moulder2009-04-072-9/+4
| | | | | | The change to extension/system.cpp is a functional noop. The change to extension/implementation/script.cpp should fix importing of .ai files that contain images (or whatever ill2svg.pl creates png files for). The effect on any other scripts that create SVG files with relative hrefs is unknown. (bzr r7656)
* noop: Set svn:eol-style to native on all .cpp and .h files under src. (find ↵Peter Moulder2009-04-072-1128/+1128
| | | | | \( -name '*.cpp' -o -name '*.h' \) -print0 | xargs -0 svn propset svn:eol-style native) (bzr r7649)
* extension/internal/gdkpixbuf-input.cpp: Don't bother creating a ↵Peter Moulder2009-04-071-2/+8
| | | | | sodipodi:absref attribute with the same value as an existing xlink:href attribute. (bzr r7644)
* Move Inkscape::IO::fixupHrefs to Inkscape::XML::rebase_hrefs in new file ↵Peter Moulder2009-04-074-18/+19
| | | | | | | | | xml/rebase-hrefs.*. Give it the old and new base directory, so that it can change hrefs without relying on sodipodi:absref. Also create a new function sp_repr_save_rebased_file that changes all xlink:href attributes as it writes them, so that we don't need to modify the owning document. (Especially useful for "Save a copy" or exporting.) extension/system.cpp: (Inkscape::Extension::save): Don't call sp_document_set_uri even temporarily other than at the same time as calling rebase_hrefs. (Otherwise, existing relative hrefs will point nowhere.) When exporting plain SVG, change the relative hrefs according to the destination filename. (bzr r7643)
* Remove trivial wrapper function sp_repr_print that hasn't been used in years.Peter Moulder2009-04-061-2/+0
| | | (bzr r7640)
* noop: Rename argument from uri to filename for Extension::...::save ↵Peter Moulder2009-04-0618-52/+63
| | | | | | | implementations, given that that's how it's used at present. Add a couple of fixme comments to do with use of this argument. (bzr r7637)
* functional noop: (EmfWin32::save): Remove an unneeded strdup operation.Peter Moulder2009-04-061-6/+3
| | | (bzr r7636)
* noop: whitespace (and localize one var)Peter Moulder2009-04-051-23/+25
| | | (bzr r7631)
* functional noop: extension/system.cpp: g_strdup handles NULL fine, so don't ↵Peter Moulder2009-04-051-13/+11
| | | | | bother checking with an extra function call. (bzr r7630)
* noop: comment spellingPeter Moulder2009-04-041-2/+2
| | | (bzr r7618)
* We don't really need two separate "Shadows" and "Shadows and glows" ↵Alexandre Prokoudine2009-03-041-2/+2
| | | | | submenus, do we? :) (bzr r7416)
* Removing the polyline simplification. Fix for bug #335437 + bug #307783 ↵Ulf Erikson2009-03-021-9/+2
| | | | | (missing characters in emf export) (bzr r7400)
* copyeditbulia byak2009-02-281-1/+1
| | | (bzr r7392)
* Fix bug #168979 and clean up some pointer-to-ustring sillynessKrzysztof Kosi??ski2009-02-261-33/+27
| | | (bzr r7377)
* Move files from the src/dialogs/ directory to the places where they Krzysztof Kosi??ski2009-02-211-1/+1
| | | | | should be. Build libinkscape.a - should reduce link time. (bzr r7337)
* Only build static libraries for subdirs than actually contain libraries, Krzysztof Kosi??ski2009-02-204-33/+6
| | | | | rather than for every subdirectory. (bzr r7336)
* trying to fix the filters placementbulia byak2009-02-181-1/+1
| | | (bzr r7325)
* Remove last remnants of ancient plugin support. Tidy up acinclude.m4.Krzysztof Kosi??ski2009-02-132-16/+0
| | | (bzr r7278)
* patch by KoRi for 324938bulia byak2009-02-111-1/+2
| | | (bzr r7272)
* Filters, Extensions menusbulia byak2009-02-102-19/+37
| | | (bzr r7259)
* Fix some console warning spam (most cannot be fixed, unfortunately)Krzysztof Kosi??ski2009-02-092-2/+2
| | | (bzr r7257)
* using C++ const_cast instead of plain C-type castFelipe Corr??a da Silva Sanches2009-02-091-129/+129
| | | (bzr r7255)
* adding comments/TODOs and/or reverting some of the things done in r20655Felipe Corr??a da Silva Sanches2009-02-091-2/+2
| | | | | due to JonCruz considerations about the proper way of doing it. (bzr r7254)
* gcc warning cleanupFelipe Corr??a da Silva Sanches2009-02-091-2/+2
| | | | | warning: deprecated conversion from string constant to ‘char*’/'gchar*' (bzr r7253)
* gcc warning cleanup:Felipe Corr??a da Silva Sanches2009-02-081-1/+1
| | | | | | warning: suggest a space before ‘;’ or explicit braces around empty body in 'for'/'while' statement (bzr r7251)
* gcc warning cleanupFelipe Corr??a da Silva Sanches2009-02-081-133/+132
| | | | | | | | mainly deprecated conversion from string constant to ‘char*’ and unused variables (bzr r7249)
* adapt for new menu structurebulia byak2009-02-072-3/+3
| | | (bzr r7245)
* Fixed small translation issue for extensions.Marcin Floryan2009-02-052-6/+7
| | | (bzr r7233)
* copyedit, use repeated calls for graduated contrastbulia byak2009-02-021-3/+6
| | | (bzr r7218)
* copyedit, names that make more sensebulia byak2009-02-022-4/+4
| | | (bzr r7217)
* show waiting cursor while ExecutionEnv is workingbulia byak2009-01-281-0/+5
| | | (bzr r7199)
* since imagemagic effects cannot be cancelled midway, trying to do so often ↵bulia byak2009-01-281-3/+3
| | | | | crashes; the fix is to disallow UI interaction while it works, at least until we implement a way to safely cancel such effects (bzr r7198)
* fix parameter ranges, copyeditbulia byak2009-01-262-9/+9
| | | (bzr r7185)
* Improved version reporting. Add SVN revision and custom status to Krzysztof Kosi??ski2009-01-136-7/+11
| | | | | version string on Linux. (bzr r7123)
* Cmake: Fixed the extra -l in the link command, plus a add linking for all ↵Joshua L. Blocher2009-01-121-1/+3
| | | | | sub-libs of inkscape. (bzr r7120)
* Cmake: restructure build files to be more like current build system. Should ↵Joshua L. Blocher2009-01-091-0/+23
| | | | | reduce linking stage command for windows. (bzr r7100)
* Cmake build fixes, minorJoshua L. Blocher2009-01-053-31/+0
| | | (bzr r7078)
* add labelsbulia byak2009-01-032-5/+5
| | | (bzr r7064)
* make 'marker' property work (shorthand for start, mid and end markers); ↵Johan B. C. Engelen2009-01-021-89/+67
| | | | | inkscape now passes svg testsuite painting-marker-03-f.svg (bzr r7061)
* Move filters into their own namespace Inkscape::Filters (from NR::)Johan B. C. Engelen2009-01-021-3/+4
| | | (bzr r7058)
* fix crash when assigning a non-parseable preset filterbulia byak2009-01-011-2/+7
| | | (bzr r7051)
* get rid of a lot of no longer needed "libnr/nr-..." includes.Johan B. C. Engelen2008-12-306-24/+3
| | | (bzr r7045)
* fix compile after rev 20377Johan B. C. Engelen2008-12-161-1/+1
| | | (bzr r7011)
* * remove sp_item_i2root_affine and sp_item_i2r_affine and replace all calls byThomas Holder2008-12-161-1/+1
| | | | | | | | | | | | sp_item_i2doc_affine or sp_item_i2d_affine respectively * remove sp_root_bbox, root->c2p was considered in the wrong place there * in sp_item_i2doc_affine do not consider SP_ITEM(object)->transform for root node, because <svg> node does not have a transform attribute * fix style scaling for boolean operations (with viewBox) * fix zoom to fit drawing (with viewBox) * fix export area size for "export drawing" (with viewBox) * fix simultaneous movement of clone + original (with viewBox) (bzr r7010)
* * Removing the bitmap files that aren't being used.Ted Gould2008-12-1029-1285/+4
| | | | | | | | | | | | | * Removing the filter files that haven't been used. * Adding a small little script to pull the strings out of the filters.svg file and pull them into a header file so that they can be translated. * Fix generate_POTFILES.sh so that it warns that it'll probably break things * Update POTFILES.in so that it matches the files better. * Making a bunch of .svg files not executable. * Patching the effects code so that the sorting of the menus is correct and the first entry is not ignored. (bzr r6984)
* unify labelsbulia byak2008-11-302-3/+3
| | | (bzr r6923)
* Merge from fe-movedTed Gould2008-11-2126-3833/+129
| | | (bzr r6891)
* Merge from trunkTed Gould2008-11-012-9/+14
| | | (bzr r6890)