Blender Git Commits

Blender Git "master" branch commits.

Page: 2727 / 5574

December 24, 2014, 15:33 (GMT)
Master branch is now alpha cycle of 2.74 release
December 24, 2014, 13:54 (GMT)
Fix T42997: Support RGBA output for HuffYUV

More like a feature request but was simple to support.
December 24, 2014, 03:51 (GMT)
Fix rna paint update callbacks assuming meshes
December 23, 2014, 15:42 (GMT)
Blender 2.73 release candidate commit

This commit contains:

- Subversion bump to 2.73
- Release cycle is set to "rc"
- Submodules are pointed to appropriate tag now
(addons contrib just points to the latest contrib repo)
- New shiny splash screen!
December 23, 2014, 15:12 (GMT)
Fix T42994: Own recent regression in fix for T42945 (rB5cc199e49581),
side/front/top ortho views would no more adapt their snapping unit to zoom factor.

This code would need slightly more refactor actually, but this will be for after release!
December 23, 2014, 09:01 (GMT)
Add missing keymap for paint curve
December 23, 2014, 05:56 (GMT)
Fix T42928: Drag-drop of generated files to compo reloads them, loosing edits

Origins of this issue goes back to T33402, where compo wasn't sure what kind
of image it is working with (compo should know if it's multilayer or regular
image).

Now we only reload images when dar-dropping from outside of blender.
December 22, 2014, 14:05 (GMT)
Fix T42952: Curve modifier not taken into account when curve is created from mesh

Curve and array modifiers requires curve path to be evaluated, dependency graph
will make sure that curve eval would create such a path, but if curve was already
evaluated we might miss path.

So what we do now is: if path was not calculated for target curve we tag it for
update.
Revision f784901 by Gaia Clary
December 22, 2014, 12:26 (GMT)
partial revert ab6417aa9ff8cbd4831c3ed1837742c1178be25a was too strict
December 22, 2014, 08:57 (GMT)
Quick fix for UI themes, by meta-androcto (Brendon Murphy), thanks.
December 22, 2014, 08:43 (GMT)
Fix T42966: Py_Initialize: Unable to get the locale encoding

This only happened for SCons builds and caused by pure human stupidnes.
Revision 59a0c11 by Julian Eisel
December 21, 2014, 14:48 (GMT)
GPencil: Correction to rB071ec918f4cd

* correct API convention: in rB071ec918f4cd gp_draw_data drew mulitple data blocks, I added gp_draw_data_all which now calles gp_draw_data multiple times (if needed). This follows our normal convention, e.g. see UI_panel_category_draw_all
* Draw scene data first, users may expect it like this

Points raised by @aligorith, thanks for this!
December 21, 2014, 11:40 (GMT)
Fix T42973: Render viewport not updating when switching materials in Outliner

For now, do as RNA material update functions - tag object for update too.
Revision 071ec91 by Julian Eisel
December 20, 2014, 15:18 (GMT)
Fix T42961: GPencil - Refactor object/scene data behaviour

D937 with minor edits (whitespace only)

@aligorith, I double checked everything runs smoothly, blame me if I missed something ;). Sorry for just taking the initiative and committing without talking to you, but I wasn't able to catch you the last days. This should be fixed before the release IMHO, but I don't think it's important enough to be committed during BCon5, so sorry again, but hopefully everything is okay :)
December 20, 2014, 13:16 (GMT)
RNA Object.matrix_local: Add a big warning this matrix is only relative to parent object.

So 'advanced' parenting like e.g. bones or vertices need further processing
to get a real parent-relative matrix...
December 20, 2014, 12:48 (GMT)
Fix T42972: fcurve lasso select crash
December 20, 2014, 01:15 (GMT)
Force phony targets to build (even if file exists)

This is a convenience makefile only,
files if they exist by accident shouldn't ever be used.
December 19, 2014, 19:23 (GMT)
Ensure no integer overflow happens in SuperLU solver on memory allocation
x
December 19, 2014, 13:43 (GMT)
Minor cleanup to previous commit
Revision 3e0ff35 by Lukas Toenne
December 19, 2014, 12:34 (GMT)
Fix for bad file name string matching in point caches, leading to
deletion of baked caches.

This happens when objects use file names with matching prefixes:

"CubeX" -> not baked
"CubeXYZ" -> baked

The first objects cache should be discarded up to the current frame on
file load, but the second should be left intact. But because the cache
file names for both use the same prefix as well (based on hex name
representation) they both match the "CubeX" name and get discarded.
Adding the underscore terminator solves this issue, because it is never
part of the hex file name string.

WARNING: this solution does not work with custom names for point caches.
This feature is pretty much broken, users have to ensure their names
are unique themselves. Due to the possibility of underscores in names
and the ambiguity of point cache suffixes there is no reliable way to
encode filenames in that case.
By: Miika HämäläinenLast update: Nov-07-2014 14:18MiikaHweb | 2003-2021