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-23Fix T46215: Explode modifier looses texturesv2.76-rc2Campbell 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-23Update module test to pass w/o freestyle enabledCampbell Barton
2015-09-23Update test to RNA APICampbell Barton
2015-09-23prevent assert: select-linked UV delimit w/o UV'sCampbell Barton
2015-09-23OpenSubdiv: Fix crash with empty meshSergey Sharybin
Reported by newbz in IRC, thanks!
2015-09-23FFmpeg: Solve memory leak happening on encoding videoSergey Sharybin
2015-09-23Fix T46194: Crash rendering particlesCampbell Barton
Off by one error in 38940662
2015-09-23Remove arbitrary simulation time limit in liquid sim. Tested and works fine ↵ZanQdo
with more than 100s
2015-09-23Fix T46201: Popup menu in post_load handler crashCampbell Barton
Match regular file loading logic for new-file operator.
2015-09-23Fix bplayer (c).Bastien Montagne
2015-09-23Sequencer: show X,Y in text effect locationCampbell Barton
2015-09-23Render: Free persistent image storage when loading new fileSergey Sharybin
2015-09-23Fix (unreported) Append/link code: All library datablocks could end with ↵Bastien Montagne
same name. This was broken since ages I think, did not really hurt since we usually never use libs' names to access them. Rather bad behavior however, breaking a ground rule of our ID system! And no real reason to add new libraries to new (split) Main at all, libraries are never considered linked datablocks, which means they should always be in 'main' Main->library list. Not a regression, but should be included in 2.76 imho.
2015-09-23Fix T46159: OpenSubdiv does not always give same results as Blender own ↵Sergey Sharybin
subsurf code with crease edges
2015-09-23Fix view-selected w/ custom bone shapesCampbell Barton
Was ignoring bone-length, also check that drawing shapes is enabled.
2015-09-23Fix T46186: Panel doesn't update on brush changeCampbell Barton
2015-09-23Fix T43715: IK pole target + stretch not working for a single bone chain.Brecht Van Lommel
2015-09-23RNA: angle step-sizes were too smallCampbell Barton
These were ignored previously, so it wasn't noticeable.
2015-09-23Fix node auto-offset failing during heavy compositing (sometimes)Julian Eisel
Compositing might make main thread so busy that animation is considered done due to duration before final position is reached. Also added check to avoid unnecessary redraws.
2015-09-23Fix T46050: blender internal geometry node UV not working inside node group.Brecht Van Lommel
2015-09-23Fix T46144: blender internal face texture color wrong in raytraced reflection.Brecht Van Lommel
2015-09-23fix build error w/ clangCampbell Barton
2015-09-23Fix T46169: Link to bpy API in addons tab of user preferences is outdated.Bastien Montagne
Now use auto-generated one, like e.g. for link in Help main menu...
2015-09-23Fix T46161: Rotate around selection changes bezier curve handle type.Bastien Montagne
Issue is, when 'Rotate Aroud Selection' is set, in Edit mode we do a fake transform operation to get center point around which to rotate. For curves, most transform operations involve a check of handle types. For now, added 'TFM_DUMMY' as an exception here. Think it would be best to actually undo those changes in case of cancelled operation, but this is much more involved, while this fix is safe enough to be included in final 2.76.
2015-09-23Fix leak in UI PanelsCampbell Barton
Switching screens quickly didn't free the panels activedata.
2015-09-23Correction to previous commitJulian Eisel
2015-09-23Fix file key select using wrong file after border select in scrolled viewJulian Eisel
Basically, after border selecting, a wrong file was selected by using arrow keys if the screen was scrolled a bit vertically. Reason was that we didn't use correct view space coordinates but region space coordinates for measuring distance from mouse to first/last file in selection after border select.
2015-09-23Fix T46030: Strange behavior of Cycles Brick TextureSergey Sharybin
Added some extra seed to the hash, so it's now less likely to give repetitive patters at values around zero. This will change distribution of bricks for existing files. but it's something inevitable.
2015-09-23Fix UI crash entering very long stringsCampbell Barton
Strings exceeding UI_MAX_DRAW_STR weren't null terminated.
2015-09-23Fix T46148: Sculpt view-clip fails in ortho modeCampbell Barton
2015-09-23Doc: escape enum name & descriptionCampbell Barton
Needed since key enum now uses many characters as they're typed.
2015-09-17Blender 2.76: Update translations submodulev2.76-rc1Sergey Sharybin
2015-09-17Merge branch 'master' into blender-v2.76-releaseSergey Sharybin
2015-09-172.75 splashCampbell Barton
by The Alike Team
2015-09-17Fix hidden auto-offset glitchJulian Eisel
Steps to reproduce were: Open F233831, insert floating node into nearby link (so that it's not attached to frame).
2015-09-17Blender 2.76: Point submodules to latest release branch from according reposSergey Sharybin
No tagging is done yet, will happen in a bit.
2015-09-17Fix for broken tree offset after recent change for cyclic nodes supportSergey Sharybin
2015-09-17Fix T46143: Faces missing with GPU renderSergey Sharybin
Epsilon was quite arbitrary for GPU, replaced with checking for zero-sized faces. It should solve both original report and the new one. After the release we can check why GPU doesn't produce accurate math here and go to the root of the issue.
2015-09-17Fix T46134: units degrees increment are too smallCampbell Barton
The user interface was ignoring the precision step size for degrees, making all rotation inputs drag by a 100th of a degree. Now use a 10th of a degree instead.
2015-09-17Fix T46139: Crash when inserting a node in a looped node structureSergey Sharybin
2015-09-17Fix for recent regression clamping materialsCampbell Barton
Mixup between gpu/derivedMesh total materials, fix and name more clearly to avoid confusion. thanks to Sergey for finding root cause!
2015-09-17CMake: Another attempt to solve compilation error on WindowsSergey Sharybin
2015-09-17CMake: Attempt to fix compilation error on Windows after recent changesSergey Sharybin
2015-09-17Fix T46090: Blender game embedded player crashSybren A. Stüvel
SCons didn't pass `-DWITH_AUDASPACE` to the compiler, so it skipped the instantiation of the "aud" Python module. This caused a crash of the BGE, which did get the `-DWITH_AUDASPACE` directive, and expected that module to exist. Reviewed by: lukastoenne
2015-09-16Correction to previous commit.Bastien Montagne
Mostly styling, but also str_exec would often remain undefined...
2015-09-16Fix (unreported): Filebrowser key navigation entry did not change caption ↵Thomas Beck
correctly As of this release we're able to navigate with the keyboard in the filebrowsing area. The button caption is changing to an appropriate string whenever a new entry is selected. In @Severins original code a different method was used to determine if a directory was choosen or not, but this got lost while merging the filebrowser rework. Thanks to @mont29 for review!
2015-09-16Fix T46130: Vertex/wire no visible with OpenSubdiv in edit modeSergey Sharybin
For now simply show warning in the interface and fallback to regular subsurf code. Supporting OpenSubdiv in edit mode in possible but not high priority currently.
2015-09-16Fix T46128: High Quality DoF brokenSergey Sharybin
The issue was caused by some special tricks needed to compile OpenSubdiv shader which was using stupid check whether geometry shader is used or not. Now made it more explicit call whether special OpenSubdiv trickery is needed or not. Its not ideal solution, but it's not really easy to do a proper solution for this, because while we can do half of the work with if-defs in the shader code but we'll still need to somewhat define layout of the input blocks which isn't really doable with current shader version we're using.