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-12Merge branch 'blender-v2.83-release'Clément Foucault
2020-05-12Fix T76113 GPU: Crash closing file browsers with AMD GPUsClément Foucault
This fixes crash in the free mesa driver for amd gpus. This crash seems to only happen on linux.
2020-05-12UI: Rename 'View Zoom In/Out' to 'Zoom In/Out'Pablo Vazquez
This rename was done time ago but still missing in some areas.
2020-05-12UI: Rename 'View All' operator to 'Frame All'Pablo Vazquez
This change was done time ago but it was still missing in some operators.
2020-05-12Merge remote-tracking branch 'origin/blender-v2.83-release'Sybren A. Stüvel
2020-05-12Fix T76669: Crash when doing right click on channelJacques Lucke
Reviewers: lichtwerk, sybren Differential Revision: https://developer.blender.org/D7702
2020-05-12Merge branch 'blender-v2.83-release'Campbell Barton
2020-05-12Cleanup: tag unused functionCampbell Barton
2020-05-12Fix Frame Dropping not dropping the correct amount of framesSebastian Parborg
Previously the playback mode "Frame Dropping" would not drop the correct number of frames which would lead to slow playback. For example, the playback target is 60fps. However we can only muster around 32 fps. The delta frames from the last step is in this case ~1.98 or so. With the previous code, we would floor this. That would lead us to step forward one frame each time, effectively playing back the animation at half the speed as we will try to render every frame. To fix this we simply save the remaining fraction from the previous frame and use it to compute the current frame step. Reviewed By: Sybren Differential Revision: http://developer.blender.org/D7694
2020-05-12UI: invoke operators in search menu instead of executeJacques Lucke
Reviewers: campbellbarton Differential Revision: https://developer.blender.org/D7639
2020-05-12Preferences: Customize default empty size for collection instancesJacques Lucke
The old value (1.0) was often too large in practice. When many collection instances are created, the large empties create a mess in the viewport. This adds a new preference setting in `Editing -> Objects -> New Objects` called `Instance Empty Size`. The value will be used as display size for new empties containing a collection instance. Reviewers: Severin Differential Revision: https://developer.blender.org/D7650
2020-05-12Merge branch 'blender-v2.83-release'Antonio Vazquez
2020-05-12Fix T73973: GPencil Fill fails when zoom the imageAntonio Vazquez
The problem was related of how the initial pixel to create outline was detected. Now, a limit is set for any image to keep a fillable image in all situations, not only when some strokes contain the fill.
2020-05-12GPencil: Cleanup wrong ID deleteAntonio Vazquez
Differential Revision: https://developer.blender.org/D7691
2020-05-12Merge branch 'blender-v2.83-release'Campbell Barton
2020-05-12Merge branch 'blender-v2.83-release'Campbell Barton
2020-05-12Fix T71882: Offset Edge Slide doesn't switch selection modeCampbell Barton
Based on D6335 with modifications.
2020-05-12Fix EDBM_selectmode_disable_multi_ex return valueAnthony Edlin
This always return changed, even when no changes were made.
2020-05-12Merge branch 'blender-v2.83-release'Campbell Barton
2020-05-12Cleanup: remove DNA_screen_types.h, use struct qualifierCampbell Barton
Also remove draw-manager & depsgraph headers in interface_icons.c Change this in 2.83 to prevent merge issues in master with interface_intern.h header.
2020-05-12UI: undo/redo support for text fieldsHans Goudey
Support undo/redo when editing text buttons.
2020-05-12Fix T76285: Missing 'Toggle X-Ray' operator descriptionAaron Carlisle
Author: @Alaska Differential Revision: https://developer.blender.org/D7591
2020-05-11Merge branch 'blender-v2.83-release'Philipp Oeser
2020-05-11Fix (unreported) greasepencil crash calling transform_fill from outsidePhilipp Oeser
3DView Operator relies on 3DView, poll for it. Spotted while looking into T76522. Reviewers: antoniov Differential Revision: https://developer.blender.org/D7665
2020-05-11Fix T76504: Extrusion doesn't take in account the current transform orientationGermano Cavalcante
Use orientation defined in the scene when changing constraint
2020-05-11Revert "Fix T76504: Change in behavior of constraints orientation"Germano Cavalcante
This reverts commit 2f63e479313332756d0879b841527a31fa1d30b3.
2020-05-11Fix error in last transform orient commitGermano Cavalcante
2020-05-11Merge branch 'blender-v2.83-release'Clément Foucault
2020-05-11Fix T76216 Workbench: Glicht when switching from quad views to normal viewClément Foucault
This was because of the use of uninitialized buffers for TAA. This patch is a quick fix for the issue which is a missing tagging for a complete viewport update.
2020-05-11Merge branch 'blender-v2.83-release'Bastien Montagne
2020-05-11Fix T76559: Crash after deleting material leaves invalid pointer in node editor.Bastien Montagne
No idea why node editor remap callback was only handling scene IDs (and not any other ntree owner)... Note that this should be a safe fix, but it unvails a nice can of worm, at some point we should ba able to handle all of that through libquery only, get rid of editor's remap callbacks, and probably sanitize usages of ID pointers by some of them, like that nodetree editor. Current situation remains a fairly fragile mess...
2020-05-11Merge branch 'blender-v2.83-release'Julian Eisel
2020-05-11Fix T76621: UILayout.prop_search() broken for data-block namesJulian Eisel
If the search menu was used for a string property, and a data-block was selected from the search, the value set would be an invalid name. The property would get the modified UI string, not the proper data name set. Mistake in rBd6cefef98f87. This is more of a temporary fix to make the menu behave like before above's commit. So the library hints this added will not be shown for string properties anymore. This would need further changes in the UI code (see https://developer.blender.org/P1380) but is too unsafe for 2.83 at this point. Even if this is done, the note below still applies. NOTE: Data-blocks should not be referenced by name only, as it's possible to have duplicate data-block names with linking and especially with library overriding. Instead, pointer properties should be used, `UILayout.prop_search()` can then properly deal with linked and overridden data-blocks.
2020-05-11Fix T74713: Unpredictable active texture node for WorkbenchSergey Sharybin
The selection operator was not being correctly marked for update. This restores the behavior seen in blender 2.79.
2020-05-11Fix T74713: Unpredictable active texture node for WorkbenchSergey Sharybin
The selection operator was not being correctly marked for update. This restores the behavior seen in blender 2.79.
2020-05-11Merge branch 'blender-v2.83-release'Sergey Sharybin
2020-05-11Fix T76512: Sculpt mode: crash when applying baseSergey Sharybin
Differential Revision: https://developer.blender.org/D7663
2020-05-11Fix T76630: Crash when changing transform value with Custom OrientationGermano Cavalcante
2020-05-11Annotations: Small tooltip changeAntonio Vazquez
2020-05-11Annotations: Add Stabilization for draw toolJuanfran Matheu
This patch adds the stabilizer feature of GP to the annotations. It has a toggle to activate it "Use Stabilizer", and two properties to control the behaviour of the smooth effect (factor and radius). You can also use shift at start or in the air to temporaly use this feature. {F8518283} Differential Revision: https://developer.blender.org/D7648
2020-05-11UI: show tool-tips in menu searchCampbell Barton
2020-05-11Merge branch 'blender-v2.83-release'Campbell Barton
2020-05-11UI: apply vertical tool-tip offset in pixel-spaceCampbell Barton
Was applying in ui-block space which changed offset at different zoom levels.
2020-05-11Cleanup: unused arg, clang-formatCampbell Barton
2020-05-11Cleanup: unused variableCampbell Barton
2020-05-10Cleanup: add ED_screen_areas_iter to clang-format ForEachMacrosJacques Lucke
2020-05-10Merge branch 'blender-v2.83-release'Richard Antalik
2020-05-10Fix T36263: Pasted strip doesnt have F-Curve keyframes from the originalRichard Antalik
Original code for copying strips tried to change strip name 2 times before copying and once again after pasting. Store structs in clipboard in unchanged state, so we can reference data after pasting easily. Better method would probably be storing animation data in clipboard as well, so we can copy animated strips even between scenes. Reviewed By: brecht Differential Revision: https://developer.blender.org/D7638
2020-05-10Merge branch 'blender-v2.83-release'Richard Antalik
2020-05-10Fix T71300: Crash on rendering scene recursively from sequencerRichard Antalik
Adding recursive scenes has been disabled, but old files still can be opened. Add check if scene will render itself. Opening such file will produce warning on open and error on running render. Reviewed By: campbellbarton Differential Revision: https://developer.blender.org/D7562