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-06-17Bake-API: allow custom UV to be bakedDalai Felinto
Note: the custom UV option is only available when calling the operator via a script. It's currently not exposed in the UI since it's intended to be used by scripters To test it: bpy.ops.object.bake(type='UV', use_clear=True, uv_layer='MyNewUV') Reviewers: campbellbarton Differential Revision: https://developer.blender.org/D546
2014-06-17Fix some loss of precision in BKE's unit code.Bastien Montagne
When converting text to value, units' "value" had only 6 digits of precision, leading to annoying loss of precision esp. when mixing big and small units (like e.g. miles and inches).
2014-06-17Add a first basic set of tests for the new bpy.utils.units module/APIBastien Montagne
Only contains 'LENGTH' type tests currently.
2014-06-17New python API for units handling.Bastien Montagne
Exposes all supported unit systems & types, and to_value()/to_string() functions. Reviewed and enhanced by CampbellBarton, many thanks! Differential Revision: https://developer.blender.org/D416
2014-06-17BLI: Add two helpers to search a given string in an array of strings.Bastien Montagne
2014-06-17Fix T40620: BGE Python - Ray sensor has wrong axis constantsCampbell Barton
2014-06-17Fix for bad NULL checkCampbell Barton
2014-06-17Support for building without PythonCampbell Barton
2014-06-17Remove redundant checkCampbell Barton
2014-06-17Fix T40638: Crash in Particle System, Connect HairSergey Sharybin
2014-06-17Correct argument nameCampbell Barton
2014-06-17Cycles: only use -fno-rtti with OSL (conflicts with -fsanitize=vptr)Campbell Barton
2014-06-17Correct menu nameCampbell Barton
2014-06-17Fix T40639: operators ignore win.cursor_warp()Campbell Barton
2014-06-17BGE: New Property sensor evaluation typesJorge Bernal
This patch adds "Less Than" and "Greater Than" evaluation types to the property sensor. The Wiki Docs modifications http://wiki.blender.org/index.php/User:Lordloki/Doc:2.6/Manual/Game_Engine/Logic/Sensors/Property Also, I have attached a screenshot and a blend to check. Reviewers: dfelinto, moguri Reviewed By: moguri Differential Revision: https://developer.blender.org/D476
2014-06-16Cycles: Slight modification to the previous commitSergey Sharybin
This way util_simd.cpp would not require modifications if/when SSE2 is suddenly supported on 32bit platforms. This also allowed to unleash some issues with util_simd.h related on the fact that there size_t and int are actually the same types.
2014-06-16Cycles: Fix compilation error on 32bit platformsSergey Sharybin
2014-06-16Fix T40646: Knife project fails with clippingCampbell Barton
2014-06-16Fix for knife when in ortho camera viewCampbell Barton
2014-06-16Cycles: Fix compilation error on platforms without SSE2Sergey Sharybin
2014-06-16Use ARRAY_SIZE to replace (sizeof(a) / sizeof(*a))Campbell Barton
2014-06-16Quiet warningCampbell Barton
2014-06-16Bugfix: Units for time translate transforms (action/nla editors) was messed upJoshua Leung
When autosnap mode was nearest frame or nearest marker, this was incorrectly converting the units to seconds, making this display unusable for anything.
2014-06-16Feature Request T40643: Animation channels can be renamed by double-clicking ↵Joshua Leung
on them too
2014-06-16Need to consider blender-v* a release branch, not just blender-Sergey Sharybin
This is because of blender-tiles branch we've got..
2014-06-16Forgot this in previous commitSergey Sharybin
2014-06-16Make blender-* branches not being displayed on the splashSergey Sharybin
2014-06-16I'd tend to declare dead code is forbiddenSergey Sharybin
All this code blocks commented out with UNUSED comment are really useless.
2014-06-16Fix T40606: Blender 2.71RC1 for Windows uses too old blender.mo file in JapaneseSergey Sharybin
Update submodules to v2.71-rc1, it got lost on re-tag leading to wrong addons and translations used in RC1.
2014-06-16Add missing dependency to CMake's msgfmtSergey Sharybin
This could have lead to situation when CMake wouldn't re-generate .mo file from changed .po file.
2014-06-16Code cleanup: move editfont drawing into its own function.Campbell Barton
2014-06-16Object Drawing: minor refactor, don't check glsl in wire-modeCampbell Barton
also don't call glBlendFunc for hidden objects.
2014-06-16Fix T40648: Bevel Tool - Amount value slider maximum does not adapt to ↵Bastien Montagne
Amount Type settings automaticly.
2014-06-16Fix T40617: Ortho view selects objects behind cameraCampbell Barton
2014-06-16Fix Python fails to execute text-blocks including non-mbcs chars (T35176, D595)Tamito Kajiyama
2014-06-16Freestyle: Python API docstring updates.Tamito Kajiyama
2014-06-16D545: Freestyle Python API: new methods for Stroke and StrokeVertexIterator.Tamito Kajiyama
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
2014-06-15Curve: remove unused displist membersCampbell Barton
2014-06-15Curve: replace calloc with malloc for values immediately written intoCampbell Barton
2014-06-15Curve: use zero length array for BevList for less confusing syntaxCampbell Barton
2014-06-15Code cleanup: commentsCampbell Barton
2014-06-15Text Editor: dropping id's now paste in Python data path (like pyconsole)Campbell Barton
2014-06-15* Fix OpenCL after uchar4 commit.Thomas Dinges
2014-06-15Fix T40007 Bevel tool resets after getting to 1.Howard Trickey
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.
2014-06-14UI: refactor text cache to use zero length arraysCampbell Barton
also correct some bad casts
2014-06-14BLI_gsqueue: refactor to use zero length arrayCampbell Barton
2014-06-14BLI_gsqueue: use size_t for elem_size (was casting all over)Campbell Barton
2014-06-14UI: Add support for popups to refresh their layput (D578)Campbell Barton
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.
2014-06-14Fix for last commit, forgot changes in Cycles itself.Thomas Dinges
2014-06-14Fix T40609: Wrong WS between word and '?' (no space in english typography in ↵Bastien Montagne
those cases).