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-02-18bpy.ops.object.add_named() doesnt provide error when failed (related to T38689)Dalai Felinto
2014-02-18View3d: remove DEBUG_NDOF_MOTION, replaced by --debug-events optionCampbell Barton
also set rv3d->rot_angle = 0 on all ndof view3d operators
2014-02-18Fix T38655: Face path select fails with edge/vert select enabled tooCampbell Barton
2014-02-18Fix crash on file load with linked groups and curve bevel.Brecht Van Lommel
This isn't a proper fix, curve_cache should not be NULL, but it makes it possible to open the file at least.
2014-02-17Make it so missing curve cache doesn't crash in sequencer previewSergey Sharybin
2014-02-17Fix T38647: "Make Duplicates Real" crashes in Solid modeSergey Sharybin
This operator created new object and didn't tag them for update, which made it so their data isn't ready at the time of drawing.
2014-02-17Remove left-over form debug timeSergey Sharybin
2014-02-17Fix T38685: missing auto refresh button text on image nodes.Brecht Van Lommel
2014-02-17Bevel fix for T38675, bad bevel on slanted L.Howard Trickey
The test for a reflex angle used the vertex normal, which was not a good test for a saddle point vertex. Switched to using the face normal, if available, for that test. Also added test for this in svn bevel_regression.blend.
2014-02-17Fix T38680: File output subpath file-select operator uses absolute path.Lukas Tönne
This is because the sub-paths of the individual sockets are defined as FILEPATH properties, which automatically adds the standard fileselect operator button in the uiLists. However, that operator returns full paths only, with no direct way to make them relative to the base path. So for now i've turned the subpath properties into regular strings, which removes these operator buttons but should at least avoid the confusion. Eventually new operators could be defined for this, which use the file- select operator and then make the path relative.
2014-02-17Adapt KDL for compile with clang 3.4, which is stricter with friend classes,Jens Verwiebe
fixes ‘friend declaration specifying a default argument must be a definition’, based on information from here: http://www.orocos.org/forum/rtt/rtt-dev/bug-1053-new-compile-error-clang-34-patch-attached
2014-02-17Fix T38658: H.264 with "Lossless Output" enabled gives lossy outputSergey Sharybin
Issue was caused by the change in FFmpeg options: some of them were renamed, some moved to another class. Made some tweaks to how options are passed to the FFmpeg which now seems to be the same as ffmpeg.c.
2014-02-17Fix T38651: Compositor Normal Node Sphere unchangable when Reset All ToLukas Tönne
Default Values is used on it. The default for the socket value was always 0. Now the default value for node socket default_value properties is chosen based on the socket subtype to give some more sensible values. NOTE: this may still be different from the values specified in the socket templates! It is not possible to directly use these template values, because all sockets share the same RNA types. At least it should work reasonably well in the majority of cases now.
2014-02-17Compile Attrs: add ATTR_RETURNS_NONNULLCampbell Barton
2014-02-17RNA: assert on NULL return values from itemf callbacksCampbell Barton
2014-02-17Make sure RenderLayer/Image nodes always return a valid enum items list.Lukas Tönne
2014-02-17Fix T38422: Error writing AAC frame when using FFmpeg compiled with vo_aacencSergey Sharybin
Issue was caused by missing GLOBALHEADER flag set for audio stream. Also made it so frame is getting filled with default, that's what happening in ffmpeg.c.
2014-02-17Fix T38650: Crash from enum item functions returning NULL instead of aLukas Tönne
single terminator item. Ideally no enum item function should return NULL, but since this is very common and an intuitive mistake, better handle that case gracefully in the RNA access function.
2014-02-17NDOF: remove bias for translationCampbell Barton
Was noticeable (and annoying) that different axis had different speed, if we want to have axis bias better do as a user preference.
2014-02-17NDOF: allow panning in view3d.ndof_orbit_zoom, but forward is still zoomCampbell Barton
This makes it so NDOF without any modifiers pressed can pan and orbit which means you have full 6dof, however if you only want to orbit+zoom that works as before. also change logic so rotation is disabled for axis views (orbit operator will exit axis views still, as with mouse orbit)
2014-02-17NDOF: default to turntable (blenders default too)Campbell Barton
2014-02-17Mask: fix for intel openmp which doesn't support casts in for loopsCampbell Barton
2014-02-17Fix T38487: Wrapped translate node in combination with other bufferedLukas Tönne
nodes (Blur) causes crash due to chained read/write buffer operations. The way read/write buffer operations are created for both the wrapped translate node and then the "complex" blur node creates a chain of buffers in the same ExecutionGroup. This leaves the later write buffer operations without a proper "executor" group and fails on assert. Solution for now is to check for existing output buffer operations like it already happens for inputs. This is extremely ugly code, but should become a lot more transparent after compositor cleanup ({D309}).
2014-02-17Suppress assert in debug mode.Campbell Barton
2014-02-17Mask: enable overlap detection by default, more compact buttonsCampbell Barton
2014-02-17Fix T38643: Frame labels are invisible with default theme.Lukas Tönne
The color for frame labels was a mix of the text color (black by default) and the node theme color with a factor of 0.8, which coincidentally is the same as the node body color. Changed it to 0.4, which is the same as the regular node labels use.
2014-02-17Fix for another deadlock with py-drivers: BlendData.scene.remove()Campbell Barton
2014-02-17Blender Internal: Revert a part of rB162d6c73e3d0, that broke rendered ↵IRIE Shinsuke
preview and often causes crash when using material light group.
2014-02-17Fix for issue in mask overlap with no splines in the mask.Campbell Barton
2014-02-17Clear +x flag from source fileSergey Sharybin
2014-02-17Fix T38670: Mask transform without a movieclip crashesSergey Sharybin
Disable transform and mask display when there's no active clip. It's not a matter of returning fallback dimensions if there's no slip, it's also matter of making it so stabilization and distortion routines are aware of clip == NULL which is really crappy. Also almost all the operators are disabled in clip editor without active clip already anyway. Also tweaked header UI a bit to not display mask stuff when there's no active clip,
2014-02-17Fix T38669: Mask duplicate fails with multiple layersSergey Sharybin
Allow duplicating splines from inactive layers. This way it's more useful IMO than restricting duplication to an active layer. TODO: What should be a behavior for clipboard (currently it copies splines from an active layer only)?
2014-02-17Fix T38664: Blender hang when change scene from scriptSergey Sharybin
Deadlock between python script evaluation thread and drivers evaluation caused by scene update invoked from ED_screen_set_scene(). Pretty much the same as setting scene current frame with the same solution BPy_{BEGIN,END}_ALLOW_THREADS.
2014-02-17Fix for rare crash in recent mask option to check overlapsCampbell Barton
2014-02-17Revert 7142b970853f209f6c43319b7f862bcbdbea3728 (transform toggle node hiding)Campbell Barton
D187 was committed without review and later rejected by Brecht and myself.
2014-02-17Sequencer: increase soft limits for translateCampbell Barton
2014-02-17UI: wheel switches tabs over the tab area, or ctrl+wheel anywhereCampbell Barton
2014-02-17Mesh Tool: removes degenerate edges, faces and face ears.Campbell Barton
2014-02-17Code cleanup: unused/warningsCampbell Barton
2014-02-16Fix: compile error due to non-matching type and strict flags for MSVC9Andrea Weikert
This fixes a small compile error where MSVC9 complains about conversion from int to unsigned char.
2014-02-16Fix for bmesh with openmpCampbell Barton
2014-02-16MSVC: add errors for BLI_strict_flags.hCampbell Barton
2014-02-15Compile fix for 004decc1d940...Thomas Dinges
2014-02-15Code cleanup: warningsCampbell Barton
2014-02-15Fix T38638: modifiers on curves kept warningsCampbell Barton
2014-02-15Mesh Inset: following existing edges is now optionalCampbell Barton
2014-02-15UI: fix for glitch where active button became inactive on undoCampbell Barton
2014-02-15IDProp API: change IDP_NewString so `sizeof()` can be passed in.Campbell Barton
2014-02-15Fix reading one byte past the buffer when writing string propertiesCampbell Barton
2014-02-15Fix T38640: password values showed in tooltipsCampbell Barton
also disable copying password text.