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-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-16jp2.c has a non-utf8 char which stopped python from reading it, removed ↵Campbell Barton
unused vars from CMP_chromaMatte.c
2010-08-16- remove unused includes IMB_*, BIF_* & MEM_*Campbell Barton
- remove MEM_guardedalloc.h from header files (include directly)
2010-08-16Fixed bug in normalition of YCbCr color space conversion (from 0..1 toRobert Holcomb
-1..1) to fix errors in keying. Simplified chroma key to not take despill into consideration (handled elsewhere). Simplified user interface for pieces not used.
2010-08-16Update MSVC project filesBenoit Bolsee
2010-08-15change for sorting rna cleaner (was broken), diff's on rna_properties.txt ↵Campbell Barton
will stop being so big now.
2010-08-15remove foreach_get/set for rna arrays, was crashing and are only valid for ↵Campbell Barton
collections.
2010-08-15use more BLI math functions.Campbell Barton
2010-08-15speedup and cleanup of OBJ exporterCampbell Barton
2010-08-15more rna naming editsCampbell Barton
2010-08-15[#23266] bpy.ops.poselib.browse_interactive - blend_factor argument does nothingCampbell Barton
commenting 'blend_factor' for now, its not used. COLOR and EULER internal pyrna subtypes were causing color type variables to try update euler rotation order.
2010-08-15Fix #23303: glsl color correction not working correct for image textures.Brecht Van Lommel
2010-08-15Fix #23307: accessing FluidParticles.settings causes crash.Brecht Van Lommel
2010-08-14[#22831] transform problem with hidden parent objectMartin Poirier
Partial fix. It now checks if selected parents are modifiable (due to the look up for base, this could get slow, but no other good way to do it).
2010-08-14netrender fixes:Martin Poirier
slave use output log option correctly use os.path.join more consistently (reported by Dalai Felinto) unify frame range (was 4 digits on master, 6 elsewhere, now 6 everywhere). Fix occasional broken pipe between master and slave (didn't affect result, just polluted log).
2010-08-14- PyLineSpit() - used to print the filename and line number for internal ↵Campbell Barton
errors now works when executing class functions in a module. - replaced PySys_GetObject("modules") with PyImport_GetModuleDict() - use defaults for keymap import/export rather then setting the same value every time from the UI scripts.
2010-08-14fix for error in world buttons when the world was NoneCampbell Barton
2010-08-14fix for referencing freed memory when freeing an rna property.Campbell Barton
2010-08-14Apply patch #23295 - Fix for SCons building on FreeBSDNathan Letwory
Patch submitted by Jashank Jeremy. This adds support for freebsd7, freebsd8 and freebsd9. Thanks!
2010-08-13bugfix [#21807] Import Key Configuration problemsCampbell Barton
2010-08-13Fix #23297: python error caused empty brush panel in the image editor.Brecht Van Lommel
2010-08-13bugfix [#22037] OBJ exporter produce wrong UVCampbell Barton
2010-08-13bugfix [#22845] Python operators dont free report listCampbell Barton
2010-08-13added include for offsetof(), also use <string.h>, not "string.h"Campbell Barton
2010-08-13[#22884] slow import wavefont/.obj fileCampbell Barton
- dont run mesh update functions on zero user meshes (a bit of a cheap trick but works well), made in last commit by mistake. - dont do a scenegraph update on linking an object, run scene.update() after linking objects. - remove split material option since we have enough slots.
2010-08-13- remove WM_operatortype_exists since its almost the same as ↵Campbell Barton
WM_operatortype_find - hopefully fix reported problem with MSVC.
2010-08-132.5: rendering thread-safety experiment, when setting G.rt to 101, it willBrecht Van Lommel
render from a Main database created from the undo buffer. That means extra memory usage and processing needed, but gives no interference with other data. Still won't work entirely since there are a few things that don't get flushed always (editmode, sculpt, ..) and some places that use globals.
2010-08-132.5: more removal of G.main.Brecht Van Lommel
2010-08-13Py API Docs:Joerg Mueller
* Moving the alternative parser * Checking for classmethods and staticmethods of builtin modules
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-13Fix #23244: image save function did not release lock on renderBrecht Van Lommel
result, causing freeze later.
2010-08-13exporters now set the filepath in the invoke() method rather then the menu ↵Campbell Barton
drawing function.
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-13bugfix [#22974] OBJ import arrives without textureCampbell Barton
2010-08-13Fix for [#23286] Text Editor: Cursor not changing shape when insert key is ↵Dalai Felinto
pressed. Patch by Justin Dailey (dail)
2010-08-122.5 User Interface / UI ScriptsThomas Dinges
* Fixed some panel ordering after recent register changes. * Placed "Custom Props" to the bottom again, where possible This fixes [#23171] Material context is messed up.
2010-08-12Fix #23219: smooth view rotating in top view could generate NaN-values,Brecht Van Lommel
causing 3d view drawing to break.
2010-08-12Fix #23098: crash in baking, it did a call to BLI_end_threads too much,Brecht Van Lommel
causing problems with thread safe malloc after baking once.
2010-08-12Fix #22777: duplifaces don't take deforming modifiers into accountBrecht Van Lommel
while in edit mode.
2010-08-12bugfix: deleting NLA tracks with a keyframed text3d obdata would free the ↵Campbell Barton
curve, missing type checks.
2010-08-12Fix #23269: inconsistent naming of recalculate roll in menus compared toBrecht Van Lommel
operator popup menu.
2010-08-12text editor bugfix, selecting & moving the cursor on lines >256 chars long ↵Campbell Barton
(was reallocing too little memory).
2010-08-12Fix #23188: libpng error: Image width or height is zero in IHDR.Brecht Van Lommel
The file thumbnail generator would write 0x0 size png's to the .thumbnails/fail folder. However libpng throws an error when doing this. Instead we now write 1x1 png's, which nautilus seems to be doing as well. The content shouldn't matter anyway since we won't use it.
2010-08-12text editor, only draw line highlight when its in the view.Campbell Barton
2010-08-12Fix #23238: crash rendering multiple scenes from compositor.Brecht Van Lommel
2010-08-12bugfix [#23227] .obj import with UV produces broken UV map in 2.53.0 (r30593)Campbell Barton
eekadoodle face order fix was only being checked for quads, not tri's.
2010-08-12Fix #23258: paint cursor not working in sculpt/paint modes.Brecht Van Lommel
2010-08-12Fix #23281: crash with multiresolution and uv project.Brecht Van Lommel