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
path: root/source
AgeCommit message (Collapse)Author
2014-04-30Python: move to version 3.4x on all platformsCampbell Barton
2014-04-30Fix T39795: Crash when duplicate f-curve keyframe, individual originsSergey Sharybin
Seems to be just missing case for center point initialization in td. Thanks Campbell for review!
2014-04-30Fix T38245: Render slot buffer gets deleted in compositor when input is an imageSergey Sharybin
This was more like a TODO than a bug, but wasn't difficult to support. Need to backup image slots before doing re-compo in nodes editor. If something breaks, lease poke me!
2014-04-30Change naming slightly, it conflicts with DrawText function define onAntony Riakiotakis
windows on MinGW
2014-04-30Report when saving images and textCampbell Barton
also fix bug where text saving would strip last newline
2014-04-30Changes to cache line display in image editorSergey Sharybin
Only show it when having active mask or when current image is a sequence or movie.
2014-04-30Frame cursor color was missing for the image editorSergey Sharybin
2014-04-30Fix T39931: Crash generating thumbnails (error in escaping)Campbell Barton
2014-04-30Fix T39953: Float data images display trash in image editorSergey Sharybin
Was a failure of optimization trick.
2014-04-30BGE: Fixing a memory leak from the recent physics changes.Mitchell Stokes
2014-04-30Partially revert ef3eb7adc6f283145e28781a05b3b5e73a6cf083Joshua Leung
The .exe extension *is* needed on Windows for makesrna, contray to the patch author's protestations otherwise. Omitting it breaks compilation on mingw at least (i.e. "rename()" fails). Thanks to "PerfectionCat" for narrowing down this bug. makesdna on the other hand still seems to work ok from a quick test I did. Unless more issues crop up, just reverting this part of the patch should be ok, though IMO these changes were unnecessary in the first place.
2014-04-30Spelling fixesJoshua Leung
2014-04-30Correct issue with IMB_ispic returning boolCampbell Barton
2014-04-30Fix T39933: Link/Append Scenes misses VSE mask, clipsCampbell Barton
2014-04-30Fix T39952: Printing tiles gives negative numbersCampbell Barton
2014-04-30Get the edit-object when keying and checking editmodeCampbell Barton
2014-04-30Code cleanup: remove redundant CTX callsCampbell Barton
2014-04-30Fix T38905: view3d.object_as_camera didn't store the last-viewCampbell Barton
2014-04-30View3D: disable entering camera when enabling quad-viewCampbell Barton
This is annoying/distracting especially if your view is just where you want it, also entering camera view is easy if you need.
2014-04-29Remove link from Link/Append UI, since we have 2 menu itemsCampbell Barton
2014-04-29Correct own regression drawing lamp outlineCampbell Barton
2014-04-29Fix 39065: Leaving QuadView lost view settingsCampbell Barton
Now the 'User' view is used when exiting quadview.
2014-04-29Code cleanup: remove unused grease pencil pointerCampbell Barton
2014-04-29Fix T39947: Aligned handle behaviour problem in graph editorCampbell Barton
Error in recent change to handle behavior
2014-04-29Fix T31605: rotate around selection ignores numpadCampbell Barton
2014-04-29Code cleanup: avoid sin/cos calls when drawing sun lampCampbell Barton
2014-04-29reduced minimum value for NDOF sensitivity to better fit the space navigatorgaiaclary
2014-04-29Fix for nurbs surface merge didn't update key indexSergey Sharybin
2014-04-29Fix issue discovered in soc-paint-2013 branch.Antony Riakiotakis
Weights do not need perspective correction since they are calculated on flat triangle coordinates. Only pixel coordinates, reprojected from the weights need this. This was already fixed for clone brushes but in soc-2013-paint where we have stencil preview, it is apparent that the stencil suffered from the perspective distortion issue too.
2014-04-29Code cleanup: quiet warningsCampbell Barton
2014-04-29Fix for wrong behavior of 'darken' blend mode with factor.Kevin Dietrich
The formula was not consistent across Blender and behaved strangely, now it is a simple linear blend between color1 and min(color1, color2). Reviewed By: brecht Differential Revision: https://developer.blender.org/D489
2014-04-29Fix T39940: animation of render layer on/off toggle not working during render.Brecht Van Lommel
2014-04-29Code cleanup: don't use unnecessary .exe extension in scons, simplify code.Lawrence D'Oliveiro
Reviewed By: brecht Differential Revision: https://developer.blender.org/D236
2014-04-29Fix T39942: Displacement of group instance objects when switching to ↵Sergey Sharybin
textured viewport shading Usual dupli object issue, sometimes it's needed that all the object in dupli group have modified obmat. Made it an utility function now, which is used by convertblender and dupli draw code now.
2014-04-29Fix T39941: Freestyle: Rendered preview crashes when non-primary render ↵Tamito Kajiyama
layer is selected and disabled. Freestyle relies on render layer name (RenderLayer::name) to find the render layer that corresponds to a scene render layer being rendered. When the active render layer is disabled during preview rendering, the function render_result_new() populates the list of render layers (RenderResult::layers) with an unnamed render layer while setting the active scene render layer index to zero. This commit fixes the missing initialization of the render layer name by referring to that of the first in the list of scene render layers.
2014-04-29Accidentally left compositor debug option enabled, sorry.Lukas Tönne
(We should replace that with a proper build option really)
2014-04-29Error in last commitCampbell Barton
2014-04-29PyAPI: Matrix.invert(ed): accept an optional fallback argumentCampbell Barton
This avoids try/except when its possible the matrix has no inverse.
2014-04-29Reimplemented the earlier feature of swapping existing links toLukas Tönne
neighboring sockets when connecting to an occupied input. This now works based on socket names rather than types, which helps to avoid unwanted connections to arbitrary sockets. Sockets are considered swappable when their names match, based on an alphabetic prefix followed by non-alphabetic suffix. For example: Image - Image : matches Color1 - Color2 : matches (used e.g. in cycles mix nodes) Roughness - Rotation : does not match (suffix is still alphabetic)
2014-04-29Fix T39936: Plane Track operation would not initialize resolutions forLukas Tönne
upstream nodes.
2014-04-29Code cleanup: remove redundant matrix initializationCampbell Barton
2014-04-29Correction to last commitMitchell Stokes
2014-04-29Fix T39614: Ping Pong Action doesn't work correctlyMitchell Stokes
2014-04-29Fix T39939: Undo change of rB27db75363e67, which broke bevel.Howard Trickey
The test for wire edges when reattaching was wrong, because some newly made edges are wire at the point of the test. This made some duplicate edges. Need to track the original wire edges a different way.
2014-04-29Code cleanup: simplify reallocs using MEM_recallocCampbell Barton
2014-04-29Ignore user-preferences when inserting keys from PythonCampbell Barton
2014-04-29Fix T39539Jeroen Bakker
Initialization of not initialized memory when accessing the renderlayer directly
2014-04-29Error in last commit, need to take duration into accountCampbell Barton
2014-04-28Correction to last commitCampbell Barton
2014-04-28f-curve easing: Adjustments to Robert Penner elastic easingCampbell Barton
Compensate for the clamped amplitude by blending the elastic effect. Allows for a subtle elastic effect which wasn't possible before.