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-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
2020-01-29Cleanup: trailing spaceCampbell Barton
2019-12-28Change of concept - default options in PDB importer: when it is desired to ↵Clemens Barth
show the sticks of atoms as cylinders then the cylinders should be individuel single objects. The user can still choose a fusion of the sticks to one object in the options.
2019-12-28Fix of an unreported bug: when changing the radius of sticks that are in the ↵Clemens Barth
form of cylinders, they were marked as invisible after the change. This should only be done for the representative cylinder and cup object of those sticks, which are in a dupliverts structure.
2019-12-26The UI of the XYZ importer (File view, options) has been changed such that it isClemens Barth
similar to the one of the PDB importer. This makes writing the manual more easy.
2019-12-24Fix of an unreported error in the "Utilities Panel" (same error as the one I ↵Clemens Barth
fixed some minutes ago): "material.blend_method = 'ADD'" did not work. The line was replaced by "material.blend_method = 'OPAQUE'".
2019-12-24Fix of an unreported error: "material.blend_method = 'ADD'" did not work ↵Clemens Barth
anymore. We now use "material.blend_method = 'OPAQUE'"
2019-12-12i/o, part manual linksmeta-androcto
2019-07-31Spelling fixes in comments and descriptions, patch by luzpazBrecht Van Lommel
Differential Revision: https://developer.blender.org/D5240
2019-05-27io_mesh_atomic: use Create tabmeta-androcto
2019-05-22Remove base from addonsDalai Felinto
This is a follow up to rB0910932e71d2.
2019-05-17The following warnings appeared in the terminal when starting blender:Clemens Barth
make annotation: AddonPreferences.bool_pdb make annotation: AddonPreferences.bool_xyz make annotation: AddonPreferences.bool_utility This was fixed by using 'bool_name : BoolProperty(...' instead of 'bool_name = BoolProperty(...'
2019-05-15Update for object add align property changesBrecht Van Lommel
2019-05-06Update addons for changes to proportional edit modeCampbell Barton
2019-03-30Fix: a separated atom from a dupliverts structure was still hidden (not visible)Clemens Barth
When separating an atom (in the form of, e.g., a sphere) from a dupliverts structure, where the representative object (e.g., a sphere) is always hidden (not visible), the separated atom object was still hidden (not visible). Fix: in any case, the 'hide_set' option of an object is put onto: hide_set(False)
2019-03-29Fix 1: Atomic structures based on meta spheres were not visible because the ↵Clemens Barth
meta balls were hidden by default, T62804 Fix 2: Option 'Mesh UV spheres' for atomic structures lead to an error message, T62804 Comments ======== 1: It i strange that a representative mesh sphere or NURBS sphere in a dupliverts structure can be hidden, which is not the case for meta balls. A representative meta ball needs to be 'visible' and not hidden. By default this is now the case. 2: The 'size' option in 'bpy.ops.mesh.primitive_uv_sphere_add' does not exist anymore. Option 'size' was removed.
2019-03-29Fix: The panel could not be used in the EDIT MODE. T62804Clemens Barth
The panel could not be used in the EDIT MODE because I wrongly inserted a 'bl_context = "objectmode"' last time. I removed this line.
2019-03-28The new ‘Atomic Blender PDB/XYZ’ importer. T62804Clemens Barth
Comments ======== This is the fusion of the 3 atomic blender addons from Blender 2.79: 1. PDB (I/O addon for .pdb files, was in trunk before) 2. XYZ (I/O addon for .xyz files, was in contrib before) 3. Utilities (panel for modifying atomic structures, was in contrib before), into one single addon called ‘Atomic Blender PDB/XYZ’.