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-10-14Cleanup: fix typosBrecht Van Lommel
Contributed by luzpaz. Differential Revision: https://developer.blender.org/D16234
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
2021-12-01Cleanup: quiet character escape warningsCampbell Barton
2020-03-06Addons: Use Manual URL prefixAaron Carlisle
2020-03-05Cleanup: tabs -> spacesCampbell Barton
2020-03-05Update 'bl_info' use 'doc_url' instead of 'wiki_url'Campbell Barton
2019-12-01mesh addons: add manual linksmeta-androcto
2019-09-17Added the Inset Straight Skeleton command to edit faces menu when installed.Howard Trickey
2019-07-31Spelling fixes in comments and descriptions, patch by luzpazBrecht Van Lommel
Differential Revision: https://developer.blender.org/D5240
2019-04-18Fix lots of various issues failing automated test load/unload/reload.Bastien Montagne
2019-02-19Update mesh_inset (alternate inset using straight skeleton) for 2.8.Howard Trickey
Update also made it modal, with interaction mode as in built-in inset, where mouse movement adjusts amount and holding control makes mouse movement affext height. Also renamed from "Inset Polygon" to "Inset Straight Skeleton" to lessen confusion with built-in one and emphasizing why this one is different. Recommend binding mesh.insetstraightskeleton to a key, like Alt-i
2019-01-23addons: add missing text= keyword after labelNBurn
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-21Rename user_preferences -> preferencesCampbell Barton
2018-10-19Spelling fixes in comments and descriptions, patch by luzpaz.Brecht Van Lommel
Differential Revision: https://developer.blender.org/D3746
2016-02-01Fix T47255: inset polygon addon left old edgesHoward Trickey
Not sure why this used to work. The old code used the bmesh faceseq delete, which kills only the faces. This fix uses the utility bmesh.ops.delete() with an arg that will maybe kill edges and verts too. Also made code select all the new polys. This is not ideal (ideal would be to select only the inner ones), but making the ideal change requires more work.
2015-05-01Fix T44567, take 2. Sometimes faces repeated the same Vert.Howard Trickey
This is really a different bug that the one that was reopened but I didn't know that when I reopened it. It shouldn't happen that vertices get repeated in a face, but when doing it happens in extreme cases, and for now am fixing by just removing those duplicates before calling the make-face routine.
2015-05-01Fix T44567: inset polygon added crashHoward Trickey
Crash caused by some vertices in the input model being doubled. The code to test for the maximum inset deduped the vertices but the faces were not remapped. Fixed by having that test code not dedup the vertices.
2015-04-10Cleanup: imports (formatting)Campbell Barton
2015-03-10Fix T42477: mesh_inset crashHoward Trickey
Needed to better handle a simultaneous edge / vertex event.
2015-01-22Fix: replaced Python module "imp" with "implib"Sybren A. Stvel
Python 3.4.0 deprecated the "imp" module, and replaced it with "importlib". This changes imp.reload() into implib.reload(). Reviewers: campbellbarton Differential Revision: https://developer.blender.org/D1016
2014-12-25Fix typo in the previous commitSergey Sharybin
Please test patches before committing.
2014-12-25fix for 2.73 lookup tableBrendon Murphy
2014-05-29Replace some 'sqrt(a*a, b*b)' by 'hypot(a, b)'.Bastien Montagne
Patch by ldo (Lawrence D'Oliveiro), with very minor changes by myself.
2014-05-21Maintenance to bl_info, remove redundant tracker URL'sCampbell Barton
2014-02-17Bumped mesh_inset version and its Blender version.Howard Trickey
2014-02-04Clean-up: Updated bl_info['tracker_url'] to developer.blender.org, some ↵CoDEmanX
minor other edits
2012-12-19fix [#33615] bl_info (2,6,5,0) vs. (2,65,0) ?Campbell Barton
make addons blender versions consistent
2012-05-16Spell check fix (lenght -> length)Bastien Montagne
2012-04-05Make the inset_mesh addon display better after it does its thing.Howard Trickey
2012-03-23mesh_inset addon: redraw before exit seems necessary, not sure whyHoward Trickey
2012-03-20renaming to inset polygon in ui & operator mesh.insetpoly Brendon Murphy
this removes conflicts with the inset built in ctrl/f menu not working if this addon was enabled.
2012-03-19Update for api change.Howard Trickey
2012-03-08remove unneeded vector conversion.Campbell Barton
2012-02-29Update for bmesh api.Howard Trickey
It doesn't completely work yet - there's something funky about selection, and finishing off the tool, but this is much better than a non-working inset.
2012-01-14remove api field, was never used.Campbell Barton
2011-09-08pedantic pep8 editsCampbell Barton
2011-08-27Addon UI Cleanup, Part 2Thomas Dinges
* You only have to do layout.prop if you want 1 property, no need for row then! * Use col, row, sub as variable names, not colsub, rowsub, row2 etc please. * Povray Addon: Still used a lot of splits, you need no split when you only have 1 column!
2011-05-18Bumped version to 0.3; also, last commit should have added: made pep8 compliant.Howard Trickey
2011-05-18Added percent option; preserve material and smoothingHoward Trickey
2011-05-17SVN maintenance.Guillermo S. Romero
2011-05-16moving Inset script to trunk/py/scripts/addons/mesh_insetBrendon Murphy
thanks to howardt for this great addition. [[Split portion of a mixed commit.]]