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-02Spell fix, reported by troy_s in IRC. Thomas Dinges
2010-09-02Fix "no newline at end of file" warnings in *nix.Ken Hughes
2010-09-02Audaspace: Removing an unneeded function.Joerg Mueller
2010-09-02Internal Code Renaming:Thomas Dinges
Donut > Torus
2010-09-01SVN maintenance.Guillermo S. Romero
2010-09-01Send NC_SCENE|ND_TOOLSETTINGS notifier when select mode was forced to edge ↵Sergey Sharybin
select in loop cut operator. Header buttons have "delayed" update without this notifier.
2010-09-01have rna function obj.as_pointer() return a memory address rather then a ↵Campbell Barton
PyCapsule object. this can be passed to ctypes.c_void_p(bpy.context.object.as_pointer())
2010-09-01Fix [#23612] OBJ import with imports double texturesNathan Letwory
Reported by Reiner Prokein A .obj file can have multiple mtllib statements with the same name. Ensure that only one occurance is saved, so we don't get multiple entries from same material. Also fix tabs -> spaces
2010-09-01bugfix [#23285] Exporters not available whel using special characters in ↵Campbell Barton
path name - ID properties now suopport non utf-8 strings for their values but not their keys. - moved utility functions into py_capi_utils.c from bpy_utils and bpy_rna. - import/export paths have to be printed with repr() or %r, so non utf-8 chars are escaped.
2010-09-01* add missing importsNathan Letwory
* fix indentation: tabs -> spaces
2010-09-01Quicky - allow dragging an image on a 3d view background Matt Ebb
to set it as the background image. Dragging on an object still sets it to face-mapped texture.
2010-09-01finished moving importers and exporters into python packages (as proposed on ↵Campbell Barton
the mailing list). - made operator dir's into python packages - lazy loading of module which do the actual import and export (faster blender load times) - general maintanance and small fixes. - bugfix for exporting x3d materials - leak fix for exporting 3ds
2010-09-01poll function for py api operator accessCampbell Barton
eg: if bpy.ops.object.mode_set.poll(): ...
2010-09-01Particle billboards weren't created properlyJanne Karhu
2010-09-01Fix for [#23596] Particle Harmonics cache problemJanne Karhu
* Non-dynamic particles weren't reset properly because they don't use pointcache
2010-09-01Added missing ID_NEW() in set_sca_new_poins_ob() as pointed out by Dalai.Benoit Bolsee
2010-09-01remove debug printsNathan Letwory
2010-09-01Python library copying hack.Nathan Letwory
When creating project files the multi-configuration generator is used. CMAKE_BUILD_TYPE is then not set, so always release libs were copied. For now copy both release and debug.
2010-09-01* Don't use /ZI when 64bit building on Windows. Use /Zi instead.Nathan Letwory
* Copy files to ${BLENDER_VERSION} instead of .blender/ * Don't try to copy iconv.dll when 64bit building on Windows - it is static for 64bit.
2010-09-01excuse the noise, adding type's in format package names.Campbell Barton
2010-09-01moving import/export scripts into packages (just moving scripts, need to add ↵Campbell Barton
__init__.py still, temp break import/exporters)
2010-09-01cleanup duplicate GPL haeders, blender made 2.4x __bpydoc__ into __doc__, ↵Campbell Barton
removed version info, (thats what svn logs are for). also moved create_derived_objects & free_derived_objects into io_utils, used by x3d and 3ds.
2010-09-01use mix-in classes for import export operators, these define the filepath ↵Campbell Barton
property and invoke function at the moment.
2010-09-01Adding intern/guardedalloc include dir for bad_level_call_stubs (stubs.c). ↵Mitchell Stokes
This update is for cmake and scons. This is needed since RNA_types.h now includes BLO_sys_types.h
2010-09-01Fix for "RNA_enum_get: ActionActuator.mode not found.". It was broken since ↵Dalai Felinto
recent rna renaming Found while looking at another bug, unfortunately it's unrelated :)
2010-08-31RNA Renaming Fixes for particle UI.Thomas Dinges
2010-08-31simple NULL check to fix a crash when running in background modeCampbell Barton
2010-08-31Fixes for RNA Renaming in Texture Properties (Volume Material)Thomas Dinges
2010-08-31patch [#23585] Fix for [#23553] in File Selector; Multiple Calls of SelectorCampbell Barton
from Alexander Kuznetsov (alexk) bugfix for [#23553] F2 on filebrowser = bug? from the tracker --- snip File Explorer redraws weirdly on second press of F2 if non-default view or file types were selected previously. This patch prohibits second call of file selector in the same window. The bug goes much deeper. If file selector is never closed properly (cancel or select), it never gets released. (at least the handler). If you press F2 or Ctrl-F3 ten times and than "Back to Previous" and repeat all of this several times Blender will freeze. Also after calling file selector at least two times, on cancellation Blender will return to full area independently to what state it was before. --- include small unrelated change to quiet unpack prints when fonts are not found.
2010-08-312.5 Fluid UI:Thomas Dinges
* Required memory is now shown on the Bake Operator, rather as an extra label.
2010-08-31rna support for passing dynamic sized arrays to rna functionsCampbell Barton
using this for object.vertex_groups.assign([index list ...], group, weight, mode)
2010-08-31Fix [#23592] WM draw method detection fails for Mesa's software rasterizer.Nathan Letwory
Reported and patched by Vinay Pawar. The drawing method will be set to Overlap on detection of Mesa software rasterizer.
2010-08-31== userprefs: addons ==Luca Bonavita
- From now on addons bl_addon_info['name'] doesn't need to specifcy also the category, it is put automatically in the addon box title In some script category and the category in the title were not matching, this had to be fixed manually. - The warning icon is at the right of the addon box title, so that it cant disalign the addon name anymore when we have a warning. - After discussing with Campbell, I've added the field bl_addon_info['api'] where we should specify the Blender API version number the addon is compatible with. This is certainly useful for clarity, and also I need it in place while preparing the downloadable addons. - Also, bl_addon_info['version'] is now assumed to be a tuple of integers as it is bl_addon_info['blender']. Any important text should be placed in the bl_addon_info['warning'] field, not in the script version anymore. I'm going to reflect this change in bf-extensions so that scripts won't suddenly break.
2010-08-31Updating stubs.c.Mitchell Stokes
* WM_keyconfig_add -> WM_keyconfig_new * WM_keyconfig_add_user -> WM_keyconfig_new_user
2010-08-30Fix spelling.Guillermo S. Romero
2010-08-30another function moved, should be last of the simple cases.Campbell Barton
km.item_from_id() --> km.items.from_id()
2010-08-30missed this one tooCampbell Barton
scene.add_keying_set() --> scene.keying_sets.new() also removed the use_ prefix since argument names, since this is mainly for properties.
2010-08-30- keymap import/export works again (broke with own api changes)Campbell Barton
- function renames, move WM functions into collections wm.add_keymap() --> wm.keymaps.new() note: new is used for named items in a collection, which return the result. - Action.get_frame_range() is now a readonly property 'frame_range', floats rather then ints.
2010-08-30raise an error when setting the values of read-only rna wrapped ↵Campbell Barton
Vector/Matrix/Euler/Quat
2010-08-30fix for resolving rna paths, RNA_path_resolve could return a property which ↵Campbell Barton
was the parent of the pointer (when it would normally be assumed to be the child). also change pythons struct_rna.path_resolve to return StructRNA's or Properties when the property isnt NULL.
2010-08-30bugfix [#23573] object rotates when IMAGE_SEARCH is offCampbell Barton
2010-08-30bugfix [#23586] Euler.rotate() method is brokenCampbell Barton
fix included in the report
2010-08-30various utf8 compatibility fixesCampbell Barton
- OBJ import/export now work with non utf8 paths. (all exporters and importers need changes like this) - strip non utf8 chars from new ID blocks (also applies to renaming) - set the file rename button to allow non-utf8 chars.
2010-08-30bugfix [#23197] Python can't handle German umlaut characters in stringsCampbell Barton
workaround for python bug with Py_CompileString(), reported http://bugs.python.org/msg115202
2010-08-30Patch [#23524] UI cleanup for commit 31587 by Filiciss Muhgue (filiciss).Thomas Dinges
Thanks!
2010-08-30stubs.c updatesMitchell Stokes
2010-08-30Bugfix #23551: FMODIFIERS: Steps "Use End Frame" doesn't enableJoshua Leung
One old property name was missed during the renaming madness, so the 'active' poll always failed there.
2010-08-30Bugfix #23575: Hook modifier don't update name of bone acting as the ↵Joshua Leung
controller when the name of that bone is changed
2010-08-30scons compiling fix: Joshua Leung
When "svnversion" can't be found (as is usual for anyone running TortoiseSVN), build_revision info will be "", which breaks compiling. Worked around this for now by using "<UNKNOWN>" as this
2010-08-30Committing patch [#23489] add method getEventStatus() to PythonKeyboard and ↵Mitchell Stokes
PythonMouse by Geoff Gollmer (gomer) This patch makes SCA_PythonKeyboard.events and SCA_PythonMouse.events return a dictionary of all inputs (including inactive) instead of a list of active inputs. Example usage: import bge if bge.logic.keyboard.events[bge.events.SPACEBAR] = bge.logic.KX_INPUT_JUST_ACTIVATED: print("Spacebar pressed!") A couple of changes to the patch: * Wrap python stuff in #ifndef DISABLE_PYTHON * Clear and decref m_event_dict in the destructors A couple of things not related to the patch: * Made member variables private * Removed a commented out (and no longer used) method (SCA_PythonMouse.show())