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
2010-08-18rna renaming, still only adjusting properties that wont be animated (at ↵Campbell Barton
least its very unlikely).
2010-08-16svn merge -r 31314:31370 ↵soc-2010-nexyonJoerg Mueller
https://svn.blender.org/svnroot/bf-blender/trunk/blender
2010-08-16- commit that removed MEM_guardedalloc.h includes broke building with SSE ↵Campbell Barton
enabled. - all C/C++ files in blender are now utf8 compatible.
2010-08-16- remove unused includes IMB_*, BIF_* & MEM_*Campbell Barton
- remove MEM_guardedalloc.h from header files (include directly)
2010-08-15use more BLI math functions.Campbell Barton
2010-08-13added include for offsetof(), also use <string.h>, not "string.h"Campbell Barton
2010-08-132.5: more removal of G.main.Brecht Van Lommel
2010-08-13svn merge -r 31211:31313 ↵Joerg Mueller
https://svn.blender.org/svnroot/bf-blender/trunk/blender
2010-08-13Fix #23111: file Output node not working when inside a group.Brecht Van Lommel
2010-08-13minor changes to rna/python.Campbell Barton
- raise an exception when python calls is_property_set(name) or is_property_hidden(name) and the property does not exist. - added BLI_findstring_ptr(), which finds a named item in a listbase where that name is a pointer to a string. - replaced inline for loops with calls to BLI_findstring_ptr() and IDP_GetPropertyFromGroup().
2010-08-12Fix #22777: duplifaces don't take deforming modifiers into accountBrecht Van Lommel
while in edit mode.
2010-08-12Fix #23281: crash with multiresolution and uv project.Brecht Van Lommel
2010-08-12Fix #23235: crash with editmesh instances & drawing, only the objectBrecht Van Lommel
in object mode should make the editmesh derivedmesh.
2010-08-12patch [#23280] Generated suffixes of strip names contain random character ↵Campbell Barton
(revision 31262) from Torsten Rupp (rupp)
2010-08-12fix for the rna curve interpolation enum, 'ease' was using the same value as ↵Campbell Barton
Bezier.
2010-08-12- possibly bugfix /w uninitialized vars [#23270] Long directory name ↵Campbell Barton
segmentation fault in File brower. - in exceptional cases vertcos_to_key() could return with KeyBlock pointing to freed memory. - invalid use of realloc() in BLI_builddir()
2010-08-11Update address in license block.Guillermo S. Romero
2010-08-11SVN maintenance.Guillermo S. Romero
2010-08-10moved idcode functions into their own file (was added as a todo in the ↵Campbell Barton
comments), these were mixed in with file reading code - BLO_readfile.h bot these functions are not spesific to reading.
2010-08-10svn merge -r 31145:31210 ↵Joerg Mueller
https://svn.blender.org/svnroot/bf-blender/trunk/blender
2010-08-10- Enable shape key switching in edit mode for curves, surfaces and latticiesSergey Sharybin
- Disable changing of lattice size if there are shape keys
2010-08-10header re-shuffle, some headers contained unneeded refereces to other ↵Campbell Barton
headers, better include inline with the C files that need them
2010-08-08This fixes: Peter Schlaile
[#20884] SEQUENCER EFFECT: Animating Speed Control Opacity has no effect [#21308] SEQUENCER EFFECT: Glow ignores Opacity setting
2010-08-08== Sequencer ==Peter Schlaile
This fixes: [#23184] Problems with speed control effect strip in the video sequence editor Also: got rid of tstripdata caches in DNA. Fixes some potential crashes in SEQ_IMAGE rendering (s_elem wasn't checked for NULL).
2010-08-07svn merge -r 31060:31144 ↵Joerg Mueller
https://svn.blender.org/svnroot/bf-blender/trunk/blender
2010-08-06bugfix [#19525] Curve modifier moves mesh geometry firstCampbell Barton
more of a request then a bug but shows up a strange limitation with curve deform modifier, The mesh bounding box would set the deform axis start/end to map the deformation of the curve to. This means it ignored offset in the object location and object data location (you could use a dummy vertex to trick it). Old files wont change, added an option (next to stretch), called 'Bounds Clamp', old files have this behavior but newly made curves have it disabled. Double checked this gives useful results with stretch on/off and negative axis.
2010-08-06Minor cleanup to lattice.c while looking into [#19525] Curve modifier moves ↵Campbell Barton
mesh geometry first A subtle change with the curve deform modifier is when a vgroup is used: the mesh bounds were being calculated based on the verts in the group (ignoring their weight). Now ignore verts weighted at 0.
2010-08-05bugfix [#23164] Copied Scene Nodes!Campbell Barton
copying a scene would still have nodes point back to the old scene which would crash (in some cases) or break rendering.
2010-08-05Do not reset bevel/taper object when they've got incorrect type - just doSergey Sharybin
noting in makebevelcurve and calc_taper functions if type is not curve. This avoids DNA changing depended on object recalc.
2010-08-05svn merge -r 30954:31059 ↵Joerg Mueller
https://svn.blender.org/svnroot/bf-blender/trunk/blender
2010-08-04Fix #23003: setting particle number to 0 was not working correct,Brecht Van Lommel
committing patch #23119 by Jeroen Bakker to fix this, thanks!
2010-08-04Fix #22869: procedural compositing buffers from texture nodes were not restoredBrecht Van Lommel
correct between localize/merge, bugfix for #21727 only did it one way.
2010-08-04Brush/Paint internal changesCampbell Barton
- remove brush array for each Paint struct, just use a single brush pointer. - removed rna function based template filtering. - filter brushes using a flag on the brush and the pointer poll function. - set the brushes using a new operator WM_OT_context_set_id(). TODO - remake startup.blend, currently brush groupings are lost. - rewrite WM_OT_context_set_id() to use rna introspection.
2010-08-04== Makefiles ==Stefan Gartner
* add support for LCMS (disabled by default, set WITH_LCMS to true to enable it) * fixed typo that prevented TIFF support to be properly enabled * enable ray optimization by default (scons and cmake already did this) * fixed building with libsndfile on darwin (disabled by default) * quicktime: use audaspace headers from $(NAN_AUDASPACE)/include instead of intern * gameengine: add -DWITH_FFMPEG to compiler flags when building with ffmpeg support
2010-08-04include cleanup, no functional changesCampbell Barton
- removed DNA_brush_types.h from DNA_scene_types.h (and some other similar cases) - removed DNA_wave_types.h (never used) - removed Main.wave
2010-08-04Fix unbalanced {}.Guillermo S. Romero
2010-08-04bugfix [#23173] Blender crashes on selecting display color corrected image ↵Campbell Barton
in image editor notes, - Use our own callback which doesnt exit() blender. - Hard coded 'MONOSCNR.ICM' is bad, should this be a user preference or stored per image? - imb->crect was being set to imb->rect in some cases, disable this because its possible 'rect' gets reallocated and crect becomes freed memory. - when crect cant be created draw pink checkers, so users dont get confused if color correction isnt working. (previously would draw the uncorrected image, if it didnt crash)
2010-08-03build options to disable image formats WITH_CINEON, WITH_HDR.Campbell Barton
- updated cmake, make & scons. - renamed CMake build options WITH_TIFF -> WITH_IMAGE_TIFF, same for DDS, OPENJPEG etc.
2010-08-03set origin was setting surfaces as 2D curves, added dupli-group support ↵Campbell Barton
using the dupli's offset value.
2010-08-02Audaspace:Joerg Mueller
* Added a stopCallback function that is called when the end of a sound is reached. * Fixed the scrubbing not working. * Minor SoundActuator cleanup.
2010-08-02SConsCampbell Barton
- remove scons option WITH_BF_FHS, its not needed anymore. - comment WITH_BF_DOCS, was using epydocs which we dont use now. - blenderlite target was broken, always using openmp. - building without python wasnt working. - fixed some warnings.
2010-08-02svn merge -r 30913:30953 ↵Joerg Mueller
https://svn.blender.org/svnroot/bf-blender/trunk/blender
2010-08-01Smoke:Daniel Genrich
- Bugfix for not cleared smoke sim when doing alt-a and waiting for 2 sim cycles to complete
2010-08-012.5: more G.main changes.Brecht Van Lommel
2010-08-012.5: code changes to reduce the usage of G.main and pass it alongBrecht Van Lommel
or get it from the context instead.
2010-08-01Smoke:Daniel Genrich
- Bugfix for display problems in shaded view: Reverting to wire display mode for domain.
2010-08-01bugfix'sCampbell Barton
[#23108] bpy.ops.object.origin_set(type='GEOMETRY_ORIGIN') dosen't work in console [#23115] Crash when moving armature origin - setting the armature in editmode would leave editdata in some cases. - transforming selected linked objects to account for the movement of the obdata was only done for meshes, now do for curves and text3d. - added utility functions for getting curve & mesh bounds. - text3d moving center wasn't working at all. - changed drawobject.c to use BLI_math funcs in more places. - remove some unused code from operator object.origin_set.
2010-08-01- font object x/yoffset was making text box's wrap text incorrectly.Campbell Barton
- draw text boxes with the offset applied. (abologies for making font.c even more confusing)
2010-07-31Audaspace:Joerg Mueller
* Fixed some compiler warnings * Implemented device looping * Note: Scrubbing in the sequencer is broken atm
2010-07-31- add back prefix for ID lists (LF) for linked and fake user for search fields.Campbell Barton
- remove debug print for left/right name flipping & commented test from the sequencer.