Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-10-21We're nov 2.72bv2.72b2.72bSergey Sharybin
2014-10-21Fix sequencer clipboard with meta's containing ID referencesCampbell Barton
2014-10-21Fix sequencer duplicate with only handle selectedCampbell Barton
2014-10-21Fix T42311, too many paint slots added.Antony Riakiotakis
Don't allow the add paint slot operator to redo. Also guard better against excessive slot addition
2014-10-21Fix T42313: Ruler always measures 0.0Campbell Barton
Passing 'ar' to snapObjectsRayEx would apply a ray-offset.
2014-10-21Fix T42189Antony Riakiotakis
Own mistake - not copying enough data.
2014-10-21Fix T42264: Negative scale & clipped-select failsCampbell Barton
Thanks to mont29 for finding the cause.
2014-10-21Fix T42304: blender 2.72a 3D view object selected color wrong in 2.4x theme.Bastien Montagne
I would not have endured such a critical and monstruous bug one more femtosecond! And even worse - active color was awfully wrong too! Shocking!
2014-10-21Fix typo in calculateCenterMedian that could give computed median point ↵Grigory Revzin
wrong values. From soc-2014-shapekey branch, with minor edits by mont29 (Bastien Montagne).
2014-10-21Fix T42281, crash in subsurf with texture painting.Antony Riakiotakis
2014-10-21OSX/PLAYER/cmake: fix player install python bundling, overlloked player has ↵Jens Verwiebe
its own PLAYER_TARGETDIR_VER
2014-10-21Fix for align bone to cursor (missing normalize)Campbell Barton
2014-10-21Fix for pose bones not restoring selection index properlySergey Sharybin
2014-10-21More fixes:Antony Riakiotakis
* Fill brush did not do proper srgb conversion for byte images (reported by Sebastian Koenig, thanks!) * Color sampling for palettes did not refresh the toolbar.
2014-10-21Fix issue reported by Sebastian Koenig on irc, Clone brush would paintAntony Riakiotakis
trash with float images. Issue is uninitialized alpha in the clone brush + a clamping issue for float images. There's still some 'swimming' and brightness issue here but I have to do work for the weekly, will investigate further later.
2014-10-21Different fix for T42262, we don't put Cycles compat into regular bl_ui files.Thomas Dinges
2014-10-21Fix T42262: Ocean texture options cannot be edited while in CyclesBastien Montagne
2014-10-21Fix bad typo in undo code that invalidated all image caches on undo.Antony Riakiotakis
2014-10-21Fix T42258: Drivers: `dimensions.x` is always invalid, but `dimensions[0]` worksBastien Montagne
'PROP_XYZ_LENGTH' subtype was missing from list of valid '.x/y/z/w' ones.
2014-10-15Fix compilation error -- backported change relied on the regular development ↵v2.72aSergey Sharybin
changes
2014-10-15Buildbot: Rename testbuild branch to experimental-build and put the builds ↵Bastien Montagne
to dedicated folder
2014-10-15Better fix for T42139Antony Riakiotakis
Noise function's significant bits are up to 31st bit. This should now give the same visual result as before, minus the stripes. Issue pointed out by Anthony Edlin, thanks! Conflicts: source/blender/render/intern/source/render_texture.c
2014-10-15Fix for No Sudo option in install_deps.sh (typo in docs)Dalai Felinto
2014-10-15Bugfix T42225: Python - GreasePencil.active incorrectly accepts GreasePencil ↵Joshua Leung
type instead of GPencilLayer
2014-10-15Fix T42206: RenderLayers popup crashed when clicked while renderingCampbell Barton
2014-10-15Fix T42005: Reset py-handlers could crashCampbell Barton
Wasn't acquiring the GIL.
2014-10-15Fix T42064: Directional blur uses wrong samplerSergey Sharybin
Now use linear one, nearest is far too doggy.
2014-10-15Fix T42160: CUDA error: ILLEGAL_ADDRESS in cuCtxSynchronize()Sergey Sharybin
This is so-called GPU limitation boundary hit, told compiler to NOT include volume bound function, otherwise some real weird things used to happen. We actually might want to do the same for CPU, inlining everything is not the way to get fastest code.
2014-10-15Fix T42198: Linked lines only work with linked objects.Tamito Kajiyama
The reported issue was caused by a backward incompatibility due to careless code changes made when per-material Freestyle line colors were introduced in rB7915d7277ac8c605f016f30f943080556244fb59. In 2.71 line style Material color/alpha/thickness modifiers was retrieving alpha transparency from Material.alpha, whereas in 2.72 Material.line_color[3] was referenced. The present fix reverts the aforementioned code changes. This issue is a regression from 2.71, so the fix is appropriate for inclusion in the 2.72a release.
2014-10-15re-allign 'a'Campbell Barton
2014-10-15We're entering 'a' release cycle nowSergey Sharybin
2014-10-15OSX: refinement for last fullscreen condition commitJens Verwiebe
2014-10-15OSX: only use lionstylefullscreen when seperate spaces are used, todo: use ↵Jens Verwiebe
respondsToSelector to simplify the whole detection
2014-10-15OSX: fsmenu cleanupJens Verwiebe
2014-10-15Minor typo fix, reported by Sebastian Koenig on irc. Thanks!Antony Riakiotakis
2014-10-15Bugfix: "Hide" button in modifiers panel did only hide smoke domain, not the ↵Daniel Genrich
smoke. Reported by nudelZ
2014-10-15Fix another crash with Navigation mesh.Benoit Bolsee
Navigation mesh object need to access the current scene at creation time. This can be at scene start or when an object is instantiated from an inactive layer. The method of getting the scene differs in these cases. This fix handles both.
2014-10-15Fix T41950: Parent-Child Menu behaves weirdBastien Montagne
Issue was, parenting with operator, then unparenting would keep the inverse parent matrix. So if you then parented again through the mere Object field of Object buttons, you'd still use previous inver parent matrix, giving some weird behavior from user PoV. This commit simply makes sure inverse parent matrix is always reset to indentity when clearing parents.
2014-10-15OSX: as an prerequisite to make Dalai's upcoming "area_fullsceen" work,Jens Verwiebe
make sure the window states are correct in the lion_fs animation phase. This also assures the CTX_wm_window(C) is okay.
2014-10-15Fix T42168 mask texture UI missing. Own sillyness after last data fixAntony Riakiotakis
commit. If we include the data cleanup commit to an alpha version for 2.72a this should be included as well
2014-10-15Freestyle: Fix for memory leaks in StrokeVertexIterator.Tamito Kajiyama
The issues identified here are regression from 2.71, so the present code revision is appropriate for backporting if 2.72a is planned.
2014-10-15Freestyle: Fix for StrokeVertexIterator.__next__() ignoring the first and ↵Tamito Kajiyama
only element. A StrokeVertexIterator ignores the first element when it is the only element. Such an iterator can be created by the .incremented() method from an iterator over two stroke vertices. This problem is a regression from 2.71. The present fix is appropriate to backport if Blender 2.72a is planned. Problem report by Kazuhiro Murakawa through personal communications, thanks!
2014-10-15Current tile highlight should use render data from the engineSergey Sharybin
Otherwise tweaking resolution/border would affect the way tiles are highlighted.
2014-10-15Cycles: Remove redundant float4->float3 conversionSergey Sharybin
Not as if it gives noticeable changes render-time, but it's just weird to convert float4 to float 3 to just access individual x/y/z components. Plus some compilers might be more stupid than GCC and don't optimize this out well.
2014-10-15Fix OpenGL error on cycles rendered viewport.Antony Riakiotakis
We queried the wrong value when looking for the bound 2D texture. This is not totally robust because currently bound texture may not be a 2D one, but this should work for now.
2014-10-15Fix Python ray-cast failing to check hit directionCampbell Barton
2014-10-15OSX: adapt fs_menue to modern entries handlingJens Verwiebe
2014-10-15Fix T42137: Keymap editing is brokenBastien Montagne
Own mistake in previous fix here, was too greedy in finding an existing kmi of UserPref add diff kmi, we only want to ignore exact same kmi's here.
2014-10-15Icons: were relicensed to GPL2+ metadata was CC-NCCampbell Barton
2014-10-15Call python3 explicitly from tgz utilCampbell Barton