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
2010-09-14fix for own bug for font buffer drawing (only effected the bottom line of ↵Campbell Barton
the stamp)
2010-09-14Fix for [#23794] Particle System + FS Motion Blur corrupts some frames and ↵Janne Karhu
possibly cache
2010-09-14Particle edit brush strengths were loaded wrong for old files.Janne Karhu
2010-09-14blenderplayer fix for "offset" problem when in fullscreen mode (worked ↵Dalai Felinto
together with Nathan Letwory - jesterKing) The FullScreen state was never set. Therefore the window boundary was returning the wrong dimensions (it was assuming that it was not fullscreen). * Note: blender.exe -W has a similar problem. We are working on that ... Tested in Windows only. If someone can test in Linux and OSX please let me know if it's good there as well. To test it: ./blenderplayer -f myfile.blend
2010-09-14Fix for a particles memory leak:Janne Karhu
* Hair wasn't freed properly when changing particles from hair to normal particles.
2010-09-14Fix for [#20350] particles are offset from emittor in dupli-objectsJanne Karhu
2010-09-14"flip -> pen_flip" missing rename on particle edit modeDalai Felinto
(it was raising the error RNA_boolean_set OperatorStrokeElement.flip not found ) [Thanks Mike for spotting that :p]
2010-09-13Fix [#22612] FFMPEG writes incorrect Xvid FourCC codeNathan Letwory
Reported by Karl Nyman When XVID is chosen for FFMPEG make sure that XVID is written for FourCC code.
2010-09-13Fix for [#23729] Smoke / Edit Mode bugJanne Karhu
2010-09-13blenderplayer parsing code (better) fixDalai Felinto
After last commit I realized that we have a different behavior when running blenderplayer or a runtime. Reason being is that when running blenderplayer the filename is mandatory. While in runtime mode it has no use for it (it can still be passed, but it makes no difference). I also updated the -h (help) message to be multiplataform and to pass the filename argument only when in blenderplayer mode. If someone wants to have fun it would be nice to port the blender new parsing code to the gameplayer. * note: how come "noaudio" is used in the examples but it's not in the options list? *ouch* I'm leaving as it's in case noaudio get implemented ...
2010-09-13patch [#23221] Merge bone : Within chains : infinite loopCampbell Barton
from Yvon Tanguy (vono)
2010-09-13bugfix [#23528] ED_pose_channel_in_IK_chain() doesn't take length of IK ↵Campbell Barton
chain into account
2010-09-13bugfix [#23068] Image editor: Update Automatically not updating the compositor.Campbell Barton
[#23637] Replacing an image used in the compositor crashes [#23343] changes in images doesn't update compositor image nodes
2010-09-13bugfix [#23001] Addons do not unregister properly in Blender 2.5.3Campbell Barton
Now reloading the user defaults also unloads/loads addons, resetting the state to the one set in the user preferences. moved addon functions into bpy.utils - bpy.utils.addon_enable(name, default_set=True) - bpy.utils.addon_disable(name, default_set=True) - bpy.utils.addon_reset_all(name, default_set=True) the user preference operators now just wrap these.
2010-09-13blenderplayer commandline argument fixes (for -f and -w)Dalai Felinto
argc always include the filename, therefore all the optional parameters should check for < argc instead of <=argc. E.g. That was causing "blenderplayer -f 800 600 myfile.blend" to play in a wrong Bpp (since it was trying to parse the filename to fullScreenBpp). Bug introduced on rev. 16448 (in 2.49) and merged to 2.5 in rev. 19323
2010-09-13Bugfix: Timeline did not refresh when changing selecting a boneJoshua Leung
This happened/was most noticeable when clicking on a bone of an armature in posemode but not active (i.e. some object other than the armature is active when trying to select the bone).
2010-09-13Partial fix of bug #23543 in COLLADA exporter:Arystanbek Dyussenov
* multiply the diffuse and specular colors by their respective intensities * only output <transparency> if MA_TRANSP flag is on * only output <reflective> and <reflectivity> if MA_RAYMIRROR flag is on
2010-09-12silance compiler warning.Campbell Barton
2010-09-12option to disable ITASC IK solver, (will be enabled by default ofcourse)Campbell Barton
- option only available to cmake, scons and make have this enabled always. - without this clang/llvm can compile blender - this was the second biggest internal lib, 192mb -> 172mb for all blenders libs (with debug flags), so gives some speedup to linking.
2010-09-12building without python was brokenCampbell Barton
2010-09-11BGE module reshuffling - VideoTexture -> bge.textureDalai Felinto
this was the one module left to be renamed. We didn't get to any conclusion in the mailing list, but Campbell suggested texture and I think its a good name. We can change any time before next Beta, but for now I think it's handy to have something. The original proposal is from May: http://lists.blender.org/pipermail/bf-committers/2010-May/027587.html
2010-09-11pyrna: replace method for operators forwarding getattr/setattr access from ↵Campbell Barton
self.* to self.properties.*
2010-09-11new materials and cameras had incorrect usercounts when added from pythonCampbell Barton
2010-09-11incorrect docstringCampbell Barton
2010-09-11- camera max zoom limit was inconsistentCampbell Barton
- camera pan now follows the mouse
2010-09-11- py api splash URL was old, use blender version (menu was ok in the menu)Campbell Barton
- netrender reloading fix
2010-09-11Fixed the splash screen: previous had incorrect colour, typography, no ↵Matt Ebb
transparent header.
2010-09-11Fix for own stupid bug the other day, messed up the gradients in ↵Matt Ebb
selected/deselected UI elements. Didn't know beta was going to be today, really hope this makes it in!
2010-09-10Part 1 of 2.54 beta build commitTon Roosendaal
2010-09-10Bug #23715: patch by Jan Diederich to avoid having duplicate IDs after they ↵Arystanbek Dyussenov
are translated. For example, object ID names "1a", "2a", "3a", will be exported as "_a", "_a2", "_a3". Thanks Jan!
2010-09-10rewrote python IDProperty metaclass in C, this was a quick hack to get it ↵Campbell Barton
working. The reason this didnt work is all sibclasses of pythons type() or PyType_Type in C, have to have their size set to sizeof(PyHeapTypeObject) rather then sizeof(PyTypeObject) as you might expect. This is strange since its not a heap-class (defined in pythons runtime), but a static C type, so Im not sure about this, and cant find any documentation but it seems to work ok.
2010-09-10Fix for [#23090] Blender 2.5 : move object to new layer crashes BlenderJanne Karhu
2010-09-10Fix #23742: a NURBS surface created with two joined curves crashes Blender ↵Sergey Sharybin
on rendering Nurb's material number used to be clamped to [0;-1] for case object hasn't got materials. Forced to keep material number on zero if object hasn't got any materials.
2010-09-10remove redundant buffer character positioning code & remove attr keyword ↵Campbell Barton
argument from property definitions.
2010-09-10bugfix [#23607] Render Stamp, incorrect apostrophe Y position.Campbell Barton
2010-09-10patch [#23749] IntVectorProperty missing step [patch]Campbell Barton
from Dan Eicher (dna), also edited some comments.
2010-09-09- bugfix, operators were getting their properties registered twice.Campbell Barton
- operator properties are now converted into python property() class members which bypass the operator 'properties' member. self.properties.mysetting ... can now be written as ... self.mysetting - fix for error reloading rigify
2010-09-09definition/syntax edits for operators and rna (no functional changes)Campbell Barton
2010-09-09fix crash for calling setattr with a non-string attribute and warning.Campbell Barton
2010-09-09Partial fix for [#21948] Full sample motion blur with cloth - cloth and ↵Janne Karhu
collision object render issue. * Now cloth reads cache using subframes when rendering. * Cloth cache also was reset every time on the start frame which kind of defeats the point of the caching.
2010-09-09Bug #23715 in COLLADA exporter: prepend an '_' to the ID if it starts with ↵Arystanbek Dyussenov
an illegal character. Pointed out by Tom Haines. Thanks!
2010-09-09Patch by Jan Diederich, fixes bug #23715 in the COLLADA exporter.Arystanbek Dyussenov
Allow IDs to start only with an alphabetic character replacing digits with an '_'.
2010-09-09Fix for [#23734] Force Fields Min/Max don't workJanne Karhu
*Special case for planar vortex field
2010-09-09remove class methods for defining propertiesCampbell Barton
eg: bpy.types.Scene.BoolProperty()
2010-09-09- fix for using ['prop'] in RNA apiCampbell Barton
- fix for testing without USE_PY_METACLASS defined.
2010-09-09support for defining rna class properties as class attributesCampbell Barton
eg: bpy.types.Scene.myprop = BoolProperty() note, this uses an ugly python metaclass, this should be replaced with a C implimentation which is included but commented out, causing crashes in pythons GC which gives no hint as to where the bug comes from.
2010-09-09== Multires ==Nicholas Bishop
Fixed bug #23657, "Modifiers dosen't work when you select diffrent mesh for object" Multires modifier now adds empty mdisps if they're missing, rather than displaying a warning Switching an object's mesh will now check for a multires modifier; if found the modifier's total number of levels are reset to match the mesh's mdisps Switching the mesh also forces a multires update so that sculpted changes aren't lost
2010-09-09bugfix [#23725] bpy.context.window_manager.Campbell Barton
2010-09-08Partial fix for [#23714] Linked instance group with particles doesn't render ↵Janne Karhu
properly * Only partial because rendering of dupliobjects / groups with particles isn't yet fully implemented
2010-09-08py/rna internalsCampbell Barton
- rna internal deferred properties now store the functions as PyObjects rather then C function pointers - Property functions now allow the first non keyword argument to be a class.