Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-05-07Cleanup: sort includesJacques Lucke
2020-05-07GPencil: Include new Brush random curvesAntonio Vazquez
Now the brushes have several new random settings and use curves to define the effect. The curves have been moved below the parameter to keep UI standards and extra curve panels have been removed. {F8505387} The new curves are: * Hue. * Saturation. * Value. New option to random at stroke level instead to random at point level for the following values: * Thickness. * Strength. * UV. * Hue. * Saturation. * Value. Curves have been moved below the corresponding parameter and only are displayed in properties panel. Display the curves in the popover made it unusable. {F8505392} Also, the Pressure random has been renamed to Radius because the old name was not clear enough. Reviewed By: mendio, pablovazquez Differential Revision: https://developer.blender.org/D7577
2020-05-07Merge branch 'blender-v2.83-release'Philipp Oeser
2020-05-07Resolve keymap conflict for poselibPhilipp Oeser
Caused by rBe07b245fe1f4 (new 'Select Linked' posemode op). Above commit took CTRL+L (and this is kept for consistency with other 'Select Linked' operators). So now keymap for poselib is: poselib browse: ALT+L (was CTRL+L -- conflict here) poselib add pose: SHIFT+L (same as before) poselib remove pose: SHIFT+ALT+L (was ALT+L) poselib rename pose: SHIFT+CTRL+L (same as before) ref. D7542
2020-05-07Merge branch 'blender-v2.83-release'Philipp Oeser
2020-05-07Fix T75793: Mirror modifier UV flip only works on first UDIM TilePhilipp Oeser
Was flipping around the 0-1 range, now (optionally) flip around each tile. Also added this option for BMesh bmo_mirror. Reviewed By: campbellbarton Maniphest Tasks: T75793 Differential Revision: https://developer.blender.org/D7460
2020-05-07Merge branch 'blender-v2.83-release'Antonio Vazquez
2020-05-07Fix T76500: Annotation Tooltip in Movie Clip Editor is using old grease ↵Antonio Vazquez
pencil text
2020-05-07Fix menu search expanding file browser menusCampbell Barton
2020-05-07Fix UI string without title-caseJulian Eisel
When using Preferences->Lights->Install, the type option in the operator properties would show as "type", but should be "Type".
2020-05-06Fix Python error in scene without sequencerBrecht Van Lommel
2020-05-06Merge branch 'blender-v2.83-release'Germano Cavalcante
2020-05-06Fix T76440: Follow Track -> Constraint to F-Curve has no effectGermano Cavalcante
Differential Revision: https://developer.blender.org/D7630
2020-05-06Annotations: Add different arrow styles for line toolJuanfran Matheu
This patch adds different kind of shapes/styles for the line extremes while using the annotation line tool. Current Styles: (following @mendio mockup) - Arrow (closed arrow) - Open Arrow - Segment - Square For future it would be great to have icons, it would be more intuitive (and less space) with previews of what each end / start of line does, like the google slides one as reference: {F8511116} Reviewed By: #grease_pencil, antoniov, HooglyBoogly Differential Revision: https://developer.blender.org/D7608
2020-05-05Various fixes, cleanup and improvements to i18n module.Bastien Montagne
* Remove multi-processing in messages class update, was no giving much speedup if any at all. * Remove some debug prints. * Make messages class pickleable. * Filter better actual setting values from Settings class. * Make settings pickleable. All this will allow to use multi-processing in the i18n addon itself.
2020-05-04Nodes: add Combine Strings and Group Instance ID node UIsJacques Lucke
Reviewers: brecht Differential Revision: https://developer.blender.org/D7494
2020-05-01UI: Use property split layout and decorators for material propertiesJulian Eisel
Use the automatic property split layout (hence, change to the new 40/60% split ratio) and add decorator buttons for animatable properties. This actually applies to all node input buttons in the properties, e.g. world shading, light shading, texture nodes. Doing this makes the layout more consistent with other layouts in the properties. But the decorators are also a useful hint for users that these options can be animated. Previously using decorators and the automatic split layout wasn't possible, I've done a number of changes now to have it supported. Before I moved the socket icons to the left side, the decorators also looked weird (two circle icons next to each other). {F8497704} With nested items: {F8497708} Reviewed By: William Reynish, Pablo Vazquez Differential Revision: https://developer.blender.org/D7544
2020-04-30VSE: Add frame interpolation option to speed effectIsrael Medina
Do cross transition from current to next frame instead of displaying one image for n frames. Reviewed By: ISS, sergey, campbellbarton Differential Revision: https://developer.blender.org/D7417
2020-04-30Multires: Subdivide Simple and Subdivide LinearPablo Dobarro
This introduces two alternative subdivision modes that generates displacement on the grids that look as Simple subdivisions but while using the Catmull-Clark subdivision type in the modifier. This way, Simple and Catmull-Clark subdivision can be combined when creating new levels if needed, for example, to sculpt hard surface objects. Subdivide simple smooths the sculpted data when creating a new subdivision level. Subdivide linear also preserves the sharpness in the sculpted data. Reviewed By: sergey Differential Revision: https://developer.blender.org/D7415
2020-04-30Multires: Unsubdivide and Rebuild SubdivisionsPablo Dobarro
This implements the main unsubdivide algorithm which rebuilds a base mesh and extracts the grid's data from a high resolution mesh. It includes the Rebuild Subdivisions operator, which generates all subdivision levels down to the level 0 base mesh. It supports: - Rebuilding an arbitrary number of levels (Unsubdivide) or as many levels as possible down to level 0 in a single step (Rebuild Subdivisions). - Rebuilding with already existing grids. - Meshes with n-gons and triangles - Meshes with more than 2 faces per edge - Base mesh made completely out of triangles - Meshes without poles - Meshes with multiple disconnected elements at the same subdivision level Reviewed By: sergey Differential Revision: https://developer.blender.org/D7372
2020-04-30Multires: Enable sculpting in all subdivision levelsPablo Dobarro
Return the correct sculpt level in BKE_multires_sculpt_level_get and enable the property in the UI Reviewed By: sergey Differential Revision: https://developer.blender.org/D7575
2020-04-30GPencil: Add material selector to context menusAntonio Vazquez
Now it's possible to select the material in context menu and new menu to select material. The patch and workflow has been tested in greasepencil-object branch. * New Material selector in Draw mode Context menu: {F8499259} * Pressing `U`key in Draw mode display material menu. {F8503224} Reviewed By: mendio, pepeland Differential Revision: https://developer.blender.org/D7554
2020-04-30Merge branch 'blender-v2.83-release'Sebastián Barschkis
2020-04-30Fluid: Removed domain size option from diffusion panelSebastián Barschkis
Domain size parameter no longer needed (unsed right now). Domain size is directly taken from object.
2020-04-30Outliner: Add new delete operatorNathan Craddock
In the industry standard keymap, both deleting objects and collections were mapped to the same keys causing confusion when only collections could be deleted through the keymap. This adds a new delete operator to delete all selected objects and collections, accessible from both the keymap and context menu. Now any selected objects and collections are deleted when Delete is chosen from the keymap. This also updates the tooltip description which was previously undocumented. Resolves T67462
2020-04-29Tracking: Implement Nuke/Natron distortion modelSergey Sharybin
Neither Nuke nor Natron support OpenCV's radial distortion model which makes it impossible to have any kind of interoperability. The new model is available under the distortion model menu in Lens settings. Differential Revision: https://developer.blender.org/D7484
2020-04-29Merge branch 'blender-v2.83-release'Philipp Oeser
2020-04-29Fix T75522: Math node truncate operator tooltip provides no explanationPhilipp Oeser
2020-04-29Merge branch 'blender-v2.83-release'Philipp Oeser
2020-04-29Armature posemode: add mouse independent "Select Linked" operatorPhilipp Oeser
The current "Select Linked" operator works based on mouse position and makes no sense to call from the menus and was removed in rB536055e1ee0b. This patch adds an operator independent from mouse position that just selects all bones in relation to selected bones (and adds back menu entries, adds keymap entry CTRL+L). The original operator is renamed to 'select_linked_pick' internally (this is now more in line to how "Select Linked" works for meshes, curves etc) ref T76071 Maniphest Tasks: T76071 Differential Revision: https://developer.blender.org/D7542
2020-04-28GPencil: Remove redundant Control word from UIAntonio Vazquez
2020-04-28Merge branch 'blender-v2.83-release'Brecht Van Lommel
2020-04-28Fix T75973: don't show raw Python errors to users for invalid shortcut pathsBrecht Van Lommel
There are cases when a user can accidentally assign an operator to toggle an invalid property to e.g. left click, which shows Python errors to the users. Rather than throw an error and e.g. break 3D viewport selection for the user, just print an error to the console. The root cause of such bugs should be fixed as well, but a working Blender is most important here.
2020-04-28Cleanup: trailing whitespaceJacques Lucke
2020-04-27Merge branch 'blender-v2.83-release'Philipp Oeser
2020-04-27remove "Select Linked" from the posemode select menuPhilipp Oeser
The operator in its current state is based on mouse position and doesnt make sense to be called from a menu. (In fact it should be called 'select_linked_pick' internally and a separate 'select_linked' should be implemented similar to how "Select Linked" works for meshes, curves etc -- see D7542 for this) Note: We had the same thing for particles recently: rBdd9dfadaac9b: remove "Select Linked" from the particle select and context menu rB5ca7c85e105d: Particle editmode: add mouse independent "Select Linked" operator Fixes T76071 Maniphest Tasks: T76071 Differential Revision: https://developer.blender.org/D7543
2020-04-27VSE: Remove decorate from Expand and Mute in ModifiersPeter Fog
Remove decorate from Expand and Mute in VSE Modifiers, since these elements aren't using decorate elsewhere. Reviewed By: billreynish Differential Revision: https://developer.blender.org/D7420
2020-04-24UI: Move Scene Statistics to the 3D ViewportHarley Acheson
Removes statistics from footer and to an (optional) overlay in 3DView. Differential Revision: https://developer.blender.org/D7410 Reviewed by Campbell Barton
2020-04-24Merge branch 'blender-v2.83-release'Campbell Barton
2020-04-24UI: add mesh skin-resize to menuCampbell Barton
Resolves T75925
2020-04-22Reset submodule to the right place in masterDalai Felinto
Accidently changed on rB0dfe30502a02.
2020-04-22Merge branch 'blender-v2.83-release'Robert Guetzkow
2020-04-22Fix T75938: Workbench normal direction for matcapsRobert Guetzkow
Set useMatcap to ensure correct normal direction when using matcaps in the workbench engine.
2020-04-22Merge branch 'blender-v2.83-release'Sebastián Barschkis
2020-04-22GPencil: Change Thickness Profile iconAntonio Vazquez
2020-04-22Fluid: Added missing outflow object type to enable / disable flow flagSebastián Barschkis
There is no reason to not include outflow objects here too.
2020-04-22Fluid: Minor UI fix for diffusion panelSebastián Barschkis
Was missing active option.
2020-04-22Cleanup: comment and semicolonsJacques Lucke
2020-04-21UI: Use heading for File Browser column toggles in popoverWilliam Reynish
2020-04-21Merge branch 'blender-v2.83-release'Jacques Lucke