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
2017-10-10Fix T52945: OBJ import - load_material_image - map_options not parsed correctly.Bastien Montagne
There were two issues - last set of option's tokens would not get added correctly to map_options of current directive, and multiplification factor of bumpmap was not correctly converted to float. Thanks a bunch to @Tim Knip (timknip) for reporting the issue, investigating it and proposing this patch.
2017-10-073D Viewport Pie Menus: Avoid empty Modes pie in some caseslijenstina
Bump version to 1.1.8 Handle cases in pie_modes_menu when: - There is no active object - Object types that only have object mode available Add info messages covering them Minor cleanup (move bl_description before bl_options)
2017-10-07Copy Attributes Menu: Add a message about needed selection, cleanuplijenstina
Bump version to 0.4.8 Pep 8 cleanup Imports as tuples Update wiki link Consistent property definitions Add a menu label info about the needed selection if poll is false Add missing info strings to location, rotation an scale functions Add separators for the Object mode CTRL + C menu Fix the broken generation of Layer Menus by defining them explicitly The code for registering menus was removed
2017-10-06Bool Tool cleanup: strict naming for classesMikhail Rachinskiy
2017-10-05Fix (unreported) broken FBX import after adding forth alpha component to vcol.Bastien Montagne
2017-10-04Add multiSelection to Overlap UvsEugenio Pignataro
2017-10-02New Tool Copy Paste Uv IslandEugenio Pignataro
2017-10-02Fix T52973: Support data dimensions types, restore global_undolijenstina
Bump version to 1.0.3 Support the curve.data.dimesions passed to the main function as the previous code was only properly supporting 2D types Restore the global_undo properly to it's previous state Don't use toggle for bpy.ops.object.mode_set Add error handling in case of failure Update the tooltip
2017-10-02mesh_snap_utilities_line: dealloc bmeshGermano
The `SnapUtilitiesLine` class with all attributes are still referenced after the Operator is finished. Therefore it is better to deallocate objects that can cause possible errors when releasing.
2017-09-30Dynamic Context Menu: Fix issues with moving the object to a new layerlijenstina
Bump version to 1.8.7 Moving the active object to a different layer or switching to a different layer will cause: - Showing two contexts together (the no object one will be on top) - errors with accessing operators (as the context.object is passed) Use context.active_object as the obj var instead
2017-09-29snap_context module: Fix local ray_dir calculationGermano
2017-09-29Fix T51503 Added support for Cycles image texturesflorianfelix
2017-09-29I/O script changes for GSoC 2017 Vertex PaintCampbell Barton
These are changes to the ply and fbx export functions, and the ply import function, to deal with vertex color alphas as implemented in the GSoC 2017 Vertex Paint project - see T52910 & D2855
2017-09-28Display Tools: Fix particles issues with Fast Navigationlijenstina
Bump version to 1.6.4 Fix several issues related to drawing particles: - Particles not restored on exit - Needless modal looping through them - Hook the InitialParticles property properly Fix not restoring the viewport shading on exit Fix crash with changing Screens Some UI fixes Improve the tooltip for Fast Navigate
2017-09-27snap_context module: replace functions that access the objects internals ↵Germano
through ctypes
2017-09-26Dynamic Context Menu: Disable Group Instance if there are no Groupslijenstina
Bump version to 1.8.6 Cover the case when the bpy.data.groups is zero disable the entry as it will have just an empty menu Add the case when there is more than 10 groups similar to the space_view3d
2017-09-263D Viewport Pie Menus: Fix wrong label in preferenceslijenstina
Bump version to 1.1.7 Fix the wrong text for the End of activations label No other functional changes
2017-09-26Fix T52545: Have MeasureIt check for custom layersNBurn
2017-09-25Fix T52833: OBJ triangulate doesn't match viewportCampbell Barton
2017-09-23mesh_snap_utilities_line: change the version numberGermano
2017-09-23module snap_context: F8 constrain should not intersect outlocationGermano
2017-09-22mesh_snap_utilities_line: fixes bug with shift constrain due to recent changesGermano
2017-09-22snap_context module: fix shader compilation errorGermano
2017-09-20Fix T52846: Wrong normals when importing FBX from Revit.Bastien Montagne
Not sure when this has been broken, or whether it ever worked... To be backported to 2.79a should we do it.
2017-09-20Fix T52839: "Copy Render Settings" doesn't work.Bastien Montagne
Recent removing of registered types from bpy.types broke this, had to twist a bit around to get it working again...
2017-09-20snap_context module: add an _Internal class to hide private functionsGermano
And start to describe methods
2017-09-19Fix T52822: Incorrect dimensions of imported svg filesSergey Sharybin
Was caused by fix for T45460. Now both reports should be fixed properly.
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-18Fix T52714: Dynamic Sky not working with localization enabledlijenstina
Bumped version to 1.0.6 Adress the issue of accessing nodes with string keys Since they are translated in other UI languages could cause material generation to fail Add a poll to the operator as it only works if Cycles is enabled in add-ons Improve the tooltip If possible, to be included in the 2.79a version
2017-09-17viewport pies sculpt menu: Fix T52780meta-androcto
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-10Update for changes in BlenderCampbell Barton
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-10[mesh_snap_utilities] use new `snap_context` moduleGermano
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-09-08*Fixed texture normal_factor regressionMaurice Raybaud
*Fixed lighting attenuation for a closer match with Blender Internal
2017-09-04Fix part of T52649: When using 'selected objects' option, export could fail.Bastien Montagne
Broken logic in selecting 'best' scene to take settings from while generating temp new scene used to export selected objects only. Safe enough to be backported to 2.79
2017-09-04object_skinify.py remove os imports, cleanup. 2.79 release backport. T52536karab44
2017-09-04Cleanup: don't print missing path when it's emptyCampbell Barton
2017-09-04Resolve naming collisionCampbell Barton
Were using names from templates, tsk.
2017-09-04Fix development_edit_operator for changes in masterCampbell Barton
2017-09-04object_skinify.py fix for 2.79 release T52536meta-androcto
2017-09-04Remove redundant len checkCampbell Barton
2017-09-04Oscurart Tools: Remove duplicate bl_idname entrylijenstina
Remove duplicate bl_idname entry from the the OscObjectToMesh operator Safe to include in release No other functional changes
2017-09-04Cloud Generator: Fix typo with operator returnlijenstina
Bumped version to 1.0.2 Missed an error with the previous commit Safe to include in release No other functional changes
2017-09-03fix T52642: math_vis - avoid eror message when defining an empty array in ↵Gaia Clary
the blender console.