Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-06-03Cleanup: remove <pep8 compliant> commentCampbell Barton
This is no longer necessary, see: T98554.
2022-02-11File headers: use SPDX license identifiersCampbell Barton
See T95597
2020-03-06Addons: Use Manual URL prefixAaron Carlisle
2020-03-05Update 'bl_info' use 'doc_url' instead of 'wiki_url'Campbell Barton
2020-02-17Fix several typos in UI messages.Bastien Montagne
2019-12-01add manual linksmeta-androcto
2019-08-12Fix T68427: Freestyle SVG Exporter addon not showing "Freestyle LineRobert Guetzkow
Style SVG Export" property panel Fixed wrong bl_context from render_layer to view_layer
2019-07-15Freestyle Export: Mark OfficialAaron Carlisle
This has been considered official, from the docs POV since the beginning. Now lets make it appear in official.
2019-07-15Update wiki_url to new manual pagesAaron Carlisle
2019-06-30render_freestyle_svg: update to 2.8 D5127meta-androcto
2019-01-18Update Add-ons class properties to annotationsNBurn
This should take care of most of the class property conversions to use the new annotation format (colon instead of equals) for assignment. There may still be a few edge cases that were missed.
2018-12-13Fix spelling of Miter in freestyle SVG export.Brecht Van Lommel
Ref T59320.
2016-10-29Fixes T49855 - Exception when there is no line setFolkert de Vries
The UI code assumed the existence of an active lineset. Turns out that the final lineset can be removed (unlike render layers, where there is always at least one).
2016-08-13Fix T46150: FreeStyle: SVG Export won't fill ContoursFolkert de Vries
The issue was a change in defaults introduced in https://developer.blender.org/rBA861519e44adc5674545fa18202dc43c4c20f2d1d The fix is to use the old default in older (<= 2.67) versions.
2016-08-13Freestyle SVG export: handle relative pathsFolkert de Vries
Previously, relative paths were not handled well. The result was an error in the console and no output at the expected location. The path resolving order is as follows: * use the given path (scene.render.frame_path()) when it is absolute * otherwise, try to join with the current blendfile's location * otherwise, try to join with the folder from which blender was called Tested on linux, but not on Windows
2016-04-11Freestyle SVG Exporter: extract color from individual strokesFolkert de Vries
This commit adds an option to use the color of the first or final vertex of a stroke as the color of the extracted SVG path. This setting can be found in `Render Layers > Freestyle Line Style SVG Export`.
2015-07-12Freestyle SVG Exporter: make it possible to export strokes and fills on a ↵Folkert de Vries
per-linestyle basis
2015-05-31Freestyle SVG Exporter: more robust fillingFolkert de Vries
2015-02-18Fix T43635: 'fill contours' fails when using multiple render layersFolkert de Vries
There was a problem with the order of stroke and fill elements. Additionally, sometimes names of linesets collide between render layers. this has been fixed by prepending the name of the render layer to a layer's id.
2014-12-08Fix for SVG groups not shown as layers in Inkscape. Also changed the add-onTamito Kajiyama
name (the old one was more like a description rather than a name).
2014-12-08D785: Freestyle integrated SVG export.Tamito Kajiyama
This patch implements SVG exporting to Freestyle. This feature is implemented as an add-on, and can be enabled in the user preferences (render section). Current features of the exporter include: * a user interface. * integration with the parameter editor and some of its settings, in particular: color, transparency, thickness, visibility, stroke caps, and dashes. * support for animation. * some extra attributes that make manipulation of the exporter's result in Inkscape easier. * the ability to export fills (a closed external contour with the underlying material's color). Differential revision: https://developer.blender.org/D785 Author: flokkievids (Folkert de Vries) Reviewed by: campbellbarton (Campbell Barton), sergey (Sergey Sharybin), dna (Dan Eicher), kjym3 (Tamito Kajiyama) Contributor: hva (francesco fantoni)