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-11Fix T46403: motion tracking not workig with Xcode 7 on OS X.v2.76Brecht Van Lommel
Caused by use of the uninitialized shape_ variable in Resize().
2015-10-11Revert "Fix T46406: Cycles ignores default socket value associated with ↵Brecht Van Lommel
group socket" Fixes T46442.
2015-10-10Fix/Workaround T46431: blender-softwaregl crashesCampbell Barton
Order of initialization bug only impacted mesa's software-gl. For now effectively revert support for glx-context-flags.
2015-10-09Use 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-10-09Blender 2.76: Point submodules to updated release branchesSergey Sharybin
2015-10-09Blender 2.76: Entering release stageSergey Sharybin
2015-10-09Fix T46420: Segfault when instancing smoke domain.Bastien Montagne
Looks like instancing of smoke sim is not supported at all (was fake-working in 3DView in 2.74, but not rendered). But it should not crash - code was adding temp 'fromdupli' base to the delayed drawing list... Nice to backport this to 2.76 I think.
2015-10-09Correct own error in editmesh bvhCampbell Barton
Flag mix-up and uninitialized var.
2015-10-09Fix leak creating 'empty' looptri bvh treeCampbell Barton
2015-10-09Fix T46415: empty node group in GLSL shader has incorrect socket type ↵Brecht Van Lommel
conversion.
2015-10-09Fix T46407: Enabling OSL breaks Vector Transform nodeSergey Sharybin
2015-10-09Fix: Do not show "Paste Flipped" in the Dope Sheet's Grease Pencil modeJoshua Leung
2015-10-09Fix: "Tweak user" red-alert flag was not getting set on strips on active trackJoshua Leung
The "tweak user" flag used to flag strips using the same action as the active strip was not getting set on other strips that live on the same track as the active one. Strips with this flag set are shown with a red colour to indicate that editing the action may have the unintended consequence of modifying another strip.
2015-10-09Fix T46406: Cycles ignores default socket value associated with group socketSergey Sharybin
2015-10-09Cycles: Fix wrong float3->float3 conversion nodeSergey Sharybin
2015-10-09Fix bplayer (c)Bastien Montagne
2015-10-09Fix T46405: Cycles point density missing update when modifying source objectSergey Sharybin
2015-10-09Cycles: Fix for point density always using render settings for modifiersSergey Sharybin
2015-10-09Fix T46410: VSE Mask ignores animated propertiesCampbell Barton
2015-10-09Fix T46401: bad step size w/ radiansCampbell Barton
2015-10-09BMesh: maintain select-history when sortingCampbell Barton
2015-10-09Fix T45886: cont.deactivate(ActionActuatorInPropertyMode) does not workMitchell Stokes
Make sure the Action Actuator actually deactivates when given a negative event while using the property play mode.
2015-10-09Fix mesh validate: 'r_changed' ignored loop editsCampbell Barton
2015-10-09Fix game-property use-after-free errorCampbell Barton
D1538 by @hal01
2015-10-09Fix FileBrowser: do not show 'advanced filter' panel outside of lib browsing ↵Bastien Montagne
context, it’s only used there so far. Reported by Thomas Beck (plasmasolutions) over IRC, thanks. Safe enough for 2.76.
2015-10-09Fix T46390: Sound sequencer API doesnt' work when built with SConsSergey Sharybin
The issue was caused by original patch efde4dbb. This seems to be really old bug, but safe for 2.76.
2015-10-09Fix T46392: Navmesh generator error.Bastien Montagne
We now have to explicitely enure tesselation of DMs when we need it. Notes: Maybe we could use looptris here as well? Not a regression (bug already present in 2.75, but not 2.74), nice to backport to 2.76 nontheless.
2015-10-09Fix T46389: Shrinkwrap fails in editmodeCampbell Barton
Own regression caused by fix for T46067, edit-mode bvh only contained unselected faces. This commit adds support for an edit-mode bvh containing all faces.
2015-10-09Fix T46333: Particle Info Node broken w/ BICampbell Barton
Patch from @a.romanov This also fixes multiple particle systems - which never worked.
2015-10-09Cleanup: warningCampbell Barton
2015-10-09Fix T46375: Inverted scroll in node template menusCampbell Barton
2015-10-09Fix T46354: Curve Modifier does not update (new Dependency graph)Sergey Sharybin
Result of curve modifier depends on transform of the object which should be reflected by the depsgraph relations.
2015-10-09Fix T46377: No python executable in 2.76 rc3 distribution for OSXSergey Sharybin
2015-10-09SCons: Support compilation with 10.11 SK on OS XSergey Sharybin
2015-10-09Fix T46352: Cycles fails to render when material contains UV mapped texture ↵Sergey Sharybin
as volume input
2015-10-09Cycles: Remove redundant coordinate clipping in voxel SVM nodeSergey Sharybin
It is now handled via texture extension type.
2015-10-09Cycles: Fix missing z-coordinate check in volume samplingSergey Sharybin
2015-10-09Fix T46358: Cycles point density uses repeat extension typeSergey Sharybin
2015-10-09Fix T46305: normal map display issues in viewport when using VBOs.Brecht Van Lommel
2015-10-09CMake: detect OS X 10.11 / Xcode 7.Brecht Van Lommel
2015-10-09Fix T46368: Subtitle Export: Subtitles are not sorted by time.Bastien Montagne
We need a temp list of Text effect strips here, to be able to sort it as we want...
2015-10-09Fix (unreported) broken export of timecodes in SubRip VSE exporter.Bastien Montagne
Would write 1.04 seconds as `00:00:01,40` instead of `00:00:01,040`... Anyway, we already have BLI API for timecodes, much better to add SubRip timecode format there, heavily simplifies code. To be backported to final 2.76.
2015-10-09InstallDeps: Fix broken OSL (would not generate valid default names for its ↵Bastien Montagne
.oso pre-compiled files). Also, externalize temp/hacky patches in own dir, much much cleaner than integrating them in bash script!
2015-10-09Fix memory leak in compositor code with RGB curve nodes.Lukas Tönne
2015-10-09Cycles: Correction to point density with particle source and world mappingSergey Sharybin
2015-10-09BGE: Fix T46302: abort call for unnormalized quaterions.Porteries Tristan
2015-10-09Fix T46339: Edge sliding when there is only one vertex in the mesh crashes ↵Bastien Montagne
blender. If t->mode remains edge/vert slide, restoreTransObjects() ends up calling projectVert/EdgeSlideData(), which tries to access invalid customdata... Not sure why we call again restoreTransObjects() and resetTransRestrictions() here tbh, but safer not to change that for now. Should be backported to 2.76 if possible.
2015-10-09Fix T46321: 3D view not refreshed immediatelly after pasting keyframe in ↵Joshua Leung
dope sheet (for a single channel)
2015-10-09Fix 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 enabledv2.76-rc3Sergey Sharybin
The issue was introduced by a wrong fix for T46247. Now both reports should be properly solved.