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-03-01Update for API change: scene.cursor_location -> scene.cursor.locationCampbell Barton
Note that some scripts still used the 3D view cursor which has been removed for a while.
2019-01-29addons: objects.link/unlink syntax updateNBurn
Changed objects.link and objects.unlink from scene to collection
2019-01-29addons: more view_layer syntax updatesNBurn
2019-01-29addons: view_layer.objects.active syntax updateNBurn
2019-01-25addons: object select_set syntax updateNBurn
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-12-07Fix T58896: Addons with ob.vertex_groups.new without name keyworkDalai Felinto
Original report: OBJ file import fails for objects with vertex groups defined when polygroups option is selected
2018-11-28Use collection and instance terminology in Python APISergey Sharybin
This follows naming convention agreed on in T56648.
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-062.8: update for x_ray and draw/display renaming.Brecht Van Lommel
2018-08-29Python / Cleanup: rename INFO_MT to TOPBAR_MT to reflect actual location.Brecht Van Lommel
2018-07-06Update for renaming lamp to light.Brecht Van Lommel
2015-04-10Cleanup: imports (formatting)Campbell Barton
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-08mod add-on to be ready for "BMVert/Edge/FaceSeq.ensure_lookup_table now ↵beta-tester
needs to be called before int subscription" https://developer.blender.org/rB785b90d7efd048a3c6d586db3760ef31fb41b1ca
2014-10-13fix warnings with UI descriptionPhilipp Oeser
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
2013-11-25according "uiList: ctrl-clic-edit name", i changed my add-ons template_listbeta-tester
2013-09-16added: exporter takes armature parent in account of animation handling.Alexander N
only one armature source will can be taken at the moment, and will taken in the following "priority" order: 1. armature parent will be taken if exist. 2. first available armature modifier will be taken if exist. open question: what is best practice, in case of existence of multiple armature sources? (armature parent and one or more armature modifier) can that case happen (very often) in real world mesh modeling?
2013-08-22undo the workaround of my previous commit for "[#36443] Vertex to UV index ↵Alexander N
doesn't match with 2.68a", because that issue is fixed in blender 2.68a r59343 now. - deleted not needed workaround for issue [#36443], because it is fixed in blender 2.68a r59343, - added BMEdge generation to the importer (only for nice doing), - added undo to operators, - deleted some unused strings,
2013-08-18workaround for [#36443] Vertex to UV index doesn't match with 2.68aAlexander N
- until the <BMesh>.faces.new(..) is scrambling the vertices order (input -> output), i use the workaround, that build a de-scramble dictionary. i still thing it is a bug in blender 2.68. - got rid of unneeded option 'io_scene_ms3d.set_sence_to_metric', Ms3dSetSceneToMetricOperator, set_sence_to_metric
2013-07-18fix: return default value if no expected value found (instead of returning None)Alexander N
2013-07-14fixed some potentially problematic naming of blender stuff in the importerAlexander N
2013-04-12raise HeaderError if, file header is invalid.Alexander N
2013-03-17fix: invalid header warning; changed: verbose modes from bool to enum; ↵Alexander N
changed: position of update scene;
2013-02-19mod: respecting layout_type {'DEFAULT', 'COMPACT', 'GRID', } in UIList classAlexander N
shown in: http://www.blender.org/documentation/blender_python_api_2_65_10/bpy.types.UIList.html
2013-02-10fixed missing model comment.Alexander N
and tiny other things e.g. fix: sum of weights sometimes reaches only 99% instead of 100% mod: come # comments - year to 2013 mod: ui of importer - joint size bit closer to other item
2013-02-10fix/workaround for character encoding ('ascii' is used for now, it should be ↵Alexander N
'cp1252' finally, but there are issues with printing on system console and struct.pack or io.FileIO.write)
2013-02-10fix: potentially division by zero in case of no weightsAlexander N
2013-02-10fix: now, using 'object.matrix_basis' instead of 'object.matrix_local' ↵Alexander N
during export for applying transform. that will calculate parented object correctly. related to issue reported by Shadoh. http://www.blender.org/forum/viewtopic.php?t=26251
2013-02-09fixed vertex weight handling of more than 3 bone weights, that milkshape ↵Alexander N
cannot support. indirect part of the reported issue: http://www.blender.org/forum/viewtopic.php?t=26251 now, vertex weights will sorted according the weight. in case of more than 3 weights, less important ones will be skipped on export.
2013-02-02changed the add-on bug tracker link to ↵Alexander N
http://projects.blender.org/tracker/index.php?func=detail&aid=34084 previously tracker http://projects.blender.org/tracker/index.php?func=detail&aid=29404 i closed.
2013-01-27moved MilkShape3D MS3D add-on from "addons_contrib" to "addons" (i got ↵Alexander N
hopefully the permission by Campbell Barton)