Sivu saatavilla vain englanninkielisenä.
MiikaHweb - Blender Git Statistics v1.06
Blender Git Statistics -> Branches -> blender-v2.90-release
"Blender-v2.90-release" branch
Total commits : 48
Total committers : 15
First Commit : August 31, 2020
Latest Commit : September 23, 2020
Commits by Date
Date | Number of Commits | |
---|---|---|
September 23, 2020 | 1 | |
September 22, 2020 | 0 | |
September 21, 2020 | 41 | |
September 20, 2020 | 0 | |
September 19, 2020 | 0 | |
September 18, 2020 | 0 | |
September 17, 2020 | 0 | |
September 16, 2020 | 0 | |
September 15, 2020 | 0 | |
September 14, 2020 | 0 | |
September 13, 2020 | 0 | |
September 12, 2020 | 0 | |
September 11, 2020 | 0 | |
September 10, 2020 | 0 | |
September 9, 2020 | 0 | |
September 8, 2020 | 0 | |
September 7, 2020 | 0 | |
September 6, 2020 | 0 | |
September 5, 2020 | 0 | |
September 4, 2020 | 0 | |
September 3, 2020 | 0 | |
September 2, 2020 | 0 | |
September 1, 2020 | 0 | |
August 31, 2020 | 6 |
Committers
Author | Number of Commits |
---|---|
Brecht Van Lommel | 20 |
Campbell Barton | 4 |
Dalai Felinto | 4 |
Germano Cavalcante | 4 |
Philipp Oeser | 4 |
Brecht Van Lommel | 2 |
Jeroen Bakker | 2 |
Antonio Vazquez | 1 |
Bastien Montagne | 1 |
Hans Goudey | 1 |
Julian Eisel | 1 |
Pablo Dobarro | 1 |
Sebastián Barschkis | 1 |
Sebastian Parborg | 1 |
Yevgeny Makarov | 1 |
Popular Files
Filename | Total Edits |
---|---|
BKE_blender_version.h | 3 |
object_constraint.c | 3 |
versioning_290.c | 3 |
eevee_volumes.c | 2 |
transform_convert_mesh.c | 2 |
transform_convert_mesh_uv.c | 2 |
versioning_280.c | 2 |
gpu_node_graph.c | 2 |
scene.c | 1 |
bvh.cpp | 1 |
Latest commits
September 23, 2020, 06:43 (GMT) |
Version: Blender 2.90.1 release |
September 21, 2020, 14:13 (GMT) |
Fix T80899: Crash on editing multiple UVs of multiple different objects at the same time The issue was two fold. First something sets the loop element tag and doesn't clear it before the UV code in question tries to use the tags. Added a sanity clear to make sure that it operates on a clean tag state. The next one was that the UV maps in question had quite a few points that had zero length UV loop edges. This would lead to division by zero. Reviewed By: Jeroen Bakker, Brecht Differential Revision: https://developer.blender.org/D8967 |
September 21, 2020, 09:17 (GMT) |
Fix T80771: Avoid changing the visibility of loose geometry when entering Sculpt Mode When entering scultp mode the visibility from the Face Sets is copied to the base mesh. This steps was considering that if a vertex belongs to a face with a visibible Face Set ID, it should be visible. As loose geometry may not have any faces, those vertex were set to hidden. Now this function check if a vertex visibility should be modified by the face sets (by checking the loops), avoiding modifying the visibility of loose geometry unintentionally. Reviewed By: sergey Maniphest Tasks: T80771 Differential Revision: https://developer.blender.org/D8899 |
Revision 60fbed3 by mano-wii (blender-v2.90-release) September 21, 2020, 07:49 (GMT) |
Fix T80520: Tris to Quads ignores UV delimit option |
Revision 9ec325b by Campbell Barton (blender-v2.90-release) September 21, 2020, 07:48 (GMT) |
Fix T61985: NLA Bake exception baking pose with non-pose selection |
Revision be89358 by Cody Winchester (blender-v2.90-release) September 21, 2020, 07:47 (GMT) |
Fix invert vertex group weight miscalculation for modifiers Warp & weight vertex-group editing modifiers miscalculated vertex weight inversion, the weights were multiplied before being subtracted from 1. Ref D8241 |
Revision c65e4f4 by Brecht Van Lommel (blender-v2.90-release) September 21, 2020, 07:46 (GMT) |
Revision 918ef5f by Stefan Werner (blender-v2.90-release) September 21, 2020, 07:45 (GMT) |
Cycles: Separate Embree device for each CPU Device. Before, Cycles was using a shared Embree device across all instances. This could result in crashes when viewport rendering and material preview were using Cycles simultaneously. Fixes issue T80042 Maniphest Tasks: T80042 Differential Revision: https://developer.blender.org/D8772 |
Revision 41e4079 by Philipp Oeser (blender-v2.90-release) September 21, 2020, 07:42 (GMT) |
Fix T80437: Auto IK Double Generates IK constraints Caused by rB9a7f5f1bb422. If using Auto IK (or targetless IK and Auto IK together), two temporary constraints were added. - from pose_grab_with_ik_add (even for targetless IK) - from add_pose_transdata (even for Auto IK) Since both both do similar things, but cannot work in tandem (with possibly different chainlengths for example), we have to decide which type to prefer over the other (as in: do not create a constraint for the other). It seems better to ignore the 'Auto IK' option on bones that will have targetless IK set up for them specificallly [e.g. defining special chainlength]. This way you can still work with 'Auto IK' ON generally [with interactive chainlength control], but also have specific bones that need their own custom chainlength. For now, the most straightforward fix is to - only add constraints for Auto IK from pose_grab_with_ik_add() - only add constraints for targetless IK from add_pose_transdata() Note: this area has some potential for later refactoring: - move creation of all temporary constraints to a single place [preferably pose_grab_with_ik_add] - use only those temporary constraints in transform code [atm. we still flip CONSTRAINT_IK_AUTO around on the "original" -- unneccesarily, after rB9a7f5f1bb422 a dedicated temporary constraint is now always available] - clarify CONSTRAINT_IK_AUTO vs. CONSTRAINT_IK_TEMP - obeying standard rotation locks on bones in the chain (not just the the IK locks) is not consistent between targetless IK and Auto IK Potential candidate for 2.90.1 as well as 2.83 LTS Maniphest Tasks: T80437 Differential Revision: https://developer.blender.org/D8930 |
Revision a5b6d6d by Campbell Barton (blender-v2.90-release) September 21, 2020, 07:42 (GMT) |
Fix T80885: Texture paint camera project crashes after undo/redo Unmatched ED_image_undo_push_{begin/end}, add doc-strings noting why this is needed. Thanks to @Baardaap for the initial fix. |
Revision 8ab98d0 by Germano Cavalcante (blender-v2.90-release) September 21, 2020, 07:40 (GMT) |
Add versioning for 2.90 files that may have invalid mesh rBf2d26409e83b fixed a serious problem with invalid mesh after an operation with the extrude manifold. Since BKE_mesh_validate_arrays is a slow operation, the chosen interval between versions is relatively small and also only the mentioned invalid mesh problem is tested. Differential Revision: https://developer.blender.org/D8898 |
Revision 0f72e7c by Brecht Van Lommel (blender-v2.90-release) September 21, 2020, 07:36 (GMT) |
Fix OpenCL render error in large scenes In scenes such as Cosmos Laundromat, there were memory allocations bigger than 2GB which would overflow. Problem and solution found by AMD, thanks! |
Revision 7347228 by Brecht Van Lommel (blender-v2.90-release) September 21, 2020, 07:35 (GMT) |
Revision adcb3c6 by Campbell Barton (blender-v2.90-release) September 21, 2020, 07:33 (GMT) |
Fix T80728: UV edge select splits UV's for lasso/box/circle select Oversight in 411c5238a2fef ignored sticky selection. Use 'uvedit_edge_select_set_with_sticky' to make sure sticky options are respected. Also skip checking the existing selection since that only checks the current UV, not all connected UV's which is needed for sticky selection. The extra checks to avoid updating UV's isn't such an advantage as only meshed in the selected region are tagged for updating. |
Revision 1442827 by Bastien Montagne (blender-v2.90-release) September 21, 2020, 07:32 (GMT) |
Fix T78392: [2.83.5, 2.90, 2.91] Crash on undo/ redo after changing modes. During undo/redo read code is expected to clear the `OB_MODE_EDIT` bitflag of `Object.mode`, for some reasons. This was not done anymore for re-used Objects, we need to add a special handling case for that too. Should be backported to 2.90 and 2.83 (will probably not be straight forward for the latter). |
Revision f822cd5 by Bastien Montagne (blender-v2.90-release) September 21, 2020, 07:30 (GMT) |
Fix T80457: Library Override - Custom Property to Drive Child Particles results in Crash. RNA diffing code was not dealing properly valid NULL PointerRNA (like the empty texture slots of a ParticleSettings e.g., which were cause of crash in that report). To be backported to 2.90 and 2.83. |
Revision 27ea086 by Campbell Barton (blender-v2.90-release) September 21, 2020, 07:30 (GMT) |
Fix T80694: Crash reloading scripts from the Python console Running `bpy.ops.script.reload()` from Python was crashing since the operator being called was it's self freed. Change the reload operator to defer execution - as supporting re-registration during execution is quite involved for a corner-case. |
Revision 2c8f876 by Bastien Montagne (blender-v2.90-release) September 21, 2020, 07:25 (GMT) |
Fix T80589: Translations in python scripts are missing. Python 3.8 changed handling of constant values in its AST tool. This code should work on both officialy supported 3.7, and newer 3.8, for now. |
Revision 9d290c9 by Campbell Barton (blender-v2.90-release) September 21, 2020, 07:23 (GMT) |
Fix T62504: Crash accessing depsgraph from evaluated view layer Use correct owner_id types for depsgraph view_layer properties instead of inheriting from the Depsgraph which is set to NULL. |
Revision 39af4d8 by Campbell Barton (blender-v2.90-release) September 21, 2020, 07:22 (GMT) |
Fix T77584: Edit Mode crash with shape keys created on blank mesh Entering edit-mode after creating shape keys on a blank mesh would crash. Regression in 9b9f84b317fef which prevented initializing empty shape keys when there is no shape key offset data available. |
MiikaHweb - Blender Git Statistics v1.06