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
path: root/source
AgeCommit message (Collapse)Author
2020-05-21Refactor: Move NOP idtypes foreach_id to new IDTypeInfo structure.Bastien Montagne
2020-05-21GPencil: Cleanup macroAntonio Vazquez
2020-05-21Fix T76935: Current orientation not taken in account when using "Align to ↵Germano Cavalcante
transform orientation"
2020-05-21Fix T76933: 'Align to Transform Orientation' crashes for Custom orientationsGermano Cavalcante
2020-05-21Merge branch 'blender-v2.83-release'Campbell Barton
2020-05-21Docs: note that the color-ramp uses image alphaCampbell Barton
Avoid misunderstanding from T59110
2020-05-21Merge branch 'blender-v2.83-release'Campbell Barton
2020-05-21Fix T73568: Vertex selection fails in weight-paint modeCampbell Barton
Lasso, circle, box select fails in weight paint mode with modifiers.
2020-05-21Merge branch 'blender-v2.83-release'Campbell Barton
2020-05-21Fix T76922: Meta-balls created twice the specified sizeCampbell Barton
2020-05-21Merge branch 'blender-v2.83-release'Campbell Barton
2020-05-21Merge branch 'blender-v2.83-release'Campbell Barton
2020-05-21Merge branch 'blender-v2.83-release'Campbell Barton
2020-05-21Cleanup: spellingCampbell Barton
2020-05-21Cleanup: quiet uninitialized warningCampbell Barton
It's possible for the value to be uninitialized in the case of loading newer preferences into an older Blender.
2020-05-21Merge branch 'blender-v2.83-release'Campbell Barton
2020-05-21Merge branch 'blender-v2.83-release'Campbell Barton
2020-05-21Cleanup: add doxy sections for event queue handlingCampbell Barton
The main function to handle events didn't have it's own section.
2020-05-21Cleanup: add asserts for textview drawingCampbell Barton
This would have prevented T74298.
2020-05-20Merge branch 'blender-v2.83-release'Clément Foucault
# Conflicts: # source/blender/draw/engines/eevee/eevee_volumes.c
2020-05-20Overlay: Wireframe: Add visualization for Hairs in wireframe modeClément Foucault
This only works for particle systems for now. Fix T61928 Wireframe mode hair not visible
2020-05-20UI: Remove Panel Grid Snapping While DraggingHans Goudey
The reason to have this isn't quite clear, but it looks like a vestige of the 2.5 transition. Removing this makes dragging panels feel much more responsive. Thanks to Julian Eisel @Severin for the original change. Differential Revision: https://developer.blender.org/D7803
2020-05-20UI: Rephrase Tooltip to Avoid 2nd PersonHans Goudey
2020-05-20Transform: Don't negate the z axis of the View orientationGermano Cavalcante
This was so because of the rotate transformation mode but it can make other modes confusing and add unnecessary complexity.
2020-05-20Fix T76919: Wrong orientation when changing translate to rotateGermano Cavalcante
During the refactor of the transform operations, in an attempt to maintain previous behavior, the default orientation of the translate and resize operations became `Global` and the rotate operation became `View`. Now the default is always `View`, and on redo, the translate and rotate operations are saved as `Global`.
2020-05-20GPencil: Create new frame when Erase only if additive drawing is enabledAntonio Vazquez
Differential Revision: https://developer.blender.org/D7804
2020-05-20Refactor: Move collection foreach_id to new IDTypeInfo structure.Bastien Montagne
2020-05-20Cleanup collection handling in lib_query code.Bastien Montagne
Now we do not need anymore that extra function...
2020-05-20Libquery: refactor: handle scene's master collection like any othe embedded ID.Bastien Montagne
2020-05-20Refactor: Move simulation foreach_id to new IDTypeInfo structure.Bastien Montagne
2020-05-20Refactor: Move pointcloud and volume foreach_id to new IDTypeInfo structure.Bastien Montagne
2020-05-20Cleanup: Keep common IDTypeInfo code separated from ID type specific API.Bastien Montagne
Also remove useless IDTypeInfo callbacks.
2020-05-20Refactor: Move hair foreach_id to new IDTypeInfo structure.Bastien Montagne
2020-05-20Cleanup: Keep common IDTypeInfo code separated from ID type specific API.Bastien Montagne
Also remove useless IDTypeInfo callbacks.
2020-05-20Refactor: Move grease pencil foreach_id to new IDTypeInfo structure.Bastien Montagne
2020-05-20Fix T76916: Cycles missing deform motion blur for shape key + subdiv modifierBrecht Van Lommel
2020-05-20Fix T76909 GPencil: Layers with mask(s) invisible when using "in front"Clément Foucault
The gpSceneDepthTexture is using a dummy 1px texture which was generating wrong values for uvs when sampling gpMaskTexture. Use the max size of both since any of the 2 can use dummy texture.
2020-05-20UI: Fix Wideline AA for timelineClément Foucault
2020-05-20UI: Allow registering File Browser as child of other child windowsJulian Eisel
E.g. when opening the File Browser from the Preferences window, it would be the child of the main window the Preferences belong to. Now it can be a child of the Preferences window itself. The File Browser always stays on top of its parent window. Which avoids some issues with OS window management, see T76418 and T72693. Also removes a now unnecessary workaround to move the child window back to the front after closing the file browser (opening the file browser would move the main window and the file browser to the front). Fixes T76418, T72693.
2020-05-20Fix T75197: Eevee does not render instanced smokeJacques Lucke
This check was introduced in rBc8005703f298, but does not seem necessary anymore. Reviewers: fclem, sebbas, brecht Differential Revision: https://developer.blender.org/D7799
2020-05-20Fix T73979: Wrong location of fluid mesh when domain origin is not in centerJacques Lucke
Reviewers: sebbas Differential Revision: https://developer.blender.org/D7802
2020-05-20BLI: Fix VectorSet copy constructorJacques Lucke
Thanks to Howard for pointing that out.
2020-05-20Merge branch 'blender-v2.83-release'Bastien Montagne
2020-05-20Fix T70948: Library Override: Parenting library override objects does not ↵Bastien Montagne
save offset from parent. Parent inverse matrix needs to be overridable as well...
2020-05-20Merge branch 'blender-v2.83-release'Philipp Oeser
2020-05-20Fix T75457: Toggle brushes using same hotkey twice is brokenPhilipp Oeser
Caused by rB47da01a4db1d. Above commit did not change the toolname it was setting when the brush was actually toggled. Maniphest Tasks: T75457 Differential Revision: https://developer.blender.org/D7792
2020-05-20Merge branch 'blender-v2.83-release'Campbell Barton
2020-05-20Merge branch 'blender-v2.83-release'Campbell Barton
2020-05-20Fix T76794: Number button cursor overrides eyedropper cursorCampbell Barton
Pressing 'E' over a number button to pick a distance was keeping left-right arrows instead of using the eye-dropper cursor. Workaround this by clearing the active button before setting the cursor.
2020-05-20Fix color picker being used for non-color buttons such as rotationCampbell Barton
Issue raised in T76794