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
2011-03-15workaround for problem compiling with glu 1.5.8 on windowsCampbell Barton
2011-03-15upgrade glew 1.5.1 --> 1.5.8, from the release logs changes are mainly for ↵Campbell Barton
maintenance & supporting new opengl functions, this also fixes FreeBSD compile error.
2011-03-15fix [#26503] Copy Mirrored UV coords exceptionCampbell Barton
2011-03-15pep8 edits and remove commented code from last commit.Campbell Barton
2011-03-15fix/disallow [#26502] segmentationfault on pressing button to browse ↵Campbell Barton
existing images for UV window creating RNA within draw functions can free existing RNA, crashing blender when this is already used in the UI. disallowing this so it raises a python exception. This was being used to dynamically generate addon categories so for now they are hard coded and we need proper enum-functions for python to do this.
2011-03-15quiet warning for GCCCampbell Barton
2011-03-15fix [#26478] New image extension is appended to the old one instead of ↵Andrea Weikert
replacing it Note: Extension is replaced with the new extension if it's a known image extension. Brings back old behaviour, a little bit refined.
2011-03-14== filebrowser ==Andrea Weikert
Cleanup of selection code. Also fixed bug where selection outside the tiles was clamped and file in last column was selected.
2011-03-14Fix for [#20171] Properties of Hair are not animateableJanne Karhu
* Don't know when this got broken again, but now the "regrow hair" option works like it's supposed to again.
2011-03-14GNUmakefile: do number of cores detection same as BSD, system_profiler ↵Brecht Van Lommel
apparently changed between versions.
2011-03-14Build systemKen Hughes
------------ Allow BF_PYTHON_ABI_FLAGS to be specified on the command line for scons.
2011-03-14Fixes for GNUmakefile on Mac:Brecht Van Lommel
* Don't use "make install", doesn't work yet. * Use total number of cores rather than number of processors. * Quicker number of cores query, by not asking for all system info.
2011-03-14Bugfix #26498Ton Roosendaal
CTRL+L "Make Links" operators were not using a correct poll(), causing crash on using it without active object.
2011-03-14Bugfixes:Joshua Leung
- Sync Markers option works for local markers (or any other list of markers in future) too now. - Apply Pose to Restpose operator now displays a warning if an action was found (warning about the action now being invalid)
2011-03-14bpy.types.libraries.load sphinx doc & examples (doc system needed some updates).Campbell Barton
http://www.blender.org/documentation/blender_python_api_2_56_3/bpy.types.BlendDataLibraries.html#bpy.types.BlendDataLibraries.load
2011-03-14Measure of precaution: clear the list of temporary links in the node space ↵Lukas Toenne
after loading, in case the file was saved during active modal linking operators.
2011-03-14auto-complete was moving the selection.Campbell Barton
2011-03-14fix [#26489] Auto completion in console brokenCampbell Barton
own mistake in r35492.
2011-03-14move mathutils api changelog into wiki.Campbell Barton
2011-03-14change addon defaults.Campbell Barton
- export uv layout enabled. - 'render_netrender' enabled (still needs being made into an addon). - export camera data disabled.
2011-03-14patch [#26495] Adjustable outline width for selected objectsCampbell Barton
2011-03-14tag var as unused.Campbell Barton
2011-03-14Bugfix: "Sync Markers" option in Action Editor is now a bit moreJoshua Leung
useful. Instead of only working for the "extend" transform mode, standard transforms now work too now (i.e. grab and scale). TODO: This currently only works on Scene markers, though it should be possible to make this work on a provided list of markers instead...
2011-03-14RNA API RenameCampbell Barton
'create' was used as prefix and suffix, change dupli list functions to use as suffix, this matches obj.animation_data_create() & obj.animation_data_clear(). obj.create_dupli_list() --> obj.dupli_list_create() obj.free_dupli_list() --> obj.dupli_list_clear() Don't use 'create' for object to mesh function since other uses of this are for createing data which stays attached, instead use mathutils style naming convention. obj.create_mesh() --> obj.to_mesh()
2011-03-14add dir() function for library objects, also was missing call to clear temp ↵Campbell Barton
flag on exceptions.
2011-03-14Readme file:Thomas Dinges
* 2.56 > 2.56a and 1 grammar fix.
2011-03-14Group tree sockets were not being freed after removing.Lukas Toenne
2011-03-14Fix for crashes due to links without fromnode pointers. This can happen with ↵Lukas Toenne
"unfinished" links created during the modal linking operator or when creating links from group tree inputs. In addition don't store unfinished links in the nodetree->links list any more. This makes code a bit safer because all links in that list can be considered valid now. The temporary bNodeLinkDrag structs used by the modal linking operator are now also stored in a list in SpaceNode, so these links can be drawn too (this separation also allows different display of temporary links, e.g. currently they are drawn on top of all nodes).
2011-03-13* Small code cleanup/removalThomas Dinges
2011-03-13Fixed the node_recurs_check function used to define the order of nodes in ↵Lukas Toenne
ntreeSolveOrder. This was creating equal node levels in some cases (auto-linking viewer to nodes further downstream), leading to falsely detected circular dependencies.
2011-03-13fix mistake from commit rev. 33868. The variable icon was a pointer, not an ↵Andrea Weikert
integer icon id (ICON_NONE).
2011-03-13Fix "make test" on Mac, couldn't find executable.Brecht Van Lommel
2011-03-13RNA: use a different method to set DNA types for BlendData* collections, toBrecht Van Lommel
solve issues with c++ api.
2011-03-13Replaced RNA code in previous commit with a version which should be aJoshua Leung
bit safer (less likelyhood of float <-> int corruption)
2011-03-13Pose Sliding Tools - Custom Property Support + Other bugfixesJoshua Leung
- Custom properties are now affected by the Pose Sliding tools too. This is now more important to support, given that modern rigs use these a lot for facial expressions/posing. By and large, this should work fine, though discrete integer values may experience a bit of trouble - Fixed potential bugs with the code which detects which F-Curves are relevant to a PoseBone's transforms (+ custom props). This was prone to being tricked by certain setups if the names of the bones contained some of the keywords these were searching for. - Shuffled some code around: moved bulk of logic out of vec3 case into new function for single-value, since it was really doing per axis already
2011-03-13rna/api: new bezier keys added via fcu.keyframe_points.add() now use auto ↵Campbell Barton
handles and bezier interpolation.
2011-03-13Make BF_PYTHON_ABI_FLAGS a scons option. Default flags are empty.Sergey Sharybin
Made changed to linux2-config and freebsd*-config. Windows/MacOS are kept unchanged. I'm not sure which flags should be used for freebsd systems, so flags for them also kept empty. Maintainers of this platform, please check which flags should be used and make changes to rules.
2011-03-13Bugfix [#26484] delete keyframe in pose mode --> segmentation faultJoshua Leung
2011-03-13Inconsistent use of array_index vs index with animation keyword args.Campbell Barton
Settle with 'index' even though the attribute is array_index.
2011-03-13- lightmap pack wasnt reporting no mesh errors properly.Campbell Barton
- cleanup headers. - cmake on *nix was always writing to /bin/./2.56
2011-03-13[#26482] Solidify / Animation Opengl render. no texture.Campbell Barton
workaround for view3d datamask not being correct on opengl render.
2011-03-13py/library api: raise an error if a requested member isn't found.Campbell Barton
2011-03-13SVN maintenance.Guillermo S. Romero
2011-03-13quiet stricter compiler warnings/errors.Campbell Barton
2011-03-13Bugfix [#26473] Keyframe values for F-Curves were incorrectly wrappedJoshua Leung
in RNA as "translation" values, which implies dimensionality is incorrect here as F-Curves do not specifically "know" about the type of the data they affect
2011-03-13Fix for compilation error after bullet upgrade.Sergey Sharybin
There was a typo in source file list.
2011-03-12update Bullet physics sdk to latest trunk/version 2.78Erwin Coumans
add PhysicsConstraints.exportBulletFile(char* fileName) python command I'll be checking the bf-committers mailing list, in case this commit broke stuff scons needs to be updated, I'll do that in a second.
2011-03-12library loading api.Campbell Barton
this is not well suited to RNA so this is a native python api. This uses: bpy.data.libraries.load(filepath, link=False, relative=False) however the return value needs to use pythons context manager, this means the library loading is confined to a block of code and python cant leave a half loaded library state. eg, load a single scene we know the name of: with bpy.data.libraries.load(filepath) as (data_from, data_to): data_to.scenes = ["Scene"] eg, load all scenes: with bpy.data.libraries.load(filepath) as (data_from, data_to): data_to.scenes = data_from.scenes eg, load all objects starting with 'A' with bpy.data.libraries.load(filepath) as (data_from, data_to): data_to.objects = [name for name in data_from.objects if name.startswith("A")] As you can see gives 2 objects like 'bpy.data', but containing lists of strings which can be moved from one into another.
2011-03-122.5 Fluid UI Python Script:Thomas Dinges
* Code cleanup, no UI changes, reduced code from 1244 lines to 1228 lines.
2011-03-12py/rna: BPy_reports_to_error() now takes the exception type as an argument ↵Campbell Barton
and returns -1 as an error value