Revision 67cbce0 by Clément Foucault February 19, 2020, 23:03 (GMT) |
DRW: Fix facing reset when drawing with inverted camera |
Revision 03a4d3c by Julian Eisel February 19, 2020, 19:45 (GMT) |
RNA: Fail makesrna if enum identifiers contain spaces We could of course always add checks for more invalid characters, but I'd say they are more unlikely to happen. |
Revision e37988f by Julian Eisel February 19, 2020, 19:14 (GMT) |
Fix compile error when building with Cycles |
Revision f972a3c by Clément Foucault February 19, 2020, 18:36 (GMT) |
Revision bda8076 by Sebastián Barschkis February 19, 2020, 18:34 (GMT) |
Fluid: Temporary fix for gzopen on windows Needs more consideration. This fixes compilation for now. |
Revision 05fd2ac by Pablo Dobarro February 19, 2020, 18:09 (GMT) |
Theme: Radial gradient background and enum for gradient type This commit replaces the "Use Gradient" checkbox theme option with an enum and implements a radial background. Whith this change, it should be easier to implemet other types of more complex background types, like a world space oriented gradient. Reviewed By: billreynish, fclem, brecht Differential Revision: https://developer.blender.org/D6825 |
Revision 2df040e by Pablo Dobarro February 19, 2020, 18:08 (GMT) |
Fix T54270: Reset last_hit and last_location when reading the file It does not make sense to read those values when loading a file and they can crash the cursor if they contain invalid coordinates. Reviewed By: brecht Maniphest Tasks: T54270 Differential Revision: https://developer.blender.org/D6754 |
Revision 888d180 by Sebastián Barschkis February 19, 2020, 17:58 (GMT) |
Fluid: Updated manta pp files Updates in the files include: - New manta files now use an platform independent gzopen function - Adjusted argument name for vorticity |
Revision 04b7f05 by Sebastián Barschkis February 19, 2020, 17:58 (GMT) |
Fluid: Updated Manta updater script Minor adjustments for the build directory location. |
Revision 213b4f7 by Dalai Felinto February 19, 2020, 17:44 (GMT) |
Cleanup: `make format` |
Revision 19f3a93 by Sebastián Barschkis February 19, 2020, 17:42 (GMT) |
Fluid: More cleanup in fluid rna code Removed scientific variable names from UI. |
Revision f0a22f5 by Brecht Van Lommel February 19, 2020, 17:13 (GMT) |
Fix T73932: modifying keyframes in nodes fails when there is an image sequence Image animation should not be an depsgraph node of type ANIMATION, there is no need for it to be affected by the special casing for that. |
Revision ee5c13c by Pablo Dobarro February 19, 2020, 17:06 (GMT) |
Sculpt: Pinch only in the direction perpendicular to the stroke By pinching this way, we can fix some artifacts when sculpting following the topology direction. It does not make much difference with dyntopo/ remesher, but I think this should improve the quality of the brush when working with Multires. Reviewed By: JulienKaspar, jbakker Differential Revision: https://developer.blender.org/D6587 |
Revision e77e6ba by Sebastián Barschkis February 19, 2020, 16:35 (GMT) |
Fluid: Cleanup in fluid rna code More descriptive names for secondary particle options. |
Revision d772c6e by Bastien Montagne February 19, 2020, 16:08 (GMT) |
Fix T74009: `bpy.ops.outliner.orphans_purge()` poll being too restrictive. There is no reason to even require an editor at all here, for now just kept the 'orphan view needed' condition for the outliner case only. |
Revision 1c0230b by Bastien Montagne February 19, 2020, 15:35 (GMT) |
Fix for Fix (c) : Normals Edit modifier using unititialized array of normals... Own mistake in recent rBcfdb5b9a8b07. |
Revision e317e9f by Bastien Montagne February 19, 2020, 15:10 (GMT) |
Fix T72751: Timeline crash from overridden scene. Depsgraph RNA pointer would generate infinite loop in override comparisons. Depsgraph pointer should never be considered here anyway, this is purely runtime data. |
Revision 8c5e36d by Sebastián Barschkis February 19, 2020, 14:33 (GMT) |
Fluid: Fix typo that was made in 4453509d83dc |
Revision 4453509 by Sebastián Barschkis February 19, 2020, 14:07 (GMT) |
Fix T73770: Mantaflow is unable to bake fluid simulations on non-ASCII file paths Some fluid cache functions were not using Blender's more secure BLI_gzopen() function. On Windows there are some special cases which this function can handle compared to the plain gzopen(). |
Revision 367ecff by Bastien Montagne February 19, 2020, 11:56 (GMT) |
readfile: Move ID refcounting to libquery. Having that extra ID users handling at readfile level, besides generic one ensured by libquery, has been something bothering me for a long time (had to fix my share of bugs due to mismatches between those two areas). Further more, work on undo speedup will require even more complex ID refcount management if we want to keep it in readfile.c area. So idea is instead to generalize what we did for linked data already when undoing: recompute properly usercount numbers after liblink step, for all IDs. Note that extra time required here is neglectable in a whole .blend file reading (few extra milliseconds when loading a full production scene e.g.). Notes: * Some deprecated data (IPOs) are not refcounted at all anymore, this should not be an issue in pratice since the are supposed to get deleted after doversion anyway. * Refcounting happens after `do_versions_after_linking`, i.e those functions won't get valid ID usercounts currently. Again, this is not a problem in current code, if needed we could recompute refcount before, and then ensure `do_versions_after_linoiing()` actually handles properly usercount, which it does not currently. Differential Revision: https://developer.blender.org/D6881 |
|