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-09-22bugfix [#23945] obj export problemsCampbell Barton
2010-09-22bugfix [#23935] Exporting to Unity3d .fbx Blender 2.5Campbell Barton
2010-09-21minor UI change so blender built without fluids wont give a python errorCampbell Barton
2010-09-20fix for error and other minor changes found while looking into bug [#23813].Campbell Barton
2010-09-19map old/new rna & ui backCampbell Barton
2010-09-19remove redundant []'s for list comprehension's, py2.4+ supports this.Campbell Barton
2010-09-18Fix #23879: added undo/redo to object/paint/sculpt/pose menus as well,Brecht Van Lommel
and made some small modifications to object menu to make it a bit shorter, still much too long though, but at least not worse now.
2010-09-18Fix #23850: hide cloth cache step from the UI because it can only be set to 1Brecht Van Lommel
anyway, which is confusing.
2010-09-18use is rather then == when comparing against None.Campbell Barton
2010-09-18UI fix: psys.hair_dynamics -> psys.use_hair_dynamicsDalai Felinto
2010-09-17New optional operator function, check(), it takes the same arguments as ↵Campbell Barton
execute(). This runs after changing a property and allows correcting incompatible options. Returning True will redraw the UI. Currently this is used for setting the write extension when saving files, so changing the image format also corrects the extension. The same is accessible from python where its used when saving SVG/EPS/PNG files. This fixes: [#23828] obj export problems, [#23760] Exporting OBJ and filetype ending also fixed document submission operator. Now the filename in the file selector is the one used for writing this means we remove the "Save Over" popup which could be overlooked too easily. Instead display the filename field with red tint, and a note in the tooltip.
2010-09-17Fix #23839: missing V shortcut for rip tool, now the rip & move operatorBrecht Van Lommel
is in the menu instead of rip which is not as useful by itself. Location of the problem pointed out by Sergej Reich, thanks!
2010-09-17Tiny addition to boids functionality: pitch valueJanne Karhu
* Controls maximum rotation around side vector (as opposed to banking, which controls rotation around forward vector)
2010-09-16Fix #23865: F8 reload scripts doesn't work with an addon enabled,Brecht Van Lommel
broken with bugfix for #23001.
2010-09-16Fix #22603: Crash on launching external editor in texture paint [r29461] ↵Sergey Sharybin
[WinXP 32bit] Crash was caused by missed offscreen OpenGL buffer. Added checking around this stuff. Also fixed crash of simple "Image from view operator". Note: This commit fixes only crashing, you'll be still unable to use this tools.
2010-09-16bugfix [#23831] Removing an IK Constraint in pose mode still draws bone with ↵Campbell Barton
IK highlight + moved bone envalope scale into transform menu, pose menu is getting huge.
2010-09-15bugfix [#23802] addons panel emptyCampbell Barton
was using locale.getpreferredencoding() to read the file which depends on the system setup, better use 'UTF-8' always.
2010-09-15bugfix [#23833] Console Errors (Keymaps)Campbell Barton
dont allow non-existing preset paths to be passed to the preset menu.
2010-09-15filling is used for 3D curves but not for filling, sigh.Campbell Barton
2010-09-15in response to [#23812] bevel object, but no caps.Campbell Barton
tweak the UI so fill options are only available with 2D curves and greyed out when bevel object is used.
2010-09-15bvh import was broken for non euler-native rotationsCampbell Barton
2010-09-14keyconfig updates/changesCampbell Barton
- use preset subclass with funcs for updating the keyconfig - keyconfig filenames are used for the UI names as with presets (so separation anymore) - keyconfig's are stored in the preset dir (scripts/cfg dir removed) - only the active keyconfig script is loaded - some bugfixes for saving keymaps - user interactions no longer saves keyconfigs too, I think this needs to be re-worked. developer note... multiple keyconfigs at once are not really needed now that they are stored & accessed directly in python. for now I left it alone but we could consider to remove this capability in the future.
2010-09-14button to remove presets.Campbell Barton
note: this is an option to the add preset operator which is a bit odd but easiest since these classes have all the info needed for removal as well.
2010-09-14revert 31916, while having the image name and the material name mixed, this ↵Campbell Barton
is intentional else texface export breaks. ideally this would only happen in cases where there are more then 1 image so we could avoid ugly names in common cases. svn merge -r31916:31915 release/scripts/op/io_scene_obj/export_obj.py
2010-09-14Fix [#23761] OBJ exported materialname wrongNathan Letwory
Reported by Reiner Prokein. Just use the material name instead of concatenating with any image names to it.
2010-09-14Fix one more case of z_transparencyNathan Letwory
2010-09-14Apply patch [#23782] Fix typo in netrender UINathan Letwory
Submitted by Imran Syed (freakabcd)
2010-09-13fix for sphinx doc generationCampbell Barton
2010-09-13avoid re-creating and assigning addon UI properties for every redrawCampbell Barton
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-13bugfix [#23778] obj importing forgets to enable transparent into materialCampbell Barton
2010-09-13Animation Editors: Added menu entry for deleting selected channels, as ↵Joshua Leung
requested by animator working with Matt
2010-09-13Fix import of material with z transp enabled.Nathan Letwory
Reported by Heikki Lehikoinen in #blender.fi
2010-09-12bugfix for [#23737] reported by Mariusz MaximusMartin Poirier
netrender client's functions to get slaves and jobs info didn't work anymore (was reading response content twice). At the same time, I switched to json for the dump and load, instead of using eval and repr (for obvious security reasons). I should have done this much earlier.
2010-09-12Fix [#23770] io_anim_bvh reloads the wrong moduleNathan Letwory
Spotted and fixed provided by Tim Baker
2010-09-11Removed a "properties" too much. :/Thomas Dinges
2010-09-11pyrna: replace method for operators forwarding getattr/setattr access from ↵Campbell Barton
self.* to self.properties.*
2010-09-11- added PNG image export option to UV layout (was only SVG and EPS which was ↵Campbell Barton
annotying for some users) - support for non utf8 paths when exporting UV layout.
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-11Patch [#23759] more replace self.properties.foo --> self.foo for ↵Thomas Dinges
bf-extensions/trunk/py/scripts by Filiciss Muhgue (filiciss). Thanks a lot! Part 1: Trunk, second part of patch will be committed to Extensions.
2010-09-10Part 3 of 2.54 commits (1 more!)Ton Roosendaal
2010-09-10fix for error updating rigify UI classesCampbell Barton
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-10remove redundant buffer character positioning code & remove attr keyword ↵Campbell Barton
argument from property definitions.
2010-09-10Fix bug caused by someone else's error.Martin Poirier
2010-09-09replace self.properties.foo --> self.fooCampbell Barton
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-09fix for addons UI with recent rna changes,Campbell Barton
also moved temp properties from the scene into the window manager since they are not saved there.
2010-09-09remove class methods for defining propertiesCampbell Barton
eg: bpy.types.Scene.BoolProperty()