Skip to content

Releases: grische/blender

Blender v2.90.0-eca062b9cbea

11 Aug 18:49
Compare
Choose a tag to compare
Pre-release
Fix T79563: Compositor's Stabilize 2D in invert mode does not work co…

Blender v2.90.0-dbf5bb7af2e4

12 Aug 18:03
Compare
Choose a tag to compare
Pre-release
Fix T79640: "Assign Shortcut" doesn't work for "View 2D Zoom"

'VIEW2D_OT' operators were not respected in WM_keymap_guess_opname().
This was seemingly done on purpose (see comment "Op types purposely
skipped  for now"), but dont really see the reason for doing so.

Since the "View2D" keymap is not bound to a specific spacetype, we can
still find it using WM_keymap_find_all() [and passing 0 as spacetype].

Reviewers: Severin

Subscribers:

Blender v2.90.0-bb5cc3bccf49

11 Aug 18:04
Compare
Choose a tag to compare
Pre-release
Fix memory leak setting error text in the data-transfer modifier

Blender v2.90.0-bc5d144855d5

11 Aug 18:10
Compare
Choose a tag to compare
Pre-release
Fix T77298: Can't bake texture with multiple objects

The problem here is that the baking code uses tiles to exchange pixel data with
the renderer since a recent-ish refactor, but the code that sent data to the
renderer did not initialize the bake result pixels.

Therefore, when the baking process for the second object started, Cycles
received empty tiles and sent them back as-is if the second object did not
cover them.

By initializing the tiles with the result of the previous bakes, we avoid this
problem.

Blender v2.90.0-00162e6b7b0f

10 Aug 18:04
Compare
Choose a tag to compare
Pre-release
Fix T79246 GPUShader: compile error on AWS Elastic Graphics

Blender v2.90.0-a93be410c974

08 Aug 18:04
Compare
Choose a tag to compare
Pre-release
Fix previous commit, we first need to be sure we actually get a mesh...

Blender v2.90.0-58909abc685b

07 Aug 18:42
Compare
Choose a tag to compare
Pre-release
EEVEE: Render: Fix regression caused by previous Motion blur fix

Caused by rB4f59e4bddcb0c06e441adf68a5f252a4e5b4b260

Blender v2.90.0-4f59e4bddcb0

07 Aug 18:38
Compare
Choose a tag to compare
Pre-release
Fix T78452 EEVEE: Motion Blur: Crash when using camera switching

This was caused by the ViewLayer being freed with all its
engine data.

Blender v2.91.0-675700d94892

06 Aug 18:38
Compare
Choose a tag to compare
Pre-release
Sculpt: Cloth Brush/Filter Collisions

This implements collisions in the solver of the cloth brush/filter. It
uses the scene colliders as a regular physics simulation.

There are still some parameters (friction, distance to the surface...)
that can be exposed as properties in later patches.

Thanks to Sebastian Parborg for helping me with the implementation.

Reviewed By: sergey, zeddb

Differential Revision: https://developer.blender.org/D8019

Blender v2.90.0-c5b6b3d82f56

06 Aug 18:03
Compare
Choose a tag to compare
Pre-release
Fix T78698: Move cursor stuck after removing modifier

The panels are rebuilt when a modifier is removed so the button handlers need
to properly finish. By adding a context argument to the panel_delete function
this will happen properly.