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
path: root/source
AgeCommit message (Collapse)Author
2010-02-01SVN maintenance.Guillermo S. Romero
2010-02-01Fixed a few lingering compiler warnings with the bpy_app stuffJoshua Leung
2010-02-01WM Draw Methods now has a new option Automatic (default). This willBrecht Van Lommel
set the draw method to triple buffer or overlap depending on the configuration. Ideally I could get all cases working well with triple buffer but it's hard in practice. At the moment there are two cases that use overlap instead: * opensource ATI drives on linux * windows software renderer Also added a utility function to check GPU device/os/driver.
2010-02-01ugh!, missed this file tooCampbell Barton
2010-02-01Added 'Evaluation Time' setting access to Path Animation panel.Joshua Leung
This was previously only available from the datablocks viewer, but this is the direct replacement to the badly named 'speed' ipo-curve in the past ('speed' implies a rate that must be integrated/added to the results of past frame, rather than a factor). Also, tweaked the RNA definition so that this shows as a slider (i.e. a factor), since the valid values for this are clamped to the [0, 1].
2010-02-01Fix #19888: tooltip would stay visible when starting e.g. panning theBrecht Van Lommel
view, and be stuck there permantenly when leaving the region. Now the button interaction is cancelled when starting a modal operator, not too happy about this, but couldn't think of another way to detect this well.
2010-02-01Fix #20830: only rendering Z pass did not give correct Z values.Brecht Van Lommel
2010-02-01Fix missing redraw in image window when changing render pass.Brecht Van Lommel
2010-02-01missed this fileCampbell Barton
2010-02-01Renamed the FILE_OPEN option for the file browser to FILE_OPENFILE to ↵Joshua Leung
cleanup compiler warnings about redefined definitions (mingw)
2010-02-01setting invalid vector swizzle attributes (from blender2.4x docs for ↵Campbell Barton
instance), could crash blender. - disallow setting swizzle's that have duplicate values: vec.xxx = [1,2,3] - raise an error if the list setting a swizzle's longer. - mathutils write callback was running on the wrong vector, which could crash blender.
2010-02-01Mathutils doc improvements + other small thingsCampbell Barton
- bpy.app moved into PyStructSequence (used by sys.float_info) - added buildinfo into bpy.app.build_* - bpy.ui removed (wasnt used) - include external example files in Mathutils docs (only Mathutils and Vector are currently written) - added support to auto document PyStructSequence's - CMake had "'s inside all its strings.
2010-01-31Fix [#20901] OPENEXR: Incorrect gamma from colour managementMatt Ebb
Was working correctly on float render buffers, but not 8bpc render buffers (only generated from sequence editor)
2010-01-31-setaudio argument to force an audio device.Martin Poirier
This also means that only -s and -S are accepted to set start frame and scene (before, it would accept anything that started with s or S, you could have done blender -b file.blend -super 1 -Science "scene 2"). We really need better argument parsing...
2010-01-312.5: quick fix to make 10-timer menu appear again. It's a debug tool, isTon Roosendaal
allowed to show menus in end. But, report API doesn't have a type for this yet... has been noted, and will be checked soon.
2010-01-31Temporary work around for [#20768] Project Snap BrokenMartin Poirier
Don't snap to editmesh when project is on (that means you can't retopo to the same mesh). Again, that's a temporary work around.
2010-01-31Fix snap to grid not taking the current grid resolution intoBrecht Van Lommel
account in quad split 3d view. Now WM_OP_EXEC/INVOKE_REGION_WIN context stays in the current region if it is already a region of type window, so the operator gets executed in the right context.
2010-01-31Fix #20879: crash when add textures brush in sculpt mode. DrawingBrecht Van Lommel
the texture would crash because the VBO was still bound. As I understand it this is not necessarily against the opengl spec, but might as well unbind it, the driver bug seems to have been fixed but has not trickled down everywhere yet. http://bugs.freedesktop.org/show_bug.cgi?id=23859
2010-01-31Fix #20696: shape keys with vertex groups showing in edit mode didBrecht Van Lommel
not update immediately when editing the vertex groups.
2010-01-31Various tweaks to View2D code for handling of scrollbar interactions in ↵Joshua Leung
relation to bug 19881: * Clearly labelled the way that the scrollbar hiding works. Also see the report comments for an overview * Added another pair of flags for another one of the cases in which scrollbars should also get ignored; when the entire contents of the view are visible, a pair of flags is now set in the view2d data (instead of for the scrollers tempdata only) for detecting this case too * Fixed the potential for scrollbars without zoom handles shown to have those handles still considered. This still happened in the User Preferences window, but has now been disabled. -- These changes still don't solve the bug though. Currently after the scrollbar operator passes through, the Outliner's activate-selection operators still fail to start.
2010-01-31Fix #20897: ctrl + click extrude now works again with "select with"Brecht Van Lommel
set to left mouse, using the right mouse button, same as in 2.4x.
2010-01-31Fix #20896: FSAA wasn't disabled properly and still enabled for 3d viewBrecht Van Lommel
drawing, which apparently still slows things down even if you don't have the window set up to do this.
2010-01-31Fix compile error in qtkit_export.m on mac.Brecht Van Lommel
2010-01-31Armature RNA: Removed old properties for armature-only bone pathsJoshua Leung
2010-01-31bugfix [#20579] Context pinning error (pose mode)Campbell Barton
2010-01-31missed these last commitCampbell Barton
2010-01-31- hash characters in the path would confuse the output file name and not add ↵Campbell Barton
numbers to it (when rendering animations). - added an option to BLI_convertstringframe and BLI_convertstringframe_range to add digits if not found. - removed BLI_convertstringframe where its obviously not needed - such as loading movies and sounds.
2010-01-31rename game object obcolor to colorCampbell Barton
2010-01-31Bugfix #20870: Local rotation drivers behave weirdJoshua Leung
Use euler rotations for local rotation drivers if the object/bone uses euler rotations. Otherwise, fall back to matrix-based conversions again.
2010-01-31Bugfixes:Joshua Leung
* Old files imported to 2.5 with curves that got cycles FModifiers added during version patching, would not have their keyframes shown for editing. * #20893: Can't see/show the Properties area in the NLA I don't know why this worked on a few of my test files several months ago, and yet now fails for many files today.
2010-01-31Preparation to force an audio device via command line. Will be implemented ↵Joerg Mueller
by theeth.
2010-01-30bugfix [#20740] Separate All Loose PartsCampbell Barton
2010-01-30cmake vars are not using _BF_ in var names.Campbell Barton
2010-01-30OSX : update build scripts for updated openCollada libs + ray tracing ↵Damien Plisson
optimization option in cmake OpenCollada new version (721) lib has additional lib files to link with. Added BF_RAY_OPTIMIZATION option in CMake (as the one in scons) for building SIMD optimized ray tracing code.
2010-01-30[#20320] Quad View - Orthogonal grid changes to perspective gridCampbell Barton
- respect view locking (dont change rv3d->view) - on multiple calls to smoothview, get the original view from the previously called smoothview if it exists.
2010-01-30BGE: patch [#20293] Added python sensor attribute: Status.Benoit Bolsee
2010-01-30BGE: patch #20399 Python control over adding/removing scenes.Benoit Bolsee
2010-01-30Merge -c 26209,26214,26443 from COLLADA branch into trunk.Arystanbek Dyussenov
2010-01-30bugfix [#20894] Blender don't import the "eye" icon value from 2.49 files in ↵Campbell Barton
the DopeSheet Editor
2010-01-30[#20892] Locking animation curves with Tab Key don't hide the curves handlesCampbell Barton
drawing handles for fcurves wasnt checking ((fcu->grp) && (fcu->grp->flag & AGRP_PROTECTED))
2010-01-30[#19872] Mesh edit missing undo push for mode changingCampbell Barton
copy the editmesh select mode back to the scene on undo.
2010-01-30bugfix [#20888] Crash when following instructions on the Blender Wiki and ↵Campbell Barton
then clicking on the outliner
2010-01-30Fix #19648: sculpt does not update linked duplicate multires.Brecht Van Lommel
2010-01-30[#20550] Workflow Odity For Objects On Layers Not Being ViewedCampbell Barton
always keep the first editmode objects layer enabled in cases where switching hides the editmode object.
2010-01-30Fix #20662: normal map rendering with negative factor didn't flipBrecht Van Lommel
the direction correctly.
2010-01-30bugfix [#20417] <memory> shouldn't be stored in recent item listCampbell Barton
2010-01-30COLLADA branch: merge from trunk -r 25745:26429.Arystanbek Dyussenov
scons+vc build crashes on Blender start when BF_COLLADA is on, don't know why this happens. Merging from trunk to get working vc project files, then will try to debug and locate the problem.
2010-01-30utility functions is_negative_m3 & is_negative_m4, added python Mathutils ↵Campbell Barton
access Matrix.is_negative renamed Mathutils attribute wrapped -> is_wrapped
2010-01-30Fix #20886: user defined keymap could be loaded before python scripts,Brecht Van Lommel
printing errors when that keymap included python operators.
2010-01-30Fix #20790: fluid sim adding domain mesh with no faces crashes.Brecht Van Lommel