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-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-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 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-24Multiview: fix Image Editor not showing Views menu when renderingDalai Felinto
non-stereo Multi-View camera rigs (unreported)
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 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-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-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-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.