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-10-01Fix potential memory leak bakingCampbell Barton
2015-09-30Fix T46331: File open does not show thumbnails, when a filter_glob is ↵Bastien Montagne
provided by python scripts. No reason to exclude usual file-type 'guessing' for operator-filtered extensions... Safe for 2.76, should we need to merge more fixes.
2015-09-30Fix T46332: Can't select an object with OpenSubdiv enabledSergey Sharybin
The issue was introduced by a wrong fix for T46247. Now both reports should be properly solved.
2015-09-30Revert "Fix T46247: Side-reported, bbox for zero-verts object with OSD ↵Sergey Sharybin
subsurf and GPU compute would be -INF." This reverts commit b278e8742be436f7d0272033bc93def1d47f1752.
2015-10-01Fix T46313: Cycles bake normal mapCampbell Barton
Regression moving to bake to looptri caused by mismatch w/ MFace and MLoopTri when the 3rd index was 0.
2015-09-30Fix T46325: Armature: No more possible to rotate a bone with only its tip ↵Bastien Montagne
selected, in EditMode. Regression from rB312cb0a957b81233ea, now we make an exception for TFM_ROTATION mode...
2015-09-30Fix T46306: Cursor sometimes jumps with num-slider buttons & Continuous GrabJulian Eisel
More precise description of the issue: Clicking on the right side of a num-slider button with Continuous Grab enabled sometimes caused cursor to jump to the inner value indicator even though text editing was started. Happened because data->ungrab_mval wasn't reset correctly after dragging.
2015-09-30Add drag-threshold for number slider buttonsJulian Eisel
Was already used for normal number buttons for ages, makes sense to use here too.
2015-09-29Fix T46299: Windows: File Browser Crash while listing big folders in preview ↵Bastien Montagne
mode (fonts, images...). Windows-only bug, mmap & co are not threadsafe by default on this platform, so we have to add a dedicated spinlock for them in win32. Note that we may try to get rid of those mmap later, but not for 2.76! To be backported to final 2.76...
2015-09-28i18n extraction tools: keep even better order of entries in PO files.Bastien Montagne
Important to avoid too much changes, especially on the git repo (we are still getting way too much changes there currently...).
2015-09-28Blender Internal: Fix regression in point density textureSergey Sharybin
The issue was introduced by original Cycles point density support commit, it lead to a constant density of 1 for object verticies point density source.
2015-09-28Cycles: Fix wrong particles min/max calculation for point densitySergey Sharybin
Solves wrong object mapping reported in T46301.
2015-09-28Fix T46293: Text Editor: Convert to spaces/to tabs was totally broken with ↵Bastien Montagne
non-ASCII strings. Code was totally unaware of UTF8, also it was needlessly complicated...
2015-09-27BGE docs fix: link to the correct method nameSybren A. Stüvel
2015-09-27BGE documentation updatesSybren A. Stüvel
Mostly added missing :arg: clauses -- these caused the :type:-clauses that were already in the RST files to be hidden from the output HTML. I also fixed some argument types from 'list' to 'Vector' where applicable and corrected some obvious mistakes.
2015-09-27Fix T46285: "Select parent" if there is no parent doesn't work correctly.Bastien Montagne
2015-09-27Fix T46268: All Hotkey "C" are unexpectedly translated in menus.Bastien Montagne
We need custom context here, those are often very short names so context collision is pretty easy. Also some minor changes (and avoid shadowing varnames)...
2015-09-27Fix T46271: switching between textures in texture buttons not updating preview.Brecht Van Lommel
2015-09-27Fix T46212: blender internal lights in exclusive light group wrong in viewport.Brecht Van Lommel
2015-09-27Fix crash reporting render errors during baking.Brecht Van Lommel
2015-09-26Fix file browser not sorting file list when opened from editor menuJulian Eisel
2015-09-26Use PyThreadState_GetDict, avoid Python internalsCampbell Barton
Works around problems caused by exposing Py internals (Py_BUILD_CORE). - Build error with GCC, Py3.6 & OpenMP - Linking error on MSVC
2015-09-25Fix T46260: Shadeless option ignores Object-ColorCampbell Barton
2015-09-25Fix node auto-offset to left brokenJulian Eisel
Own, really stupid mistake in rBc653077bf56 :| Kids, don't commit at night!
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