Blender Git Commits

Blender Git "master" branch commits.

Page: 2845 / 5574

June 16, 2014, 08:04 (GMT)
Fix T40606: Blender 2.71RC1 for Windows uses too old blender.mo file in Japanese

Update submodules to v2.71-rc1, it got lost on re-tag leading to wrong addons
and translations used in RC1.
June 16, 2014, 08:04 (GMT)
Add missing dependency to CMake's msgfmt

This could have lead to situation when CMake wouldn't re-generate
.mo file from changed .po file.
June 16, 2014, 07:23 (GMT)
Code cleanup: move editfont drawing into its own function.
June 16, 2014, 07:23 (GMT)
Object Drawing: minor refactor, don't check glsl in wire-mode

also don't call glBlendFunc for hidden objects.
June 16, 2014, 07:03 (GMT)
Fix T40648: Bevel Tool - Amount value slider maximum does not adapt to Amount Type settings automaticly.
June 16, 2014, 06:55 (GMT)
Fix T40617: Ortho view selects objects behind camera
June 16, 2014, 05:29 (GMT)
Fix Python fails to execute text-blocks including non-mbcs chars (T35176, D595)
June 16, 2014, 01:12 (GMT)
Freestyle: Python API docstring updates.
June 16, 2014, 01:12 (GMT)
D545: Freestyle Python API: new methods for Stroke and StrokeVertexIterator.

This revision extends the Freestyle Python API to make for style module writing
easier.

- freestyle.types.Stroke: A proper support for reversed() is implemented. It
works the same with other Python sequence objects (returns an iterator starting
from the end). This is in effect equivalent to Stroke.stroke_vertices_end().

- freestyle.types.StrokeVertexIterator: An incremented, decremented and reversed
method are added. The first two methods return a new StrokeVertexIterator
object that has been incremented and decremented, respectively. The reversed
method returns a new StrokeVertexIterator object that will traverse stroke
vertices in the opposite direction.

- freestyle.types.Interface0DIterator: Its constructor now accepts a Stroke
object to create an Interface0DIterator that traverses stroke vertices. This is
in effect equivalent to Stroke.vertices_begin(). The new API makes stroke
shaders involving function calls much simpler as illustrated below:

# in the old API
it = stroke.stroke_vertices_begin()
for vert in it:
result = somefunc(Interface0DIterator(it))

# in the new API
it = Interface0DIterator(stroke)
for vert in it:
result = somefunc(it)


Differential Revision: https://developer.blender.org/D545

Reviewers: kjym3
June 15, 2014, 04:56 (GMT)
Curve: remove unused displist members
June 15, 2014, 04:36 (GMT)
Curve: replace calloc with malloc for values immediately written into
June 15, 2014, 04:23 (GMT)
Curve: use zero length array for BevList for less confusing syntax
June 15, 2014, 02:15 (GMT)
Code cleanup: comments
June 15, 2014, 02:15 (GMT)
Text Editor: dropping id's now paste in Python data path (like pyconsole)
June 14, 2014, 23:09 (GMT)
* Fix OpenCL after uchar4 commit.
June 14, 2014, 21:47 (GMT)
Fix T40007 Bevel tool resets after getting to 1.

If the side of a beveled edge hit another vertex, the offset
amount reset to zero. This was the result of commit rB1582dd5e4d7c
which clamped the amount to zero to avoid creating spikes with
obtuse angles. Now we clamp the amount to the closest end of
the edge to where the amount wants to be.
Also fixes the first part of T40365.
June 14, 2014, 18:32 (GMT)
UI: refactor text cache to use zero length arrays

also correct some bad casts
June 14, 2014, 18:32 (GMT)
BLI_gsqueue: refactor to use zero length array
June 14, 2014, 17:49 (GMT)
BLI_gsqueue: use size_t for elem_size (was casting all over)
June 14, 2014, 15:42 (GMT)
UI: Add support for popups to refresh their layput (D578)

This is needed for popups to chance state once activated,
currently it makes use of operators `check` callback, after values are modified,
as the file selector does already.
By: Miika HämäläinenLast update: Nov-07-2014 14:18MiikaHweb | 2003-2021