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
2018-11-16Fix T57863: Can't enable Node Wrangler addonPhilipp Oeser
needed since the removal of node tree panels in rB48c137ad5d5a
2018-11-15Merge branch 'blender2.8' of git.blender.org:blender-addons into blender2.8Kalle-Samuli Riihikoski
2018-11-15Wrong index count in arrayKalle-Samuli Riihikoski
2018-11-15OBJ import: Fix specPhilipp Oeser
2018-11-15Rigify: fix incorrect constraints in super_face to avoid error spam.Alexander Gavrilov
In 2.8 depsgraph prints a lot of error messages if constraints try to reference non-existant bones, which slows things down if nothing else.
2018-11-14Rigify: add missing bl_category to the generated script template.Alexander Gavrilov
2018-11-14RenderCopySettings: fix missing 'properties as annotations' change for 2.8.Bastien Montagne
2018-11-14Rigify: revert erroneous edits from Blender 2.8 update commit.Alexander Gavrilov
Fix remaining mistakes from fe90ef2b4 not corrected by 9940479d2.
2018-11-14UI Translate: fix missing named parameter in some label funcs.Bastien Montagne
2018-11-14Merge branch 'blender2.8' of git.blender.org:blender-addons into blender2.8Kalle-Samuli Riihikoski
2018-11-14fixing error when pressing update buttonKalle-Samuli Riihikoski
2018-11-14Export UV Layout: Update png export to use offscreen renderingJacques Lucke
Reviewers: campbellbarton Differential Revision: https://developer.blender.org/D3897
2018-11-13Now all objects include .3b pathKalle-Samuli Riihikoski
2018-11-13Added open .3b file featureKalle-Samuli Riihikoski
2018-11-13small ui changeKalle-Samuli Riihikoski
2018-11-13Object smooth True/False enabledKalle-Samuli Riihikoski
2018-11-13fixing 3dc->blender workflowKalle-Samuli Riihikoski
2018-11-13Fixing bugs etc..Kalle-Samuli Riihikoski
2018-11-12Merge branch 'blender2.8' of git.blender.org:blender-addons into blender2.8Kalle-Samuli Riihikoski
2018-11-12MAterial bug fixedKalle-Samuli Riihikoski
2018-11-11UI Translate: update to 2.8Ines Almeida
Make operator properties into variable annotations. Cleanup includes and descriptions. PEP-8 compliance pass.
2018-11-11Cleanup: use boolean value for boolean parameter...Bastien Montagne
2018-11-10Correction of several errors. Add operators to special menu (w).Spivak Vladimir (cwolf3d)
2018-11-10Merge branch 'blender2.8' of git.blender.org:blender-addons into blender2.8Kalle-Samuli Riihikoski
2018-11-10Texture_list bug fixedKalle-Samuli Riihikoski
2018-11-09Port Copy Render Settings add-on to 2.8.Bastien Montagne
2018-11-09FBX export: Add back (partial) support for Batch exporting.Bastien Montagne
Also extended a bit the options for batch exporting (collections give more ways to organize your scene). And added non-batch option to only export objects from active Collection. 'partial' support because until we can force generate depsgraph for inactive view layers, we cannot support exporting instances (dupli objects etc.) for batches. TODO: move the batch logic to IO helpers, that could be another decorator, to easily add the same feature to all exporters able to export several objects...
2018-11-09object_collections.py : pep8 friendlyDalai Felinto
2018-11-09Merge branch 'master' into blender2.8Philipp Oeser
2018-11-09Fix T57742: Sculpt/Paint Brush Menus fails to display constant detailPhilipp Oeser
resolution thx Tomas(MuscleLord) for spotting this!
2018-11-08Merge branch 'blender2.8' of git.blender.org:blender-addons into blender2.8Kalle-Samuli Riihikoski
2018-11-08fixes 3dc->blender workflow bugKalle-Samuli Riihikoski
2018-11-08Switch support of Import Images as Planes add-on to OFFICIAL.Bastien Montagne
As discussed during bconf, have been maintaing that one for years now, and it's quiet widely used...
2018-11-08Update for changes in Blender's APICampbell Barton
2018-11-07Blender ID: updated to latest development versionSybren A. Stüvel
2018-11-06Fix T57660: Export of STL format causes an exception.Bastien Montagne
Raising StopIteration was never a good idea to abort a generator function, and since 3.6 it's converted to a regular RuntimeError exception! Proper way to do that is just to use return statement (as long as there is a yield statement somewhere in the function code, it is a generator, and return statement has proper special handling in that case).
2018-11-06Updates for change in ViewLayer RNA API.Bastien Montagne
2018-11-06View 3D Pie Menus: Correct order in Manipulator Pie MenuJacques Lucke
2018-11-06View 3D Pie Menus: Blender 2.8 fixesJacques Lucke
2018-11-06Snap Utilities Line: Move the code of zoom with target to an operator.mano-wii
2018-11-05OBJ import: fix (remove) deprecated viewlayer handling code.Bastien Montagne
Guess that was added when layercollection of view layer could still be edited, that is no more the case (reading code), now view layers appear to always only have the scene's master collection, all others being children of that one.
2018-11-05Snap Utilities Line: FIx inverted rotation.mano-wii
And cleanup.
2018-11-05Snap Utilities Line: Use a custom rotation operator to be able to orbit ↵mano-wii
around a chosen pivot. This was previously done using `use_rotate_around_active`. But now no element of bmesh is selected.
2018-11-04port "3D Viewport Pie Menus" to Blender 2.8Jacques Lucke
I'm pretty sure that I did not find every thing that needs to be ported. At least the addon is usable again. I replaced deprecated icons with NONE. Someone else, who is responsible for this addon, can choose some new icons. Differential Revision: https://developer.blender.org/D3883 Reviewer: campbellbarton
2018-11-01Snap Utilties Line: Remove the suport of Gizmos.mano-wii
Gizmos is not the best option for this addon. For example: - you can not release objects created in the setup if you no longer need to draw the gizmo; - You can not reference the gizmo in the Operator.
2018-11-01UI: Rename "Cursor to Center" to "Cursor to World Origin"Pablo Vazquez
Just labels as well, this time for add-ons.
2018-11-01Merge branch 'master' into blender2.8Campbell Barton
2018-11-01Update for changes to Blender's APICampbell Barton
2018-11-01Snap Utilities Line: Don't pass a pointer as the property of an operator.mano-wii
Any issues redoing will crash.
2018-11-01Snap Utilties Line: fix error messagesmano-wii