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
2012-12-12A big cleaning patch by Bastien Montagne (thanks a lot!)Tamito Kajiyama
* Split and moved Cycles’ render layers panels into the render_layer context as well (would be nice to hide this context when not needed, e.g. with the BGE, but this is not so easy to do nicely...). * Fixed some inconsistencies with trunk (probably due to svn merge glitches) using r52858 as reference. Also recovered the missing release/bin/blender-softwaregl file. * A bunch of style code fixes in Blender's own code (not Freestyle itself yet): line lengths, spaces around operators, block formatting, headers, etc. In rna_linestyle.c, color_blend_items was replaced by ramp_blend_items (exported from rna_material.c).
2012-12-11Merged changes in the trunk up to revision 52858.Tamito Kajiyama
Congratulations to all trunk devs on the Blender 2.65 release!
2012-12-10fix for knife when clipping was enabled, The knife would not snap to ↵Campbell Barton
edges/verts outside the clip area but the geometry would still get cut
2012-12-10fix for knife tool when the mouse was moved outside the clipped area the ↵Campbell Barton
mouse line would reset to 0/0/0 a few areas that use ED_view3d_win_to_segment_clip() didnt take into account the case where the segment was filly clipped, some callers even needed the segment not to be clipped. - added ED_view3d_win_to_segment() - ED_view3d_win_to_segment_clip() now returns FALSE if the segment is totally clipped, but the start/ends of the line are not zero'd as they were before.
2012-12-10knife tool was incorrectly moving points into worldspace, then checking ↵Campbell Barton
clipping against the object space bounds. more fixes needed here but at least correct whats there. also ensure clipping is initialized from the object before handling modal operator events.
2012-12-10de-duplicate labda_PdistVL2Dfl() & line_point_factor_v2()Campbell Barton
2012-12-10some of the modal knife key bindings didn't cause a refresh until you moved ↵Campbell Barton
the mouse. - snap, angle snap, midpoint snap.
2012-12-10fix for copying markers to other scenes not working with 10 or more scenes. ↵Campbell Barton
Regression from r34115.
2012-12-09Bugfix: softshadow in menus was broken.Ton Roosendaal
Already since like 2.61 - when Array draw was added - drawing only shadow in bottom of menus with bad looking corners.
2012-12-09fix [#33442] UnitsCampbell Barton
adding meshes were scaling the user input values so the distance on the button didnt relate to the scale of the object added. Now use an invoke function that scales unset default values.
2012-12-09Fix for a number of compiler warnings as well as a bug hidden by the warnings.Tamito Kajiyama
Patch contribution by Bastien Montagne, thanks!
2012-12-08Merged changes in the trunk up to revision 52815.Tamito Kajiyama
2012-12-07Fix missing mapping and influence panel for particles when cycles is selectedBrecht Van Lommel
as render engine. Still missing is colors and texture slots, but that's too tricky to fix this close to release.
2012-12-06Fix #33423: a few operators still allowed changing current frame duringBrecht Van Lommel
animation render, like cursor set in the graph editor, disabled that now.
2012-12-06fix [#33422] Change Path/Files problem - selected strip directory doesn't workCampbell Barton
2012-12-05Fix #33419: incorrect color with projection painting in cases strength != 1.0Sergey Sharybin
2012-12-04operator spacebar search menu wasn't ignoring internal operators,Campbell Barton
turns out there were copy-pasted functions for operator search popups which were identical except that one skipped internal ops. de-duplicate so both work the same now.
2012-12-04fix [#33412] Jump to next frame broken in grease pencil modeCampbell Barton
allow arrow keys while in grease pencil session, otherwise you can't change frames. also correct out-of-date comments.
2012-12-04cmake was missing some header files.Campbell Barton
2012-12-04Fix for double-freeing image buffers when rendering opengl animation into ↵Sergey Sharybin
movie file.
2012-12-04Fix #33402: Compositor crashes when drag-dropping multilayer exrSergey Sharybin
There was a missing image reload signal in node creation by drag-dropping, which lead to incorrectly set image type. Also fixed misusage of IMB_freeImBuf used to release buffer acquired by BKE_image_acquire_ibuf.
2012-12-03Fix #33398: Missed undo push when script execution failedSergey Sharybin
Undo push was missed in cases when script failed to run with some error when using Run Script in text editor. As far as i can see it makes sense to skip undo push here only in cases live editing is enabled. Otherwise it's indeed annoying to return to previous scene state when debugging the script.
2012-12-03Disable alpha pass for all painting modesSergey Sharybin
It's not actually supported and gives artifacts when tried to be used.
2012-12-03fix [#33400] Knife ortho floating point errorCampbell Barton
the green dot under the mouse would not draw under the mouse when clipping values were high (1000+) - which is common. use a different method which doesnt give these problems.
2012-12-03quiet float -> double conversion warnings and do some osl style edits.Campbell Barton
2012-12-03Fix for [#33378] Grease pencil dopesheet fails on a few operationsBastien Montagne
Snapping operator in action editor for grease pencil and mask wasn't implemented. We could probably re-enabled/fix/cleanup more things in this area (e.g. use a custom poll func for operators not supporting gp/mask, instead of silently doing nothing), but this is for after 2.65 imho).
2012-12-03R/G/B icons in node space backgroud channel selector all had same color ↵Campbell Barton
wheel icon which didnt make much sense.
2012-12-03Image Editor / UV: Thomas Dinges
* Bring back "Snap to Vertex", own regression introduced in r39460. Patch by Brecht (DNA, Transform) and myself (RNA, Script).
2012-12-03Tsss tsss... Copy-pasting! :PBastien Montagne
2012-12-03Minor fix for "no mask keyframe copy" error message in dopesheet editor...Bastien Montagne
2012-12-03Fix #33371: blender freezing in material draw mode.Brecht Van Lommel
When FBO failed in a particular way it could cause the opengl draw buffer to be set wrong, effectively disabling all opengl drawing. The FBO error was caused by cycles GLSL materials with no nodes that would still use blender internal materials, which caused issues with lamp shadow buffers FBO. This also fixes a GLSL refresh issue when switching render engines.
2012-12-03revert part of r52720, Id rather leave these as-is, even if they give ↵Campbell Barton
warnings under some configurations.
2012-12-03fix [#33389] Curve points restricted to 0..1 range,Campbell Barton
also added note on python3.3's faulthandler module.
2012-12-03fix own mistake with recent commit to skip calculating tessface. If you were ↵Campbell Barton
already in editmode the tessfaces wouldn't get recalculated. also minor edits to bmesh rst.
2012-12-02Silent a bunch of gcc warnings (usually dummy, but noisy!).Bastien Montagne
2012-12-02fix GhostSDL displaying text in multiple views.Campbell Barton
add support for multi-sample.
2012-12-02There was no way of knowing what ID type a property comes from by the ↵Campbell Barton
tooltip, (since copying the Data-Path doesn't include the ID the user had to guess). Now include the full python path to the property in the tool-tip.
2012-12-02UI: revert the previous fix for middle click on button, conflicts with panning.Brecht Van Lommel
2012-12-02change uiButGetStrInfo() to use a trailing NULL arg rather then passing the ↵Campbell Barton
number of args as an arg.
2012-12-01UI: allow middlemouse in addition to leftmouse for clicking on various buttons,Brecht Van Lommel
means that if you have emulate 3 button mouse enabled and still have alt pressed when clicking, it works.
2012-12-01style cleanupCampbell Barton
2012-12-01fix for bug in console indent, was not copying the null terminator.Campbell Barton
also add assert to catch this case more quickly.
2012-12-01Merged changes in the trunk up to revision 52690.Tamito Kajiyama
Conflicts resolved: release/datafiles/startup.blend source/blender/blenlib/intern/bpath.c
2012-11-30Fix transfer weight tool enum properties all showing question mark icons,Brecht Van Lommel
these should have no icons.
2012-11-30fix for various asserts running operator tests - not likely any of these ↵Campbell Barton
would cause real user bugs though.
2012-11-30Compositor should never add notifiers by himself, notifiers should be addedSergey Sharybin
from main thread using job update callback. Added new execution-time callback to bNodeTree which marks job to be updated. The code here could be a bit not so obvious because in some cases job update callback need to merge local tree, but it's only needed for old compositor system which is gonna to be removed soon, so decided not to bother with cleanup now. Removing old compositor system will also allow to drop stats_draw callback from bNodeTree. This should fix following bugs:
2012-11-30add margin to view fitting view-all/local-view (wasn't obvious with the ↵Campbell Barton
models I was testing with).
2012-11-30fix for another glitch caused by r51636, setting the camera view with ↵Campbell Barton
quad-view enabled would zoom all non camera views. Theres no need to draw other views so skip that.
2012-11-30fix for r51636 - making the lens work in ortho mode made view-all and ↵Campbell Barton
local-view operators give bad zoom levels.
2012-11-30make setting local view take the view lens int account.Campbell Barton