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-11-08ui_translate: make it resilient to ASAN errors at exit.Bastien Montagne
We do want to catch actual errors from message extraction process, but not dummy ASAN complaining about memleaks!
2017-11-06Fix T53254: Fbx import assertion error on some Enum custom property.Bastien Montagne
Do not try to get some string namecode of Enum items if string part of the custom FBX Enum property is empty! Just stick to basic int value in this case.
2017-11-02Fix T53136: Make the .gpl palette import more robustlijenstina
Bump version to 0.9.3 Make the gpl preset execution more robust: - Don't load non .gpl files in the preset menu - Use re.split instead of the fixed slicing - Add messages about failure to read the file and filepath Small cleanup Note: Probably there could be more cases when the import of a valid palette file can fail, or parsing can be improved
2017-11-02Cleanup: redundant texture lookupCampbell Barton
2017-11-02system_demo_mode: correct hidden file skippingCampbell Barton
2017-10-31Add option to control FBX 'empty' type through a string custom property in ↵Bastien Montagne
Blender's empty. Based on https://developer.blender.org/D2279 by Pavel Křupala (@pavelkrupala), thanks.
2017-10-31Fix T53202: Complex armature with bone constraints, FBX export bug.Bastien Montagne
Need more scene updates in FBX anim export code to ensure we do get sane poses...
2017-10-31Fix T53209: FBX exporter: Add very basic diffuse-color exporting for ↵Bastien Montagne
node-based materials.
2017-10-30fix: Encode Widget btn not showing in ToolsLucio Rossi
2017-10-25T53024 fix n-panel Switch rotation-pole not working for bones wo keysLucio Rossi
2017-10-25T53019 fix paw toe bones following foot ctrl when IK_Stretch=0Lucio Rossi
2017-10-25mesh_snap_utilities: Remove redundant lines, organize and make it more stableGermano
Any reference to elements of a bmesh must be deleted before the operator finishes. This prevents unpredictable crashes.
2017-10-23Wrap array access for width property in a if-statement to avoid errors with ↵Lukas Treyer
empty arrays. see T53094.
2017-10-19Fix T53103: FBX: Add diffuse_color material animation import.Bastien Montagne
Based on patch by Gábor Vásárhelyi (@vasarhelyi), just slightly modified mainly to avoid another extra dict.
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-18Fix T53065: stupid animation linked to nothing in FBX file broke import.Bastien Montagne
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-10-15Bool Tool: Add missing bl_idname to VIEW3D_MT_booltool_menulijenstina
It was removed in a previous commit However it was used in VIEW3D_BoolTool_Menu Break up some lines longer than 120 characters No other functional changes
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