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-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)
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.]]