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-01File Output Node:Thomas Dinges
* Small cosmetic change, move up/down buttons next to the list, instead of beneath. * Removed redundant "uiLayout" declarations.
2012-10-01Disable render part of display transformation for icon/texture previewSergey Sharybin
This change mainly caused by too dark icon generated for texture brushes, but also makes it a bit more straightforward from what's going on point of view.
2012-10-01Fix #32686: MovieClip background initialisaton errorSergey Sharybin
Undistorted rendering with original footage settings does not require proxies to be enabled.
2012-10-01Fix #32695: Can't disable color management for 3D viewSergey Sharybin
Made it so viewport will disable color management if display device set to None. This solves couple of regressions, mainly related on old BGE files and made None display behave exactly as old color management disabled.
2012-10-01add compiler hints that failing to create a bmesh face is unlikely.Campbell Barton
2012-10-01fix [#32713] Crash with modifiers + GLSL modeCampbell Barton
crash caused by own commit r50969, the fix exposed a crash in an area of code that must have never been used before.
2012-10-01fix [#31654] Non-proportional edge slide behaving incorrectly.Campbell Barton
2012-10-01fix for some errors when unlinking.Campbell Barton
- movieclip unlink didn't clear node ID pointers from the scene (leaving dangling pointers). - mask datablock unlink was clearning references from scene nodes twice.
2012-10-01Fix: gpu_colors_enable could cause 3d display corruption because it always ↵Antony Riakiotakis
enables glColorMaterial. Make sure to call gpu_colors_disable even if we don't have a mask layer, to match gpu_colors_enable above
2012-10-01fix [#32709] Color mix node produces artifacts from other framesCampbell Barton
2012-10-01style cleanup: define float sizes for interpolation functions, add retirn's ↵Campbell Barton
on newlines (to better add breakpoints).
2012-10-01mask data is no longer automatically added when sculpting (except when there ↵Campbell Barton
is a multi-res modifier).
2012-10-01DM_set_only_copy() wasn't setting only-copy flags for loops and polygons. ↵Campbell Barton
(should have been added during bmesh merge)
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!