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-02-13Network Renderer: redirecting Documentation wiki linkv2.79ablender-v2.79a-releaselijenstina
Bump version to 1.8.1 As mentioned in T54062: Since the previous link was pointing out to the old Wiki Manual, created the appriate page on the Add-ons wiki. No other functional changes
2018-02-13Comment another crashing menu entry in mesh extra tools addon, for 2.79a.Bastien Montagne
Requested by @lijenstina over IRC.
2018-01-31Revert "Fix T52839: "Copy Render Settings" doesn't work."Bastien Montagne
This reverts commit 7b2369de9e777e279f111169b43eef78729004f6. This fix is for changes in master, that did not happen in 2.79 release (and were not backported to 2.79a either), so should never have been committed in that branch, my bad.
2018-01-22Comment out some features in Ivy gen, for 2.79a only.Bastien Montagne
Fix is too complex to be included in a bugfix release, so alternative solution is to disable broken stuff. :|
2018-01-22Fix T53841: Can not import .obj or .fbx generated from Marvelous DesignerBastien Montagne
FBX part at least - note that we are actualy coping with totally invalid FBX file, strings there should always be in utf-8 encoding as per offcial FBX doc... But this error-handling does not hurt really. Based in D3012 by Philipp Oeser (@lichtwerk). To be backported to 2.79a.
2018-01-08fix #T53706 : write cmd script into writeable temp folderStephen Leger
2018-01-08Fix T53707: Error on export FBX object [PointLighs].Bastien Montagne
Inverse Coefficients decay method was added later, never made it to FBX exporter. Note that this is very limited approxiamtion/simplification here, we cannot really export this correctly. To be backported to 2.79a. Conflicts: io_scene_fbx/__init__.py
2018-01-06Display 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
2018-01-06Fix 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
2018-01-06Fix T53406: Avoid toggling visibility on Collision modifierlijenstina
Bumped version to 0.2.5 Since the Collision modifier visibility was not exposed in the UI trying to avoid unreliable results related to physics and possibly broken setups, for now skip it in the add-on Add reports about skipping: - Skipped modifier name is appended - If there are only skipped modifiers, add a new message about it Correct bl_name of some operators so they are easier to search
2018-01-06HiRISE DTM Importer: Fix operator call through Python, minor cleanuplijenstina
Bump version to 0.2.2 Merge Differential revision: D2926 The importer should be called with: bpy.ops.import_mesh.pds_dtm Replace deprecated imp calls with importlib Move bl_info on top of the file Imports as tuples Update wiki link ReloadTerrain operator: - add a poll to prevent crashes when called through search with no object
2018-01-06Fix easy latticeCampbell Barton
D2943 by @deadpin - Removes broken/unused code that would attempt to delete already added easy-lattices - Allows the creation of multiple easy-lattices in the same scene AND for the same object (incl. support for multiple vertex groups) - Add scale factor so the user can create lattices smaller/larger than the target mesh - Add Catmull-Rom option - Code style (variable naming, UI naming, return values, etc.) - Support local-view, thanks to @lijenstina
2018-01-06Copy 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
2018-01-06fix T53355: missing Rot2Pole switch operator when Rigify is disabledLucio Rossi
2018-01-02Applying D2933: Adds support for elevation attribute for lwpolylines (code ↵Lukas Treyer
38), fixes a bug when segmenting (lw)polylines, adds support for gradians.
2018-01-01Fix 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. Conflicts: io_scene_fbx/__init__.py
2018-01-01Add 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. Conflicts: io_scene_fbx/__init__.py
2018-01-01Fix 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... Conflicts: io_scene_fbx/__init__.py
2018-01-01Fix T53065: stupid animation linked to nothing in FBX file broke import.Bastien Montagne
Conflicts: io_scene_fbx/__init__.py
2018-01-01Fix for Fix (c): T52945: OBJ import - load_material_image - map_options not ↵Bastien Montagne
parsed correctly. rBAe8f09a8e0b28 missed the case where we have no bump multiplicator at all! Thanks to sebastian_k for the report over IRC.
2018-01-01Updated Blender ID add-on to version 1.4.1Sybren A. Stüvel
- Improved error reporting when validating a token fails due to connection errors.
2018-01-01io_export_paper_model: update to upstream 7fe2553Adam Dominec
fix baking in both Cycles and BI
2018-01-01Updated Blender ID add-on to version 1.4:Sybren A. Stüvel
- Added an extra date/time format for parsing the authentication token expiry date. - Always show the "Validate" button when the user is logged in. This actively checks the token with the server, whereas the "You are logged in" only bases that statement on locally-available information (there is a token and it hasn't expired yet).
2018-01-01ui_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!
2018-01-01Cleanup: redundant texture lookupCampbell Barton
2018-01-01system_demo_mode: correct hidden file skippingCampbell Barton
2018-01-01fix: Encode Widget btn not showing in ToolsLucio Rossi
2018-01-01T53024 fix n-panel Switch rotation-pole not working for bones wo keysLucio Rossi
2018-01-01T53019 fix paw toe bones following foot ctrl when IK_Stretch=0Lucio Rossi
2018-01-01Wrap array access for width property in a if-statement to avoid errors with ↵Lukas Treyer
empty arrays. see T53094.
2018-01-01Fix 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.
2018-01-013D 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)
2018-01-01Dynamic 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
2018-01-01Dynamic 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
2018-01-013D 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
2018-01-01Fix T52545: Have MeasureIt check for custom layersNBurn
2018-01-01Fix T52833: OBJ triangulate doesn't match viewportCampbell Barton
2018-01-01Fix 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.
2018-01-01Fix 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...
2018-01-01Fix T52822: Incorrect dimensions of imported svg filesSergey Sharybin
Was caused by fix for T45460. Now both reports should be fixed properly.
2018-01-01Fix 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
2018-01-01viewport pies sculpt menu: Fix T52780meta-androcto
2018-01-01*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.v2.79blender-v2.79-releaseBastien 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-04object_skinify.py fix for 2.79 release T52536meta-androcto
2017-09-04object skinify, platform compatibility, Fix T52536meta-androcto
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-04fix T52642: math_vis - avoid eror message when defining an empty array in ↵Gaia Clary
the blender console.