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
2015-01-21Fix error reported by talocan. Gstretch function was not calling ↵Thomas Beck
ensure_lookup_table, see rB785b90d7ef
2015-01-11Remove API version commentsCampbell Barton
Please don't add API versions all over scripts, having API versions over function calls isn't helping make code readable, No need to document the API in scripts unless there is some exceptional case worth noting.
2015-01-11fixes issues ensure_lookup_table and grease_pencil, related to new blender ↵beta-tester
2.73 behavior. # blender 2.73 needs to call ensure_lookup_table() for bm.verts[], bm.edges[], bm.faces[]. # generically the fix will do this... # the lookup_table will get "dirty" after: # bm.new(), bm.from_mesh(), bm.from_edit_mesh() # bm.verts.new(), bm.edges.new(), bm.faces.new() # bm.verts.remove(), bm.edges.remove(), bm.faces.remove() # bm.normal_update(), bm.copy() # # bm.verts.ensure_lookup_table() ### 2.73 # bm.edges.ensure_lookup_table() ### 2.73 # bm.faces.ensure_lookup_table() ### 2.73 # blender 2.73 has a new grease_pencil per object and new per scene # gp = object.grease_pencil # if not gp: # gp = context.scene.grease_pencil
2015-01-09some fixes for gstretchBrendon Murphy
2014-12-24urgent fixes for 2.73 release, T42853, by kopias & meta-androctoBrendon Murphy
2014-10-13fix warnings with UI descriptionPhilipp Oeser
2014-08-06Fix T39979Bart Crouch
Checking for zero-length vector wasn't sufficiently robust. Could result in NaNs being assigned to vertex coordinates.
2014-08-06Fix T41178Bart Crouch
Merge of soc-2013-paint added a new parameter to strokes: "size" This crashed the add-on when trying to erase strokes (since they did not yet have this additional parameter)
2014-08-06[LoopTools] Adds constraining to axis.Bart Crouch
Makes conversion of grease-pencil strokes more robust.
2014-05-21Maintenance to bl_info, remove redundant tracker URL'sCampbell Barton
2014-02-04Clean-up: Updated bl_info['tracker_url'] to developer.blender.org, some ↵CoDEmanX
minor other edits
2014-02-01Add Looptools to 'Tools' TabJonathan Williamson
2013-12-24[LoopTools] Fix crash when straightening same loop twiceBart Crouch
2013-12-24[LoopTools] Fix for GStretch.Bart Crouch
Caching of 'delete strokes' was incorrect, making it impossible to change parameters after conversion of strokes.
2013-12-18Fix T34801: bridge tool, internal faces deletionBart Crouch
Internal faces are now correctly deleted and smooth shading is applied. Fix: matrix operations Based on report in anonymous forum. Credits to: http://toro.2ch.net/test/read.cgi/cg/1361851855/570-571n Fix: GUI layout, aligned buttons New functionality: GStretch converts grease pencil strokes to vertices. First commit via git, please don't shoot me if I did something wrong.
2012-12-27svn merge . -r4105:4104Campbell Barton
add back bevel tool menu, it no longer crashes.
2012-12-27fix [#33657] Loop tools crash in face select modeCampbell Barton
2012-12-27disabling menu items 'Bridge' & 'Loft'Brendon Murphy
these crash blender instantly with no errors
2012-12-19fix [#33615] bl_info (2,6,5,0) vs. (2,65,0) ?Campbell Barton
make addons blender versions consistent
2012-12-19formatting edits for bl_infoCampbell Barton
2012-09-16closed panels by defaultBrendon Murphy
[[Split portion of a mixed commit.]]
2012-07-18Version 4.2Bart Crouch
Bugfixes and added new tool: Gstretch
2012-05-23Fixed bug caused by edgekeys not being sorted (highest vertex index could ↵Bart Crouch
come first)
2012-05-22Moved back to trunk, because the add-on has been fixed.Bart Crouch
[[Split portion of a mixed commit.]]
2012-03-31Moving LoopTools from trunk to contrib, as it is broken because of BMesh.Bart Crouch
I'm working on fixing it, but that won't be in time for next release. Therefore I'm moving it to contrib until I'm done fixing it. [[Split portion of a mixed commit.]]
2012-03-21removing bridge & loft functions from the menu. both these features caused ↵Brendon Murphy
blender to crash instantly. sorry it has bad #comment out everywhere but prevents bad crash. temporary fix to save users bridge/loft functions may be removed at a later date or reworked for bmesh thanks
2012-01-14remove api field, was never used.Campbell Barton
2011-12-31Fix for column major matrix API change.Bart Crouch
+ reversal of previous commit, which broke circle tool
2011-11-26Replacing custom code with mathutils normalize()Bart Crouch
2011-11-01Fix for divide-by-zero errors.Bart Crouch
2011-09-19/trunk: Removed final points in UI strings and messages.Bastien Montagne
Plus a few styling enhancements. [[Split portion of a mixed commit.]]
2011-07-25swap vector multiplication order, also some style changesCampbell Barton
2011-04-10minor pep8 editsCampbell Barton
2011-04-04Move from contrib to trunk.Bart Crouch