Revision 6d4f062 by Sergey Sharybin 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. |
Revision db750b9 by Sergey Sharybin 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. |
Revision c95d093 by Campbell Barton June 16, 2014, 07:23 (GMT) |
Code cleanup: move editfont drawing into its own function. |
Revision 3f444d9 by Campbell Barton 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. |
Revision 5ca44ff by Bastien Montagne June 16, 2014, 07:03 (GMT) |
Fix T40648: Bevel Tool - Amount value slider maximum does not adapt to Amount Type settings automaticly. |
Revision 31e15b5 by Campbell Barton June 16, 2014, 06:55 (GMT) |
Fix T40617: Ortho view selects objects behind camera |
June 16, 2014, 05:29 (GMT) |
Revision 8365ceb by Tamito Kajiyama June 16, 2014, 01:12 (GMT) |
Freestyle: Python API docstring updates. |
Revision 840891e by Tamito Kajiyama 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 |
Revision ea3bca7 by Campbell Barton June 15, 2014, 04:56 (GMT) |
Curve: remove unused displist members |
Revision 4b4bb41 by Campbell Barton June 15, 2014, 04:36 (GMT) |
Curve: replace calloc with malloc for values immediately written into |
Revision 57372f4 by Campbell Barton June 15, 2014, 04:23 (GMT) |
Curve: use zero length array for BevList for less confusing syntax |
Revision 716430a by Campbell Barton June 15, 2014, 02:15 (GMT) |
Code cleanup: comments |
Revision fff18e0 by Campbell Barton June 15, 2014, 02:15 (GMT) |
Text Editor: dropping id's now paste in Python data path (like pyconsole) |
Revision 6443bfd by Thomas Dinges June 14, 2014, 23:09 (GMT) |
* Fix OpenCL after uchar4 commit. |
Revision b5213b2 by Howard Trickey 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. |
Revision fa17e3b by Campbell Barton June 14, 2014, 18:32 (GMT) |
UI: refactor text cache to use zero length arrays also correct some bad casts |
Revision 9c17284 by Campbell Barton June 14, 2014, 18:32 (GMT) |
BLI_gsqueue: refactor to use zero length array |
Revision d6287b2 by Campbell Barton June 14, 2014, 17:49 (GMT) |
BLI_gsqueue: use size_t for elem_size (was casting all over) |
Revision ea2043e by Campbell Barton 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. |
|
|
|


Master Commits
MiikaHweb | 2003-2021