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
2015-09-25Fix T46249: Boid goal object that has a force field set to 'Every Point' ↵Bastien Montagne
shape causes crash. This is a mere bandage, that whole area is known broken anyway, but at least it should prevent the crash. Note that that kind of stuff (the efd->index being a pointer) is really bad practice imho... Should be backported to final 2.76.
2015-09-25Fix T46239: Cross effect strip input fields can't be changed (in its ↵Bastien Montagne
properties panel). Those shall not be editable in UI...
2015-09-25Fix T46263: bpy api - assigning to object.matrix_basis with AXIS_ANGLE ↵Bastien Montagne
rotation mode does not work correctly. Drot in axis angle does not make that much sense anyway (it's even disabled in UI), but let's apply it correctly at least!
2015-09-25Fix T46247: Side-reported, bbox for zero-verts object with OSD subsurf and ↵Bastien Montagne
GPU compute would be -INF. Trivial fix, to be backported to final 2.76 if possible.
2015-09-24Cleanup: And one more commit... (BVH Cache).Thomas Dinges
2015-09-24Cleanup: Remove some more BVH cache code, for reading/writing the cache.Thomas Dinges
2015-09-24Cleanup: Remove some underlying code for the BVH disk cache.Thomas Dinges
Notes: - There is still some bvh cache code, but that is from the engines initial commit, we might clean this up further or keep it. - Changes in util_cache.h/.c are kept, this might be re-used in the future.
2015-09-24Cleanup: Typo fixes in OpenCL log messages.Thomas Dinges
2015-09-24Cycles: Remove the BVH cache featureThomas Dinges
This removes the BVH cache feature from the UI, underlying code will be removed in a separate commit. The BVH cache was added before we had a multi-threaded BVH build, and a lot of other optimizations were done since then, which makes this not useful anymore. Fix T46162.
2015-09-24Multiview: fix Image Editor not showing Views menu when renderingDalai Felinto
non-stereo Multi-View camera rigs (unreported)
2015-09-24Add test scripts to ctest & renameCampbell Barton
2015-09-24Fix T46226: Bake normals multi-res crashCampbell Barton
2015-09-24Fix T45865: NLA: Auto Blend is not recalculated when adjusting repeat.Bastien Montagne
2015-09-24Fix T46227: ShapeKeys Lattice by the driver, problem updates in new depsgraphSergey Sharybin
The issue was caused by driver referencing path outside of the key datablock.
2015-09-24Fix T46232: Boids crash w/ random rule selectionCampbell Barton
2015-09-24Quiet warningCampbell Barton
2015-09-24Knife: Improve clamping extents in ortho viewCampbell Barton
- measure extents from mesh center instead of origin. - use clamping method, guaranteed not to flip the input vectors direction. - use cage coords when available (since knife operates on the cage).
2015-09-23Fix T46219: Knife cuts fail away from centerCampbell Barton
2015-09-23Fix T46225: Crash when rendering halo flareDalai Felinto
Error introduced in the multiview commit. Also bringing back the "continue" statement instead of "return", as it was before multiview.
2015-09-23Fix T46222: Eyedrop picking objects inconsistentlyCampbell Barton
2015-09-23Fix T46220: Add torus has no 'layers' optionCampbell Barton
Add layers property for all operators using AddObjectHelper
2015-09-23Fix UV editor scope background color not correct after theme resetJulian Eisel
Missed to do that in rBcbeb76da952cd.
2015-09-23Workaround for linking Python on win32Campbell Barton
2015-09-23Fix T46215: Explode modifier looses texturesCampbell Barton
2015-09-23Fix T46217: Make normal artifactsCampbell Barton
2015-09-23Cycles: Support building with latest OSL-1.7devSergey Sharybin
So now the following OSL versions are supported (at least for compilation): - 1.5 with closure alignment patch applied - 1.6.8 release - 1.7 development version from latest git
2015-09-23Fix T46202: OS X (and Windows?) crash when going fullscreen.Brecht Van Lommel
Calling event handling recursively during window live resize is problematic, the code wasn't designed to do that. Instead postpone event handling until after live resize.
2015-09-22Update module test to pass w/o freestyle enabledCampbell Barton
2015-09-22Update test to RNA APICampbell Barton
2015-09-22Show error when unsupported movie format usedCampbell Barton
Was silently failing.
2015-09-22prevent assert: select-linked UV delimit w/o UV'sCampbell Barton
2015-09-22OpenSubdiv: Fix crash with empty meshSergey Sharybin
Reported by newbz in IRC, thanks!
2015-09-22FFmpeg: Solve memory leak happening on encoding videoSergey Sharybin
2015-09-22Fix T46194: Crash rendering particlesCampbell Barton
Off by one error in 38940662
2015-09-22Install_deps: Hopefully fix broken checks for numpy package in fedora-like ↵Bastien Montagne
distro.
2015-09-22Install_deps: Add command line options to saved BUILD_NOTES.txt.Bastien Montagne
Requested by Daniel Salazar (zanqdo) over IRC.
2015-09-22Fix report banner text widthCampbell Barton
2015-09-22Reporting was done before before addons were loadedCampbell Barton
On the very first start, reporting of missing engines wasn't working.
2015-09-22Remove arbitrary simulation time limit in liquid sim. Tested and works fine ↵ZanQdo
with more than 100s
2015-09-22Fix for error reporting w/ a new-fileCampbell Barton
Reports are now initialized before reading startup.blend
2015-09-22Cleanup: indentationCampbell Barton
2015-09-22Report loading file with no matching engineCampbell Barton
Re-enable old code, now show in header instead of popup.
2015-09-22Cleanup: de-duplicate post file read update callsCampbell Barton
2015-09-22Fix T46201: Popup menu in post_load handler crashCampbell Barton
Match regular file loading logic for new-file operator.
2015-09-21Fix bplayer (c).Bastien Montagne
2015-09-21Cleanup: use malloc when calloc is overwrittenCampbell Barton
2015-09-21Makefile: show build dir when configuringCampbell Barton
2015-09-21Sequencer: show X,Y in text effect locationCampbell Barton
2015-09-21Armature drawing: custom shape scale optionsCampbell Barton
- Custom scale: Avoids having multiple custom-shapes at different sizes. - Option not to use bones length: So changes in edit-mode don't resize the custom-shape.
2015-09-21Render: Free persistent image storage when loading new fileSergey Sharybin