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
2020-01-14Addon Bolt Factory: Fixed bug location and orientation.Spivak Vladimir (cwolf3d)
2019-12-24Fix T72654: Bolt Factory: Missing Data after Change Bolt.Spivak Vladimir (cwolf3d)
2019-11-13bolt factory: add manual linkmeta-androcto
2019-09-23Addon: Bolt Factory: Corrected T70007 Scaling problem (Unit System)Spivak Vladimir (cwolf3d)
2019-09-22Addon: Bolt Factory: Corrected register and unregister.Spivak Vladimir (cwolf3d)
2019-09-22bolt factory: revert last commit. Breaks Buildsmeta-androcto
2019-09-20Addon: BoltFactory: Added changing parameters after creation object.Spivak Vladimir (cwolf3d)
2019-09-06add_mesh_BoltFactory: add separator for cosmeticsmeta-androcto
2019-07-31Spelling fixes in comments and descriptions, patch by luzpazBrecht Van Lommel
Differential Revision: https://developer.blender.org/D5240
2019-05-15Update for object add align property changesBrecht Van Lommel
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-13BoltFactory (0,4,0)Aaron Keith
Now works with Blender 2.8
2018-10-19Merge branch 'master' into blender2.8Brecht Van Lommel
2018-10-19Spelling fixes in comments and descriptions, patch by luzpaz.Brecht Van Lommel
Differential Revision: https://developer.blender.org/D3746
2018-09-07Merge branch 'master' into blender2.8Campbell Barton
2018-09-07Cleanup: trailing spaceCampbell Barton
2018-08-29Python / Cleanup: rename INFO_MT to TOPBAR_MT to reflect actual location.Brecht Van Lommel
2018-06-22Version (0, 3, 4)Aaron Keith
Fixed the default values to match the default preset. This also fixed the default Cap Head size. Added "Align to View", "Location" and "Rotation" properties. Now adds the mesh the same way as the Template example. This fixes some of the problems when using this script with 2.8.
2017-04-29Fix T51338: Add an offset to the internal thread, validatelijenstina
Bumped version to 0.3.3 The crash was in Create_Internal_Thread_End_Verts Possibly creating vert coord with the same values added a small random offset to the x and y in the case j == 0 Added a mesh.validate with a print function in case of failures as I'm not sure that the generator will produce valid results all the time The print function will tell that something is wrong though Removed a reduntant for loop - in range(1) Small cleanup
2017-04-09BoltFactory: Cleanup, Remove star importslijenstina
Bumped version to 0.3.2 Fix star imports Replace the star import of the createMesh with importlib reload in init Pep8 cleanup Fix crash with the Cap head type - props.DIV_COUNT was non existing
2017-03-19Cleanup: identity for None comparisonCampbell Barton
2017-03-19Cleanup: trailing spaceCampbell Barton
2017-01-22bolt factory: T50443 add division count for higher precisionmeta-androcto
2016-02-20Fixed bug in minor diameter and Phillips bit dimensions. They were missing ↵Aaron Keith
from the presets.
2015-05-24remove local presets folder & replace with internal operator presetsBrendon Murphy
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-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
2012-12-19fix [#33615] bl_info (2,6,5,0) vs. (2,65,0) ?Campbell Barton
make addons blender versions consistent
2012-07-03Style edit (mostly), use """ for docstrings (not ''').Bastien Montagne
2012-06-23update wiki version ro 2.6Brendon Murphy
finished
2012-02-08code cleanup: style and typo - some edits to bypass the comments spell checker.Campbell Barton
2012-01-14remove api field, was never used.Campbell Barton
2011-12-30adding operator presetsBrendon Murphy
2011-12-22Fix for matrix changes in SVN.Andrew Hale
- Rotation matrices now use the Matrix.Rotation classmethod
2011-12-01Fixed Bug in Bolt Factory “remove doubles” function, which was ↵Aaron Keith
introduced during indentation clean up.
2011-11-19indentation edits and copy pyrimid from contrib (where I had made some ↵Campbell Barton
edits), removed so this wont happen again.
2011-10-15remove 'original_script_add_mesh_bolt.py', scripts for reference can be ↵Campbell Barton
linked to by their svn revision rather than including. replace MATHUTILS with mathutils.
2011-10-02Formatting description for add mesh scriptsJonathan Smith
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-08-25update to bl_infoBrendon Murphy
2011-07-25make bolt factory use reversed vector rotation order,Campbell Barton
also use LC's for Rot_Mesh and Copy_Faces functions.
2011-07-11cleanupCampbell Barton
- remove/comment unused variables - remove unused imports - fixed some bugs using incorrect variables
2011-06-22fix for errors adding landscape and bolt objects in editmodeCampbell Barton
2011-06-21pep8 compliance Campbell Barton
2011-03-29updated working revision r35853Brendon Murphy
2011-03-19Updated Blender Version to 2.57 and api versionJonathan Smith
2011-02-11add in module register calls (first pass, batch replace, will test each ↵Campbell Barton
addon next).
2011-02-09incorrectly switched mesh.update() --> mesh.update_tag(),Campbell Barton
update_tag() tags for depsgraph update only, update() executes normal recalculation and creates edge data.
2011-02-07rename id.update() to update_tag()Campbell Barton