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-10-01fix for leak when freeing mask data in editmode.Campbell Barton
2012-10-01fix for crash deleting higher multi-res levels without mask data.Campbell Barton
2012-10-01update UI introspection script for changes to blender.Campbell Barton
2012-10-01updated themes with active pose bone color.Campbell Barton
2012-09-30Revert changes made to support diffuse color when sculptingSergey Sharybin
This changes are not stable enough and trying fix it could backfire in some other regressions which isn't wanted so much close to the release. This means objects will have gray color as diffuse which becomes darker in masked areas for 2.64. Proper fix is aimed for 2.65. This commit reverts 50827 and 50898.
2012-09-30fix for using uninitialized blur falloff for dilate/erode node.Campbell Barton
2012-09-30Fix #32706, Unnecesary refreshing of compositor.Lukas Toenne
RNA doesn't need to do full update for label changes.
2012-09-30fix for double free.Campbell Barton
2012-09-30missed these last commitCampbell Barton
2012-09-30fix for crash drawing the clip view with a blend file that has lock to ↵Campbell Barton
selected, but no clip in the view.
2012-09-30demote library linking errors from ERROR's to warnings, since errors will ↵Campbell Barton
throw a python exception and stop the script when loading a blend file by calling a python operator.
2012-09-30style cleanupCampbell Barton
2012-09-30Funny typo, variable blue!Daniel Salazar
2012-09-30Cycles UI Tweak: Thomas Dinges
* Don't disable Progressive option, just grey out.
2012-09-29correct addon example, it used both __doc__ and bl_descriptionCampbell Barton
2012-09-29Dupli layer visibility name can be clearerDaniel Salazar
2012-09-28- transform's createTransCurveVerts was using both CTX_data_edit_object(C) ↵Campbell Barton
and t->obedit, now only use t->obedit. - freeing bez-triple handle data was being done in a loop for many types which don't support bezier handle data.
2012-09-28fix [#32684] Shrink/Fatten tool has odd behaviorCampbell Barton
2012-09-28Fix #32072: cycles shadow pass gave different results with/without emittingBrecht Van Lommel
materials present, even though it's only taking lamp shadows into account.
2012-09-28Fix cycles "synchronizing object" status being shown when it was already ↵Brecht Van Lommel
finished.
2012-09-28Fix #32671: new orbit sensitivity and turntable/trackball choice was only ↵Brecht Van Lommel
available from special NDOF menu, added them in user preferences as well now. Also made it do proper version patch for conversion from old user preferences, and changed turntable choice from a boolean to enum for consistency.
2012-09-28Made View2D drag zoom behave in the same way as zoom in 3d viewportSergey Sharybin
Initially issue was caused by opposite MMB-Drag zoom direction in nodes editor. Made it so MMB-Drag in negative axis direction (down for Y axis and left for X axis) would zoom in, moving in opposite direction will zoom out. This could kind of break muscule memory, but after discussion with Campbell decided it's not so big a problem -- seems users weren't related on direction of zoom in and just waved mouse around until zoom is correct. And now muscule memory should even be a bit better -- drag zoom is unified between different areas.
2012-09-28Fix #32673: long strings were wrongly clipped when modifyingSergey Sharybin
It was a regression in svn revision 50676 -- button's string width should be calculated taking button offset into account. However, check for button offset should check string width without offset taken into account.
2012-09-28fix/workaround [#31811] Subdivision Surface (Apply modifier to editing cage ↵Campbell Barton
during Editmode) Loop Cut Crash A correct fix for this bug likely involves changuing how operators are called in the event loop but such changes better not be made just before the release.
2012-09-28add warning that RNA update callbacks dont have checks for infinite recursion. Campbell Barton
2012-09-28fix [#31476] DopeSheet GreasePencil Mode Window won't scroll upCampbell Barton
2012-09-28correct own typo from r43404Campbell Barton
2012-09-28code cleanup: correct spellingCampbell Barton
2012-09-28fix for header not updating with an error report when a job finishes.Campbell Barton
was reported as a reply to [#32537], but is a different issue then the original report.
2012-09-28fix [#32678] Changing RGB Curve via 'X' or 'Y' coordinates does not updateCampbell Barton
2012-09-28fix/workaround [#32679] Save a Copy during F12 Cycles Render produces black ↵Campbell Barton
image image-save now poll's for rendering while saving an image, this can't easily work in a reliable way (buffers are being written to), so disable and set the poll fail message so the tooltip explains why this tools disabled.
2012-09-27Fix #32618: cycles multithreaded image loading could crash with CUDA, was aBrecht Van Lommel
threading issue that happens once every X frames.
2012-09-27Fix compilation issue on MinGW, thanks to Sergey for the fixAntony Riakiotakis
2012-09-27Fix #32658: left mouse button selection did not work well in the graph and maskBrecht Van Lommel
editors. Ctrl+Click to add a point and vertex slide now work with right mouse button in this case, consistent with the 3D view.
2012-09-27Fix #32670: lamps in lamp groups did not respect renderability option.Brecht Van Lommel
2012-09-27Fix #32669: Markers are not disabled properly if started from any other than ↵Sergey Sharybin
first frame. Was own mistake in code refactoring from a while ago.
2012-09-27Fix/enhancement of "locale to po file name" code. Now should handle nicely ↵Bastien Montagne
locales like "gez_ER@abegede", and never read uilng string beyond its end!
2012-09-27Fix #32667: Curve softbodies doesn't render animation (cycles)Sergey Sharybin
Issue was caused by cycles being duplicated curve objects before converting them to mesh. This duplication will loose pointcache which resulted in object not being properly deformed.
2012-09-27Color Management: move "Color Unpremultiply" option to Color Management panelBrecht Van Lommel
from the Shading panel, since it's about color space conversion for renders.
2012-09-27fix [#32616] Changing parent does not keep transformationCampbell Barton
add an option to apply the transform of an object when re-parenting. the reason for this is you dont always want to apply transform because... - your object may be driven/animated and the transformation will be lost. - with negative scales and rotation it can end up giving odd/not-useful results.
2012-09-27fix for adding triangle-fan filled circle not tagging the center vertex.Campbell Barton
2012-09-27fix [#32672] Crash when rendering environment mapCampbell Barton
own regression since 2.63
2012-09-27wm_event_do_handlers was calling sound_sync_scene() twice without error ↵Campbell Barton
checking the result of the second call.
2012-09-27don't draw the object center circle when in sculpt mode (all other paint ↵Campbell Barton
modes have it disabled).
2012-09-27minor change for sculpt undo, was getting the derived-mesh before calling ↵Campbell Barton
sculpt_update_mesh_elements(). also add NULL check for BKE_key_from_object(), to avoid unlikely but possible NULL pointer dereference.
2012-09-27pep8 cleanupCampbell Barton
2012-09-27style cleanup: also correct incorrect doxy headingCampbell Barton
2012-09-27correct debug/test assignment being left in the UI_view2d_smooth_view() so ↵Campbell Barton
it always recalculated.
2012-09-27incorrect spelling in commentsCampbell Barton
2012-09-26fix for cycles/python script error in normal panelCampbell Barton