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
2019-06-16part fix bl_info Locationsmeta-androcto
2019-05-27auto mirror, bsurfaces, looptools, bool tools: new tab: Editmeta-androcto
2019-05-22Add-ons: remove temporary disabling of use_global_undoBrecht Van Lommel
This can cause bugs where if the operator throws an exception, undo is not properly enabled again. There have been maybe a dozen Blender bug reports related to this. This could get worse now that we are autosaving preferences. Some add-ons guard against this, but turning off undo should not be needed in the first place. If the operator is set to do an undo push, any operators it calls will automatically not do any undo pushes. If this fail in some cases, it should be reported as a bug in Blender. I could not find issues or a performance impact testing a few add-ons though. Differential Revision: https://developer.blender.org/D4908
2019-05-16Update for Depsgraph API changesSergey Sharybin
Addresses new behavior of object.to_mesh(). This is corresponding part for D4875. Reviewers: brecht Reviewed By: brecht Differential Revision: https://developer.blender.org/D4876
2019-05-16Addons: Adopt for Dependency Graph API changesSergey Sharybin
Mainly search-and-replace approach. Tested the enabled-by-default export/import addons. Seems to work with an exception of X3D which is still referencing Blender Internal material properties. Reviewers: brecht Reviewed By: brecht Differential Revision: https://developer.blender.org/D4866
2019-05-12LoopTools: switched Gstretch to Annotation strokesSpivak Vladimir (cwolf3d)
2019-05-04LoopTools: Gstretch fix.Spivak Vladimir (cwolf3d)
Grease pencil must have name 'GPencil'. Script take only the first strokes.
2019-05-02loop tools: hacky attempt at fixing gstretchmeta-androcto
2019-04-18looptools: fix matrix conversion, temporary fix grease pencil T63677 T61450meta-androcto
2019-03-12Update for changes to BlenderCampbell Barton
2019-02-19looptools Matrix Multiplication Fix: T61698meta-androcto
2019-01-25Fix T60828: Looptools: error in Vector multiplicationPhilipp Oeser
own recent error in rBA73f88be5067b
2019-01-21Bool Tools: Fix error accessing transform orientationsPhilipp Oeser
also fix matrix multiplication ('@') Fixes T60706
2018-12-21Rename user_preferences -> preferencesCampbell Barton
2018-12-04mesh_looptools cleanup: avoid passing scene aroundPhilipp Oeser
followup to rBA3148c4219f001511b69c3fb31dfedca98b9f4360
2018-12-04mesh_looptools: update for 2.8Philipp Oeser
Fixes T58714
2018-10-24LoopTools: Update for 2.8florianfelix
2018-10-10Update for removal of tessfaces.Brecht Van Lommel
This ports the already working addons. The disabled x3d, psk, lwo, 3ds, raw, dxf addons still need to be converted.
2018-10-03Cleanup: use tuples for storing classesCampbell Barton
2017-04-07LoopTools: Update panel Rename, Cleanuplijenstina
Bumped version to 4.6.7 As a part of the task T50726: Update the Panel rename code to more generic one PEP8 cleanup: Tuple imports and use them for class types Consistent Scene props definitions Update url link
2017-03-19Cleanup: trailing spaceCampbell Barton
2016-09-20Urgent fix: T49403 Fix for broken change tab category feature: user ↵meta-androcto
preferences save was broken
2016-09-14Fix: T49346 looptools undo/gpencil deletemeta-androcto
2016-08-31looptools: fix T48102meta-androcto
2016-08-15looptools: unify change tab categorymeta-androcto
2015-06-04Partial fix for T44469: Do not fail because of division by zero.Bastien Montagne
This only fixes the 'symptoms', root of the issue here is that we get a weird covariance matrix - Blender's own invert function errors on it, this script's matrix_invert func does give some result, but in any case final result is not what one would expect...
2015-01-21Please avoid littering scripts with API versionsCampbell Barton
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)