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
2012-10-20Merged changes in the trunk up to revision 51448.Tamito Kajiyama
Conflicts resolved: source/blender/blenkernel/CMakeLists.txt source/blender/blenloader/intern/readfile.c source/blender/editors/mesh/editmesh_tools.c source/blender/makesrna/intern/rna_main_api.c
2012-10-17code cleanup:Campbell Barton
- move object_iterators.c --> view3d_iterators. (ED_object.h had to include ED_view3d.h which isn't so nice) - move projection functions from view3d_view.c --> view3d_project.c (view3d_view was becoming a mishmash of utility functions and operators). - some some cmake includes as system-includes.
2012-10-16code cleanup: use float sizes for function args.Campbell Barton
2012-10-15code cleanup: define sizes of vectors for function args and use C style commentsCampbell Barton
2012-10-14More UI messages and BKE_reportf->BKE_report fixes...Bastien Montagne
2012-10-12optimization for PyObject -> ID-property sequence conversion, use ↵Campbell Barton
PySequence_Fast.
2012-10-12quiet clang static checker warning by returning an error for invalid ↵Campbell Barton
situation getting an IDProp mapping from a PyObject. also print the path installed to when installing an addon.
2012-10-12remove BLI_noise from BLI_blenlib.h, not that many files need this.Campbell Barton
2012-10-09code cleanup: make header defines more consistent, JOYSENSOR header guard ↵Campbell Barton
had a typo too.
2012-10-08style cleanup: pep8Campbell Barton
2012-10-07Merged changes in the trunk up to revision 51126.Tamito Kajiyama
Conflicts resolved: source/blender/blenloader/intern/readfile.c source/blender/windowmanager/WM_types.h
2012-10-06toggle cut through in the knife tool now refreshes (before you had to wave ↵Campbell Barton
the mouse about to see the result). also remove print from last commit.
2012-10-06fix [#32779] Bmesh module: assigning to bm.select_mode crashes Blender if ↵Campbell Barton
bmesh is empty was missing set typecheck
2012-10-02revert fix for [#31555] Username with special chars in Windows 7Campbell Barton
this breaks and causes bug: [#32720], where sys.stdout becomes invalid and print() does nothing. On investigation - python is not getting the environment variable from blender (aparently because its a DLL?) so this should be resolved rather then overwriting sys.stdout.
2012-10-01fix for own bug in bmesh api, setting a byte string customdata layer assumed ↵Campbell Barton
the input data was 256 length, assigning smaller values would read past the buffer.
2012-10-01fix for crash found when attempting to setup testing environment to find ↵Campbell Barton
crashes :) scripts that have `Register` enabled and load another blend file would crash blender.
2012-10-01add compiler hints that failing to create a bmesh face is unlikely.Campbell Barton
2012-09-30Merged changes in the trunk up to revision 50956.Tamito Kajiyama
Conflicts resolved: source/blender/editors/interface/resources.c
2012-09-30style cleanupCampbell Barton
2012-09-29correct addon example, it used both __doc__ and bl_descriptionCampbell Barton
2012-09-28add warning that RNA update callbacks dont have checks for infinite recursion. Campbell Barton
2012-09-28code cleanup: correct spellingCampbell Barton
2012-09-27incorrect spelling in commentsCampbell Barton
2012-09-26fix for very bad bug with python list slicing which - in bmesh and bpy api ↵Campbell Barton
for all? 2.5x + releases. negative stop values when slicing was broken. eg. bpy.data.objects[0:-2] != list(bpy.data.objects)[0:-2]
2012-09-23Merged changes in the trunk up to revision 50829.Tamito Kajiyama
Conflicts resolved: source/blender/blenloader/intern/readfile.c source/blender/render/intern/source/convertblender.c source/blender/render/intern/source/pipeline.c Also addressed code inconsistency due to changes in the trunk revision 50628 (color management with OCIO) and 50806 (UV project material). OCIO-related changes are marked OCIO_TODO as in some other files modified in revision 50628.
2012-09-23fix for crash executing a python script.Campbell Barton
nice obscure case, when a script executes, frees its self (by loading a file for eg), then has a python error. ... in this case blender would fetch the python exception and attempt to move the cursor in the freed textblock to the error line, crashing blender.
2012-09-22fix for crash getting a member from the operator context override, in some ↵Campbell Barton
cases python didnt hold the GIL.
2012-09-20code cleanup: remove unused macros, commet some which may be useful later - ↵Campbell Barton
or good to keep for completeness. quieted some warnings and add flags -Wmissing-include-dirs and -Wno-div-by-zero to cmake/gcc
2012-09-15quiet -Wmissing-prototypes warnings, and enable this warning by default for ↵Campbell Barton
C with gcc. helps for finding unused functions and making functions static, also did some minor code cleanup.
2012-09-15Merged changes in the trunk up to revision 50607.Tamito Kajiyama
Conflicts resolved: source/blender/blenloader/intern/readfile.c
2012-09-11fix for a bug running a script, then opening a new file.Campbell Barton
BPY_text_free_code() could run outside the python interpreter which abort()'s blender.
2012-09-08style cleanupCampbell Barton
2012-09-05fix/workaround [#31555] Username with special chars in Windows 7Campbell Barton
Theres a bug where python/windows ignores PYTHONIOENCODING, workaround this by manually overriding the stdout/stderr.
2012-09-04fix [#31856] movieclips.load(filepath=None) or value crash BlenderCampbell Barton
workaround for python bug/inconsistency
2012-08-29Merged changes in the trunk up to revision 50257.Tamito Kajiyama
Conflicts resolved: source/blender/blenkernel/CMakeLists.txt
2012-08-28fix bug in mathutils.geometry.intersect_point_line() where 4D vectors were ↵Campbell Barton
treated as 2D. also change behavior to return a 2d vector when all args are 2D.
2012-08-28fix for own crash caused by curve refactor, now curve tables are initialized ↵Campbell Barton
once when the tree is initialized. thanks to Antony Riakiotakis for providing a fix, though this works a little different.
2012-08-27support unary positive operators for vectors (same as numpy), so you can do ↵Campbell Barton
'vector_a = +vector_b', this makes a copy.
2012-08-26style cleanup: whitespaceCampbell Barton
2012-08-25minor code cleanupCampbell Barton
2012-08-22style cleanupCampbell Barton
2012-08-20fix for own error in bpy.utils.blend_paths() arg parsing.Campbell Barton
2012-08-18Merged changes in the trunk up to revision 49986.Tamito Kajiyama
2012-08-12Merged changes in the trunk up to revision 49797.Tamito Kajiyama
2012-08-12style cleanupCampbell Barton
2012-08-08code cleanup: rename G.rt to G.debug_valueCampbell Barton
2012-08-07use -FLT_MAX where FLT_MIN was misusedCampbell Barton
2012-08-07mask - draw both sides of the curve when `filled` option is disabled.Campbell Barton
2012-08-07fix a crash when python is registering enum properties and the `items` ↵Campbell Barton
argument is a generator (some sequence type besides a list/typle), in this case it could free the strings before blender duplicates them. this fixes [#32192] Import Images as Planes script is broken
2012-08-05code cleanup: remove redundant calls to CTX_data_main()Campbell Barton