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-02-11Fix T73656: Use BKE_brush_alpha_get in texture paintPablo Dobarro
The code was using brush->alpha directly, so the alpha value from UnifiedPaintSettings was not used when eneabled. Reviewed By: brecht Maniphest Tasks: T73656 Differential Revision: https://developer.blender.org/D6804
2020-02-11Fix T70039, T68707: issues when opening .blend file from Finder on macOSYevgeny Makarov
* Missing close dialog displayed to warn about unsaved changes. * No reaction when the file was opened on a different desktop. Differential Revision: https://developer.blender.org/D6765
2020-02-11Nodes: Add dynamic label support for Math NodesCharlie Jolly
Reviewed By: brecht Differential Revision: https://developer.blender.org/D6375
2020-02-11Cleanup: Sculpt/Paint, use correct types and iterator variable declarationPablo Dobarro
Reviewed By: brecht Differential Revision: https://developer.blender.org/D6788
2020-02-11Cleanup: Sculpt, Comment formattingPablo Dobarro
Reviewed By: brecht Differential Revision: https://developer.blender.org/D6792
2020-02-11Fix T73706: Crash after disabling dyntopo with multires modifierPablo Dobarro
ss->multires is set in sculpt_update_object, which is not called just after disabling dyntopo, so it needs to be checked before running reshapeFromCCG Reviewed By: campbellbarton, brecht Maniphest Tasks: T73706 Differential Revision: https://developer.blender.org/D6801
2020-02-11Merge branch 'blender-v2.82-release'mano-wii
2020-02-11Fix Attempt to free NULL pointermano-wii
Assert when snapping `Selection to ...` but without objects. Missed in the last commit.
2020-02-11Node Editor: node resize can now be cancelled, like other operatorsMatthias Ellerbeck
Differential Revision: https://developer.blender.org/D6800
2020-02-11UI: improve graph editor channels drawingAlessio Monti di Sopra
The channel color squares are no longer positioned under the visibility icon, since contrast is poor. Instead they are thinner and drawn on the left side, before the visibility icon. If the curve is hidden, the color gets less opaque. Differential Revision: https://developer.blender.org/D5882
2020-02-11Fix T64024: monitor/fullscreen switching on macOS shows red line artifactsYevgeny Makarov
2020-02-11Fix Attempt to free NULL pointermano-wii
Assert when snapping `Selection to ...` but without objects.
2020-02-11DRW: Color Management improvementClément Foucault
Reviewed By: brecht sergey jbakker Differential Revision: http://developer.blender.org/D6729
2020-02-11install_deps.sh: correct clang/llvm download URLsPhilipp Oeser
2020-02-11Fix: Build error on windowsRay Molenkamp
USD "library" directory was not set, leading to an error during the INSTALL phase.
2020-02-11Merge branch 'blender-v2.82-release'Sergey Sharybin
2020-02-11Fix T73675: Leaving exit mode tags all objects for updateSergey Sharybin
This is an oversight of a fix for T69834, where I didn't realize the ED_object_editmode_exit_ex() function is called for all objects as an opposite of only the ones which were in edit mode. Seems a simple fix: just move tag into a check that object was in the edit mode prior to tag. Differential Revision: https://developer.blender.org/D6808
2020-02-11Merge branch 'blender-v2.82-release'Campbell Barton
2020-02-11Fix memory leak with 2D image paintingCampbell Barton
Regression from c30d6571bb477
2020-02-11Documentation: add note on altering data from frame change handlersSybren A. Stüvel
Blender can crash while rendering, when scene data is changed from within a `frame_change_pre` or `frame_change_post` callback function. This results in bug reports like T60094, T67627, and T73530. Until this is properly resolved, this limitation should be documented. No functional changes.
2020-02-11Fix T68243: Python sqlite module not working on macOSBrecht Van Lommel
2020-02-11CLeanup: clang-formatCampbell Barton
2020-02-11Cleanup: minor edit to last commitCampbell Barton
Avoid repeating the fallback return.
2020-02-11Fix T73348: Surface Deform distortion on bind with small facesCampbell Barton
Thanks to @CodyWinch for finding the root cause
2020-02-11Merge branch 'blender-v2.82-release'Campbell Barton
2020-02-11Fix T73682: Sampling color fails for float imagesCampbell Barton
2020-02-11Fix T73695: line highlight jitters with smooth scrollKai Jægersen
2020-02-11UI: Use popup dialog for make single user from operator searchCampbell Barton
Use a popup since the default action was to do nothing, the user would always need to access the redo panel. Resolves T73711.
2020-02-11Fix T56108: Crash editing corrupted vertex groupsCampbell Barton
While the file in this report had corrupted values, this is avoidable without adding any extra overhead. Use unsigned vertex group indices since we don't need negative values, this is an alternative to checking they aren't negative in many places. Vertex group values over INT_MAX is still considered invalid, so any accidental unsigned wrapping won't be silently ignored.
2020-02-11Cleanup: remove duplicate, commented structsCampbell Barton
2020-02-11Cleanup: extra semicolons, comma use, undeclared varsCampbell Barton
2020-02-11Cleanup: unused headersCampbell Barton
2020-02-11Cleanup: add license header, use header guardsCampbell Barton
2020-02-11Doc: update to T73699 fixCampbell Barton
It's important to refer to "other selected objects" in this case.
2020-02-11Doc: simplify T72883 fixCampbell Barton
Code example made it seem setting the active object was more complex than a single assignment.
2020-02-11RNA: Raise error assigning an active object which doesn't existCampbell Barton
Previously this silently cleared the view layers active object.
2020-02-10Fix T72883: Correct Context UsageAaron Carlisle
2020-02-10Fix T73699: Unhelpful error message when trying to knife project a manifold ↵Aaron Carlisle
object
2020-02-10Revert "Sculpt: Remove partial viewport updates from sculpt stroke code"Pablo Dobarro
This reverts commit 394b48029c5335381f774f83524ad6ee5cb986da. Leaving this here does not affect performance in any significant way and it may be useful in the future. Reviewed By: brecht Differential Revision: https://developer.blender.org/D6688
2020-02-10Fix T72690: Do not draw points behind the viewport camera in the paint cursorPablo Dobarro
In some situations the symmetry point may be behind the camera, so the projection is inverted and it looks wrong. This avoids drawing points in screen space when they are behind the camera. Reviewed By: jbakker Maniphest Tasks: T72690 Differential Revision: https://developer.blender.org/D6487
2020-02-10Fix T66349: Add missing update for face orientation overlayPablo Dobarro
This forces the full geometry when that overlay is enabled. I would rather not support this and leave that bug as a know issues/ limitation because this is terrible for performance and people may not be aware that by enabling the option they are disabling the optimization. Reviewed By: jbakker Maniphest Tasks: T66349 Differential Revision: https://developer.blender.org/D6552
2020-02-10Cleanup: Fix warning (unused variable)Dalai Felinto
2020-02-10Cleanup: Rename `BKE_library_override_` functions to `BKE_lib_override_library_`Bastien Montagne
pqrt of T72604.
2020-02-10Updated install_deps to latest required OSL/LLVM.Bastien Montagne
2020-02-10CTest: Disable the cross test from the avxf unit tests.Ray Molenkamp
Test fails on AVX2, I'll look into this but until the cause is determined the test will be disabled
2020-02-10Refactor: move `Library`-specific functions into proper `BKE_library` file.Bastien Montagne
Even though we do not have much of those, this might change in the future, and in any case having specific functions for this ID type in generic `BKE_lib` area was really confusing.
2020-02-10Fix mismatch in BKE headers' multi-include safeguards naming.Bastien Montagne
Forgot to update those in recent `BKE_lib_` files renames.
2020-02-10Cleanup CLOG identifiers in BKE_lib' implementation files.Bastien Montagne
2020-02-10Merge branch 'blender-v2.82-release'Lukas Stockner
2020-02-10Fix unreported: Packing/unpacking errors don't mention tiled imagesLukas Stockner
Thanks to @dfelinto for spotting this!