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-03-19Cleanup: spelling grey -> grayCampbell Barton
2015-03-19Revert part of recent color-management commitCampbell Barton
This adds back rgb_to_grayscale, not all color is managed or depends on the current loaded blend file's CM options. Noted in comments that this is only to be used outside the CM pipeline.
2015-03-18Select nth option to skip stepsCampbell Barton
Patch T43752 @codemanx, added matching curve option.
2015-03-18Support UV island selection in UV synch and face select mode.Antony Riakiotakis
Enough said, people wanted this for ages, enjoy!
2015-03-18RNA: palette colors apiCampbell Barton
Methods so Python can manage colors. palette.colors.new()/remove()/clear()/active
2015-03-17Part 2 of D1082 by Troy Sobotka, remove our functions that do lumaAntony Riakiotakis
calculations and use the OCIO one instead.
2015-03-17Fix T44021: Crash switching Rendering Engines while viewport rendering + ↵Sergey Sharybin
animating Make sure preview render job is cancelled before freeing the render engine associated to the viewport.
2015-03-16Refer to Task 43975: Deleting a Shapekey can break the relative pointersGaia Clary
This patch would reassign the relative of all keyblocks to the relative of the deleted keyblock. And it fixes the misalignement of the index values after the keyblock is deleted. Reviewers: campbellbarton Differential Revision: https://developer.blender.org/D1176
2015-03-16PyConsole: double-click to select wordCampbell Barton
patch T43641 by @v-disp with own edits
2015-03-16Fix T43997: Paste fcurve keeps handle selectionCampbell Barton
2015-03-16Fix T43976: Edit-mode crash /w (scene/screen.scene) mismatchCampbell Barton
2015-03-16Nodes: Shortcuts for Snap and Snap Element MenuJulian Eisel
Added Shift + Tab for Snap and Ctrl + Shift + Tab for Snap Element Menu (consistent to 3D View) NOTE: Exit Group is now Ctrl + Tab instead of Shift + Tab
2015-03-14Cleanup: styleCampbell Barton
2015-03-13Add argument to DM_to_mesh() function to take ownership over the DMSergey Sharybin
The idea is pretty simple: instead of making temporary copy of all the related custom data layers just pass the ownership from the DM to the mesh. This is really handy in cases when you've got DM which you need to convert to Mesh datablock and wouldn't need that DM after conversion anyway. Foe example, render database conversion, exporters and even Modifier Apply will benefit from this option. Reviewers: campbellbarton Differential Revision: https://developer.blender.org/D1127
2015-03-13Add an option to mesh.calc_tessface() to get rid of polygons and loopsSergey Sharybin
The purpose of this change is to add extra possibility to render engines and export scripts to reduce peak memory footprint during their operation. This new argument should be used with care since it'll leave mesh in not really compatible with blender format, but it's ok to be used on temp meshes. Unfortunately, it's hard to get scene where it'll show huge benefit because in my tests with cycles peak memory is reached in MEM_printmemlist_stats(). However, in the file with sintel dragon it gives around 1gig of memory benefit after removing the polys which would allow other heavy to compute stuff such as hair (or even pointiness calculation) to not be a peak memory usage. In any case, this change is nice to have IMO, and only means more parts of scene export code should be optimized memory-wise. Reviewers: campbellbarton Differential Revision: https://developer.blender.org/D1125
2015-03-13Fix T43959 jittering in 2D texture painting.Antony Riakiotakis
This is still not perfect, but should work smoother now. Previously there was visible wobbling while painting. This can be included in final release.
2015-03-12View3D: Quad-view opposite axis switchingCampbell Barton
Pressing Numpad9 now orbits to the opposite side in any viewport, with the advantage that it can switch locked-quadview axis to their opposite side.
2015-03-12Cleanup: remove unused viewnumpad codeCampbell Barton
2015-03-12Cleanup: de-duplicate view3d clippingCampbell Barton
2015-03-11Cleanup: styleCampbell Barton
2015-03-11Cleanup: indentationCampbell Barton
2015-03-10Fix T43831: Image Editor: Render info not displayedSergey Sharybin
Issue was caused by b62c2a9 and root of it goes to the fact that text info is stored in the "main" scene, not the currently rendering one. This is a bit annoying but making it so text and result are coming from the same scene is a bit dangerous to do now. Will re-visit this change after the release and see if it might be done in a more clear fashion.
2015-03-10Fix T43953, make opengl render work like before, basically, if we renderAntony Riakiotakis
transparent, it will render sky/transparent, regardless of the "show world setting".
2015-03-10Fix crash in mesh data transferCampbell Barton
2015-03-10Fix crash extruding an empty curveCampbell Barton
2015-03-10Fix crash enabling dyntopo in background modeCampbell Barton
2015-03-10Fix T43941: Grease pencil eraser outline vanishesCampbell Barton
2015-03-09Fix T43937: Changing Texture Brush doesn't update toolbarJulian Eisel
2015-03-09Fix T43872: Adding a constraint to a bone of a proxy armature resets all ↵Bastien Montagne
bones' transformations. Temp hack for until new depsgraph is here. Thanks the Joshua and Sergey for their help.
2015-03-09Image Space: enable zoom/cursor warpingCampbell Barton
2015-03-09Fix T43858: Collision Bounds Display BugCampbell Barton
Was using draw-type when drawing BGE collision bounds.
2015-03-09Fix for clamping large UV coords in UV-panelCampbell Barton
Would clamp value ranges in UI when outside hard coded range.
2015-03-09IME: Disable IME for number buttonsSeverin
2015-03-06Fix edit-lattice leaving incorrect point-sizeCampbell Barton
2015-03-06Fix metaball->mesh removing all metas in the sceneCampbell Barton
Assumed the entire scene used the one motherball.
2015-03-05Fix T43880 really stupid mistake from fixing stick mode selectionAntony Riakiotakis
2015-03-05Make limits of sequencer scaling a bit more saneAntony Riakiotakis
2015-03-05Fix T43890: Crash, Alt-D over operator redo buttonCampbell Barton
2015-03-04Fix T43879: Autokey ignore pref /w viewlock-cameraCampbell Barton
2015-03-04Fix for snap to cursor /w parents (object/pose)Campbell Barton
Also don't use pose-bone transform unless the user is in pose-mode.
2015-03-04Snap: ignore unselected items, /w snap from activeCampbell Barton
2015-03-04Own error in recent commit (Snap active)Campbell Barton
2015-03-04Fixed wrong label and hint text in Collada exporterGaia Clary
2015-03-03Another stability commit for legacy users - don't crash when togglingAntony Riakiotakis
dyntopo just notify user that their system doesn't support it.
2015-03-03Grrr, missed those ones in previous commit!Bastien Montagne
2015-03-03UI messages fixes...Bastien Montagne
2015-03-03Knife: fix glitch dragging mouse outside the faceCampbell Barton
Had a small gap between the last-vertex & new-cut
2015-03-02Fix T43862: Knife fails with concave ngonCampbell Barton
2015-03-02Fix missing newline in the button cycle error printSergey Sharybin
2015-03-02cleanup: float/double promotion, redundant castsCampbell Barton