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-09-05PyAPI: Remove CyclesShaderWrapperAaron Carlisle
This has been replaced in 2.80 with PrincipledBSDFWrapper which python developers should use instead. Internally CyclesShaderWrapper is no longer used however, 3rd party scripts may still be using this which means they must update scripts for Blender 2.81.
2019-08-25Cleanup: Move RNA Manual References to ModulesAaron Carlisle
This file used to be stored in the Add-ons repository to allow easy commit access for updating. Since then, we have created an automated process, the script can now easily be updated by anyone. This also makes more logical sense to store the file here as it is not an add-on.
2019-07-25Update Online Manual LinksAaron Carlisle
To be included in 2.80 release
2019-07-08Cleanup: remove unused selection_utils moduleCampbell Barton
2019-07-05Manual Reference: UpdateAaron Carlisle
2019-07-02Add back documentation link mapping for the join_shapes operatorInes Almeida
2019-06-30Update documentation link mapping for shape keysInes Almeida
2019-06-28RNA Manual Ref: Initial Update for 2.8Aaron Carlisle
2019-05-13Shaders: update for color space moving from node to image datablockBrecht Van Lommel
2019-04-18Fix lots of various issues failing automated test load/unload/reload.Bastien Montagne
2019-02-06Update for removal of dupliframes and slow parent.Brecht Van Lommel
2019-02-06Cleanup/fix T61233: FBX export error if action key exist.Bastien Montagne
Please do basic grep on whole source repo (including add-ons & co) when removing RNA property (or any other change affecting the API)...
2019-01-08Fix (unreported) calling Online Manual from context menuPhilipp Oeser
2018-12-21Rename user_preferences -> preferencesCampbell Barton
2018-11-28Use collection and instance terminology in Python APISergey Sharybin
This follows naming convention agreed on in T56648.
2018-10-30Cleanup: remove unused modulemano-wii
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-10-10Update for removal of tessfaces.Brecht Van Lommel
This ports the already working addons. The disabled x3d, psk, lwo, 3ds, raw, dxf addons still need to be converted.
2018-10-05Update for border select -> box select renameCampbell Barton
2018-09-07Merge branch 'master' into blender2.8Campbell Barton
2018-09-07Cleanup: trailing spaceCampbell Barton
2018-09-062.8: update for x_ray and draw/display renaming.Brecht Van Lommel
2018-07-06Update for renaming lamp to light.Brecht Van Lommel
2018-04-30Merge branch 'master' into blender2.8Sergey Sharybin
2018-04-17A few addons related cleanup after BGE removalDalai Felinto
2018-03-30RNA Manual Reference: UpdateAaron Carlisle
2018-03-10Cycles: update addons for squared roughness convention.Brecht Van Lommel
2017-12-01snap_context: Make sure that the elements of the class GPU_Indices_Mesh are ↵Germano
freed at exit This may solve some user application errors. But the message "Error: Not freed memory blocks" still appears if blender is closed with the modal operator running :\
2017-10-19Remove extensions_framework moduleCampbell Barton
This is no longer used by release or contrib add-ons. While interesting to use declarative definitions, this adds a layer between Blender's API's and scripts, which needs to be maintained and updated with Blender.
2017-10-17Snap utilities: Avoid any OpenGL resources allocations for class membersSergey Sharybin
OpenGL is not available in background mode, which was making unit tests to fail. Additionally, it will cause some unwanted noise when someone renders his project from command line, or performs any other command-line operation with Blender.
2017-10-15Fix T53074: Make sure that the c_int used in snap_context has 32-bit sizeGermano
2017-09-29snap_context module: Fix local ray_dir calculationGermano
2017-09-27snap_context module: replace functions that access the objects internals ↵Germano
through ctypes
2017-09-22snap_context module: fix shader compilation errorGermano
2017-09-20snap_context module: add an _Internal class to hide private functionsGermano
And start to describe methods
2017-09-19snap_context module: Fix depth_range in Ortho viewGermano
Objects behind the coordinate `(0, 0, 0)` were being ignored with snap in Ortho view
2017-09-18snap_context module: Improve efficiency by using numpy arrays instead of ↵Germano
bgl.Buffer Performance improves hundreds or even thousands of times in some cases with Meshs VBO creation
2017-09-17snap_context module: use `intersect_line_plane` instead `intersect_ray_tri`Germano
`intersect_ray_tri` returns None when the ray is after the tri.
2017-09-15snap_context module: alloc the smallest possible size in ↵Germano
`np_array_as_bgl_Buffer(array)`
2017-09-15snap_context module: Use clip planes exposed by RNAGermano
2017-09-15module `snap_context`: Fix `gpu_Indices_use_clip_planes`Germano
2017-09-10Workaround the weird bug "Not freed memory blocks" due GPU_Indices_MeshGermano
Strange that if you disable the addon before closing the blender, this error message does not appear
2017-09-10New `snap_context` module for `addons/module`Germano
This module basically uses OpenGL to draw, in an offscreen, the vertices, edges and tris of specific objects and use colors as information for snap
2017-08-01Revert "Update lanuages"Campbell Barton
This reverts commit 15ce79c680dd63e5d54cc8ec28ad2c4d87a813ac. Turns out URL's stay the same
2017-08-01Update lanuagesCampbell Barton
2017-07-02Update RNA_Manual linksAaron Carlisle
2017-06-29Update rna_manual_reference to latest versionAaron Carlisle
Address issue raised in T51908
2017-06-24Replace rna manual reference with auto generated fileAaron Carlisle
2017-05-27OBJ import: Add basic support for Cycles shaders.Bastien Montagne
This code uses same wrapper as FBX importer to generate a basic nodal shader for Cycles material. Note that not all MTL features are supported, some might be possible to add later though.