Revision f0e5227 by Campbell Barton / Sergey Sharybin (blender-v2.77-release, fracture_modifier, fracture_modifier-master, temp-fracture-modifier-2.8) March 18, 2016, 10:44 (GMT) |
Revision e511c7a by Campbell Barton / Sergey Sharybin (blender-v2.77-release, fracture_modifier, fracture_modifier-master, temp-fracture-modifier-2.8) March 18, 2016, 10:44 (GMT) |
Fix/workaround T47685: Drag keymap slider fails This is a special case where the UI update function re-creases the keymap we're currently editing. Making it so dragging values fails. |
Revision 3d1f050 by Campbell Barton / Sergey Sharybin (blender-v2.77-release, fracture_modifier, fracture_modifier-master, temp-fracture-modifier-2.8) March 18, 2016, 10:44 (GMT) |
Fix crash loading some library blend files Blend files with screen but no scene would crash. |
Revision 90758ed by Campbell Barton / Sergey Sharybin (blender-v2.77-release, fracture_modifier, fracture_modifier-master, temp-fracture-modifier-2.8) March 18, 2016, 10:44 (GMT) |
Revision 80b906c by Bastien Montagne / Sergey Sharybin (blender-v2.77-release, fracture_modifier, fracture_modifier-master, temp-fracture-modifier-2.8) March 18, 2016, 10:44 (GMT) |
Fix T47787: When performing operation 'Make single user' -> 'obj&data', object could be removed from group. Similar cause as in T47482, we used to have poor handling of 'user_one' cases of ID usage, leading to inconsistent behavior depending on order of operations e.g. Here, was object used by a group but not linked in any scene - once linked in scene, their usercount would be 2, leading to 'making single copy', when it's actually not needed. We now have better control here, so let's use it! Note that other ID 'make single user' code will likely need similar fix (Images, etc.). Safe to be backported to 2.77. |
Revision 8b49fa2 by Sergey Sharybin (blender-v2.77-release, fracture_modifier, fracture_modifier-master, temp-fracture-modifier-2.8) March 18, 2016, 10:44 (GMT) |
Fix T47785: Rendering Crash, Node Connector Crash, Changing Editors Crash Regressions after 2.76, to be backported to 2.77. |
Revision 6d4f512 by Bastien Montagne / Sergey Sharybin (blender-v2.77-release, fracture_modifier, fracture_modifier-master, temp-fracture-modifier-2.8) March 18, 2016, 10:44 (GMT) |
Fix T47773: Particle System with Boids Crash. Problem was, during initialization of boids particles in `dynamics_step()`, psys of target objects was not obtained with generic `psys_get_target_system()` as later in code, which could lead to some uninitialized `psys->tree` usage... Think it's safe enough for 2.77, though not a regression. |
Revision ab44c20 by Sergey Sharybin (blender-v2.77-release, fracture_modifier, fracture_modifier-master, temp-fracture-modifier-2.8) March 18, 2016, 10:44 (GMT) |
Fix bad UI range of convergence distance which was above the hard limit That was rather confusing to slide the value. Perhaps makesrna can check cases like this? |
Revision 45b0e93 by Thomas Dinges / Sergey Sharybin (blender-v2.77-release, fracture_modifier, fracture_modifier-master, temp-fracture-modifier-2.8) March 18, 2016, 10:44 (GMT) |
Cycles: Do no limit viewport samples to USHRT_MAX when value is at 0. We don't limit manually setting higher values, this was probably overlooked here. Found by @Blendify in IRC. |
Revision 34510e3 by Bastien Montagne / Sergey Sharybin (blender-v2.77-release, fracture_modifier, fracture_modifier-master, temp-fracture-modifier-2.8) March 18, 2016, 10:44 (GMT) |
Fix crash adding EditNormals modifier to NURBS object (or other types but mesh). Kinda stupid, but that eModifierTypeFlag_AcceptsCVs could really use a comment alongside its definition! Safe to be backported to 2.77. |
Revision de80ecc by Campbell Barton / Sergey Sharybin (blender-v2.77-release, fracture_modifier, fracture_modifier-master, temp-fracture-modifier-2.8) March 18, 2016, 10:44 (GMT) |
Revision fc2f0a1 by Campbell Barton / Sergey Sharybin (blender-v2.77-release, fracture_modifier, fracture_modifier-master, temp-fracture-modifier-2.8) March 18, 2016, 10:44 (GMT) |
Fix T47749: Crash subdividing wire edge w/ mdisps |
Revision d402611 by Campbell Barton / Sergey Sharybin (blender-v2.77-release, fracture_modifier, fracture_modifier-master, temp-fracture-modifier-2.8) March 18, 2016, 10:44 (GMT) |
CMake: remove OSX version lookup table This assumed the OSX SDK version matched the OSX version, which isn't always true. Also problematic for maintenance and would make building older Blender versions on OSX fail. Passing in pre-defined OSX_SYSTEM is also supported, if you have multiple and want to select one. |
Revision 6ebd48f by Sergey Sharybin (blender-v2.77-release, fracture_modifier, fracture_modifier-master, temp-fracture-modifier-2.8) March 18, 2016, 10:44 (GMT) |
Skip scopes update for render result during rendering |
Revision 7268e6c by Sergey Sharybin (blender-v2.77-release, fracture_modifier, fracture_modifier-master, temp-fracture-modifier-2.8) March 18, 2016, 10:44 (GMT) |
Fix T47681: Bump node doesn't work with SSS shader when using OSL |
Revision c20bcba by Julian Eisel / Sergey Sharybin (blender-v2.77-release, fracture_modifier, fracture_modifier-master, temp-fracture-modifier-2.8) March 18, 2016, 10:44 (GMT) |
Fix T47706: 'CTRL ALT Left Mouse' clicking on the dope sheet summary line crashes Blender Simple NULL-check seems fine here, working as it should now. Most likely caused by rBc4dc14b079d81. |
Revision 1e2c8ca by Campbell Barton / Sergey Sharybin (blender-v2.77-release, fracture_modifier, fracture_modifier-master, temp-fracture-modifier-2.8) March 18, 2016, 10:44 (GMT) |
Revision 88a3b68 by Campbell Barton / Sergey Sharybin (blender-v2.77-release, fracture_modifier, fracture_modifier-master, temp-fracture-modifier-2.8) March 18, 2016, 10:44 (GMT) |
BMesh: avoid assert dissolving degenerate faces For dissolving 2-sided faces, theres no need to check they are valid before removal. |
Revision 1e1118e by Sergey Sharybin (blender-v2.77-release, fracture_modifier, fracture_modifier-master, temp-fracture-modifier-2.8) March 4, 2016, 17:08 (GMT) |
Blender 2.77: We are now RC2 |
Revision 1e74582 by Sergey Sharybin (blender-v2.77-release, fracture_modifier, fracture_modifier-master, temp-fracture-modifier-2.8) March 4, 2016, 17:03 (GMT) |
Blender 2.77: Point translations submodule to updated branch |
|