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
2008-04-17Patch from GSR that a) fixes a whole bunch of GPL/BL licenseChris Want
blocks that were previously missed; and b) greatly increase my ohloh stats!
2008-04-15Ipo View Option - Loc View Area - stops using each ipo's view area when ↵Campbell Barton
changing ipo's.
2008-04-13* Made Armature auto name L/R, Top/Bot, Fr/Bk remove existing, known extensions.Campbell Barton
* Added fromDupli MTex setting to python api * Shift+RMB was setting the active face in the UV view. * Armature scripts menu was broken
2008-04-10Fix for render scemode in the python api, forgot to commit this fileBrecht Van Lommel
when i changed it from a short to an int.
2008-04-09Made aspx/y into floats so we can render precise regions (for apricot ↵Campbell Barton
terrain baking)
2008-04-09API Doc for new Object attributes trackAxis and upAxis.Stephen Swaney
contributed by Cedric Paille. Thanks! Fix broken indentation in Constraint doc.
2008-04-07Doh! Typo - replace [Y] with [Z].Stephen Swaney
2008-04-07added an optional arg for object.getBoundBox(worldspace) - so you can get ↵Campbell Barton
localspace boundboxes, this is useful when getting a dipli's boundbox where the objects worldspace matrix has no useful meaning.
2008-04-07annoyance with python api, Blender.Library.Datablocks should always return ↵Campbell Barton
an empty list, rather then None when there is no datablocks.
2008-04-07fix for [#6342] Collada 1.4 import (of perhaps corrupt collada files) leads ↵Campbell Barton
to a complete crash of Blender 2.43 under Windows XP NMesh wasnt checking 16max material limit, also made collada import work with the user scripts dir.
2008-04-06Python API - read access to Track and Up axis attributes for Object.Stephen Swaney
Part of Patch 8557. Contributed by Cedric Paille. Thanks! Still waiting for API doc for new attributes. Finger is poised over Revert button...
2008-04-05fix compiler warning: comparison between signed and unsignedStephen Swaney
2008-04-05PyAPI - setting a buttons string value crashed. suspect this is a 64bit ↵Campbell Barton
problem since replacing the string length of int, with Py_ssize_t or long prevented the crash. worked around the problem by removing the PyString_AsStringAndSize command. wizard_curve2tree - removing id properties didnt work. exit button used a callback it didnt need to.
2008-04-01Fix for bug #8629: python object.boundingBox was not in worldspaceBrecht Van Lommel
anymore for meshes due to a bugfix. The python code assumed ob->bb was in worldspace while it isn't, also meant metaball bounding boxes were wrong.
2008-03-31TimeLine PyType was not getting initialized, causing auto-completion in the ↵Campbell Barton
interactive console to crash.
2008-03-30== bugfix ==Andrea Weikert
fix for [#6950] Blender crashes when .blog file top line is 160 characters or more - made sure BLI_convertstringcode doesn't return more than 240 chars - went through all callers and fixed places where string passed to BLI_convertstringcode was too short - TODO: look into increasing sample->name and sound->name too, I prevented crashes, but filename might get shortened.
2008-03-29own typo in py apiCampbell Barton
2008-03-29some fixes for python baking functionCampbell Barton
needed to add a small value to the baking distance for it to include faces of that distance (maybe should make this happen from the user interface too)
2008-03-27made editmode only force smooth shading when vcols are present (as joe ↵Campbell Barton
suggested) pythons api's image.unpack() was broken
2008-03-26Python APIKen Hughes
---------- Bugfix #8615: NMesh.update() did not check if faces had less than 3 vertices, so would create bogus faces. Also discovered in the process that documentation and error message for Mesh.assignVertsToGroup() was wrong.
2008-03-25fix for [bf-blender-Bug Tracker][8739] image selector never exits.Campbell Barton
This fix was made to the file selector weren't applied to the image selector. Made file and image selector use same python api function.
2008-03-22Removing some compiler warnings. Joshua Leung
(Note to who-ever made all the changes referring to r.scemode: r.scemode is an int, not a short!)
2008-03-20Python APIKen Hughes
---------- Bugfix #6543: Blender.Library.Load() could segfault if called more than once with a library of different endian type. In the process discovered an invalid memory reference in other another function calling library_append(). Thanks to Brecht for the pointers on tracking this old bug down.
2008-03-19saveRenderedImage dosnt work in backgrond mode, so added a warning in the ↵Campbell Barton
docs and an exception if called.
2008-03-19added a warning in python api abot ipo curves. minor change to curve.c Campbell Barton
2008-03-18patch from Paul Rotering (pryon)Campbell Barton
[#7124] knot vector access for SurfNurb
2008-03-17Running scripts with Blender.Run() would crash when reloading.Campbell Barton
2008-03-17- [#8589] Scripts which use file selector not working correctlyCampbell Barton
Fix for another bug I introduced with persistent python windows. also removed unused var.
2008-03-17missing headerCampbell Barton
2008-03-16== PyNodes ==Willian Padovani Germano
Ongoing updates to the Blender.Node Python API: - Changed Blender.Node.node to Blender.Node.Scripted to be more specific and conform to bpython API. - Added a Blender.Node.Socket type to be used to define node sockets in a PyNode script. Also, socket type is inferred from the value(s) passed in, instead of also being defined by the script author. - Added attr access to input and output sockets in the __call__ method. Ex: an input socket called 'color' can be accessed as self.input.color now. These changes break existing pynode scripts, which shouldn't be a problem yet, of course, since we're still finishing this feature for 2.46. The wiki page and sample .blends have already been updated: http://wiki.blender.org/index.php/BlenderDev/PyNodes http://wiki.blender.org/index.php/BlenderDev/PyNodes/API
2008-03-16[8559] Python script that uses FIleSelector and has an error in it segfaults ↵Campbell Barton
Blender Want completely fixed, check if the script was removed before running the callback.
2008-03-16Constraints PyAPI:Joshua Leung
Added support for Limit Distance constraint
2008-03-16Constraints Py-Api:Joshua Leung
Fixed up Py-API access to PyConstraints. Also updated docs to reflect these changes.
2008-03-15fix for [#8559] Python script that uses FIleSelector and has an error in it ↵Campbell Barton
segfaults Blender
2008-03-15forgot to free memory for python api mesh.getTangents()Campbell Barton
2008-03-14added mesh.getTangents() to the python apiCampbell Barton
2008-03-12Moved recent addition of get/setPixelF to get/setPixelHDR and kept ↵Campbell Barton
get/setPixelF limited to 0.0-1.0 range, to prevent existing scripts breaking.
2008-03-12Added python access to TEXFACE_ALPHACampbell Barton
2008-03-11Bugfixes:Joshua Leung
* Menus could no longer have their items accessed by number (i.e. W-5 didn't run merge tool in EditMode when accessed by keyboard). This was caused by my commit for BUTM (there was some extra code there that isn't really needed, but was causing havok). * NumPad can now be used for the above feature too now * Typo in error message in Constraints PyAPI
2008-03-11fix for cam.setScale(), cam.setClipStart(), cam.setClipEnd() andCampbell Barton
cam.setDrawSize(), they would raise errors when setting ints. but used not to. better tooltips for Uv Stretch
2008-03-10Applied [#7076] Updated Python Image API to use float buffers in ↵Campbell Barton
getPixelF/setPixelF and added an image.updateDisplay() function to update imbuf->rect from imbuf->rect_float also corrected some docstrings and epydocs
2008-03-09fix for uninitialized variables in uv stretch drawing,Campbell Barton
[#8428] 'Editmesh_active' theme colour not accessible via Python bugfix problem where saving a theme would raise and error when ~/.blender didnt exist. bugfix for file selector staying open (introduced with own undo resistant scripts)
2008-03-08Bugfix #8478: Constraints PyApi for setting targetspace non-functionalJoshua Leung
Finishing off some unfinished business (from the multi-target constraints work), it is now possible to get/set target-space for constraints where this is relevant. For this to be possible, target-space setting(s) are now always presented as a list of ints, with each int representing the target-space setting for the relevant target. Constraints C-API note: get_targets function now needs to return the number of targets the constraint can have
2008-03-07snap menu order change, as suggested by Theeth, fix for own error with ↵Campbell Barton
Window.TestBreak()
2008-03-07PyAPI - Window.TestBreak() - True if the user pressed escape.Campbell Barton
2008-03-07Python APIKen Hughes
---------- Bugfix #8472: texture.image setter did not accept None to remove an image, or set the image type once an image was assigned.
2008-03-07Made python scripts save and load in the blend file so you can have the same ↵Campbell Barton
scripts running when you open a blend file. Also scripts will re-run on undo rather then closing. This is done by saving and loading the name of the script or textblock of the 'Script' datablock, connected to the ScriptSpace. This way when there is a name but the script dosnt run. Blender runs the script or text block if available.
2008-03-04PyAPI: create scene sequence data if its not there when getting scene.sequenceCampbell Barton
2008-03-03* Bugfix #8426: certain hooks options segfaulted Joshua Leung
This was caused by my previous commit for add_hook. * Also, removed a compiler warning in the Python code
2008-03-02Py API - rename UndoPush to SaveUndoStateCampbell Barton