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-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-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 referencing freed memory when freeing an rna property.Campbell Barton
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-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-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-13Fix for [#23286] Text Editor: Cursor not changing shape when insert key is ↵Dalai Felinto
pressed. Patch by Justin Dailey (dail)
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-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-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
2010-08-12Fix #23235: crash with editmesh instances & drawing, only the objectBrecht Van Lommel
in object mode should make the editmesh derivedmesh.
2010-08-12Small UI Tweak: Added NumPad-0 as additional hotkey for Reset to Default ↵Joshua Leung
Values. Previously, only ZeroKey (i.e. 0 on top row) was used, which was not very convenient to hit)
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-12bugfix [#23263] Changing view crashes blenderCampbell Barton
2010-08-12bugfix [#23270] Long directory name segmentation fault in File browerCampbell Barton
file->relname was being edited when its length allocated at the size of the original name, realloc'ing failed because the old string was still used by a button.
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-12Logic UI: name mismatch on motion blur property (report and patch by Jacob F.)Dalai Felinto
I forgot to update the UI code (or to commit) when I changed the rna name to match docs. (0 to 1 values should be called factor)
2010-08-11add support for documenting class methodsCampbell Barton
2010-08-11mathutils module methods only contained matrix constructors, move these to ↵Campbell Barton
matrix class methods since this is acceptable in python. eg: dict.fromkeys() and groups them more logically. mathutils.RotationMatrix -> mathutils.Matrix.Rotation mathutils.ScaleMatrix -> mathutils.Matrix.Scale mathutils.ShearMatrix -> mathutils.Matrix.Shear mathutils.TranslationMatrix -> mathutils.Matrix.Translation mathutils.OrthoProjectionMatrix -> mathutils.Matrix.OrthoProjection
2010-08-11python declarative UICampbell Barton
- remove XML testing feature - add 2 modules: bpyml - generic, bpyml_ui - blender spesific. nothing uses these now. ==bpyml_ui module== defines BPyML_BaseUI and its draw() function which uses the bpyml member of the class instance self.draw_data & self.draw_header_data. This way declarative ui is opt-in and easy to use by using BPyML_BaseUI as a mix-in class. ==bpyml module== This module translates a python like XML representation into XML or simple python blender/ui function calls. sometag(arg=10) [ another(), another(key="value") ] # converts into ... <sometag arg="10"> <another/> <another key="value" /> </sometag>
2010-08-11Blender Py API: GameLogic -> bge.logicJoerg Mueller
2010-08-11small edits to text editor from writing a python editor extension.Campbell Barton
- rename TextLine.line -> body, ConsoleLine.line -> body - minor speedups when setting the body text, also re-allocate console lines if they are < half the length. - added option to highlight current line in the text editor.
2010-08-11bugfix [#23247] Load Image in Textures does not use a usefull pathCampbell Barton
2010-08-11Fix silly bug with color ramp ui where there was an extra pixel Matt Ebb
of background on the right side
2010-08-11correction for mis-named DupliObject.object_matrix -> matrix_originalCampbell Barton
2010-08-11Update address in license block.Guillermo S. Romero
2010-08-11SVN maintenance.Guillermo S. Romero
2010-08-10repr() functions for the python api, this means it can print ↵Campbell Barton
'bpy.data.objects[foo].modifiers' from the objects modifiers, uses the same function thats used to make the animation path.
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-10Smoke:Daniel Genrich
- Fixing UI glitch so that range and UI range now matches - Increased max to 400 secs (at 25 FPS) to allow more artistic freedom