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
2011-04-10=cloth collisions=Joseph Eagar
Plugged the eltopo library into the cloth solver. I was playing with it earlier, and it's so easy to use I decided to quickly put it in (trunk's) cloth. See http://www.cs.ubc.ca/labs/imager/tr/2009/eltopo/eltopo.html . The authors are on the bleeding edge of continuous collision detection (one of them did ILM's cloth sim). I don't really have to time to plug it into softbody, particles, bullet, fluid, etc, but doing so would be pretty straightforward. I'll leave that up to someone else. To use, turn on USE_ELTOPO (in cmake) or WITH_BF_ELTOPO in scons.
2011-04-09Print out reports on console too (debug and up) as fix for [#26708] "INFO" ↵Nathan Letwory
reports are not displayed reported by Tom Edwards Showing of certain reports (ie. info) is very hidden. At least print these to console.
2011-04-09remove -mwindows flag for scons/mingw, enable manifest & winblender.rc for ↵Campbell Barton
all windows builds except for msvc2010
2011-04-09Add missing defines for .rc file.Nathan Letwory
2011-04-08Fixes related to using Library files:Ton Roosendaal
- Assigning local materials to library objects disabled (crashes on undo/redo cases) - Disabling options in Material buttons to add/remove slots on library data - Drawing Object ID template in Object properties, this allows browse active Object, but especially shows library status then.
2011-04-08Fix small typo in resource define.Nathan Letwory
2011-04-08Fix for compilation under non-windows platforms -- missed check forSergey Sharybin
platform before WM_console_toggle call
2011-04-08add new subtype PROP_COORDS, for generic coordinates that are not to be ↵Campbell Barton
changed by units.
2011-04-08Apply console part of patch [#26044] Windows thumbnails and improved ↵Nathan Letwory
filetype registration submitted by Tom Edwards This patch introduces a switch -con and its longer version --start-console. When giving this on cmd-line you'll get the black console window. The new behaviour is to hide it by default. We'll still see briefly the console at startup and during exit, but that's something that cannot be changed. If you start blender from a cmd.exe, the console will not be hidden.
2011-04-08fix [#26674] Inconsistency in snapping CursorToSelection between UV_Editor ↵Campbell Barton
and 3d_View.
2011-04-08Minor bugfix in initTransInfo: SpaceImage used even if space type is SPACE_NODE.Lukas Toenne
2011-04-08Fix for [#26800] Particle Render "Use Group Count" is shared between ↵Janne Karhu
different Particle Settings datablocks * Copying particle settings didn't copy the dupliweights.
2011-04-08doxygen comments, removal of superfluous backslash.Nathan Letwory
2011-04-08fix [#26803] Libs paths are case sensitive in windowsCampbell Barton
another case was exposed by this report, making relative paths wasn't case insensitive on windows.
2011-04-08for thumbnail generation only scale the byte buffer. (was scaling float & byte).Campbell Barton
2011-04-08fix for own assert with image scaling, wasnt working with float images.Campbell Barton
2011-04-08fix [#26830] Blender crashes when opening this fileCampbell Barton
was linking NLA fcurve modifiers as fcurves (wrong function call).
2011-04-08change to fcurve keyframe coords broke simplify addon since the propertyCampbell Barton
was no longer wrapped by python as a vector. now fixed size float arrays with PROP_NONE subtype are wrapped as vectors since its convenient to have x/y access.
2011-04-07Bugfix #26812Ton Roosendaal
On anim-render, a click in timeline stopped render completely. The reason for this was a bit wacko code to cope with frame-step feature (steps of multiple frames). I thought of fixing that, but instead decided to block any operator in Blender to change a frame while a render is in progress. Both render engine and UI are accessing (writing to) the same data then, which is a bad conflict. Still a serious weakness of threaded render, but I'll keep trying to allow this as far as possible :)
2011-04-07Bugfix #26748Ton Roosendaal
Boolean modifier should be restricted to Mesh objects only.
2011-04-07Minor fix, own collection.Ton Roosendaal
Knife cut operator was using int_get where enum_get was meant.
2011-04-07add margin access [#26806] Missing pack margin for pack islands in UV editorCampbell Barton
2011-04-07fix [#26816] P(separate) an object messes up logic brick linksCampbell Barton
2011-04-07build fix after commit 36036 reported by Tom Edwards over mailing listDalai Felinto
2011-04-06Fix for Image.pixels set, buffer was not tagged as modified, patch by Domino ↵Brecht Van Lommel
Marama.
2011-04-06Name unification commit for console toggling operator.Sergey Sharybin
Requested by Dalai, approved by Campbell. Other requested from Dalai changes were rejected by our Python Departament.
2011-04-06Fixed incorrect RNA access when changing type of sequencer viewSergey Sharybin
2011-04-06include needed for windowsCampbell Barton
2011-04-06cmake/windows, temporarily build without winblender.rc until its fixed, was ↵Campbell Barton
giving linking error with msvc2010 and isn't essential info.
2011-04-06fix [#26803] Libs paths are case sensitive in windowsCampbell Barton
use case insensitive path comparison on windows: BLI_path_cmp
2011-04-06fix for cmake glew includes (tested with mingw), also made qtcreator project ↵Campbell Barton
generator work with mingw again
2011-04-06fix [#26801] Undoing Animation modifiers undoes 2 steps.Campbell Barton
also found grease pencil layer operators were not flagged to use undo.
2011-04-06update test checksums (change in normals caused this). also make all imports ↵Campbell Barton
write blend files so its easy to check what the imports look like.
2011-04-06add option WITH_BUILTIN_GLEW, so linux packagers can disable to use their ↵Campbell Barton
own glew library.
2011-04-05tooltips were part way of the bottom of the screen (timeline play button for eg)Campbell Barton
2011-04-05Bugfix [#26792] blender crash when scaling action strip in NLAJoshua Leung
Two part bug: Part 1) NLA Editor menu was calling wrong operator Part 2) r35829 broke NLA scaling, since it only checked that the transform mode used was allowed in the Action Editor (probably confused by Part 1)
2011-04-05fix [#26793] Is the Convert function of Grease Pencil normal?Campbell Barton
disallow grease pencil conversion in editmode, was setting a new active object.
2011-04-05fix for render only drawing wire curves in wire view.Campbell Barton
2011-04-05Commit r33378 adds a red alert to search buttons which have items which are ↵Campbell Barton
not in the list. Disable this for pointer buttons since this was intended for vgroups & uvlayers. Pointer buttons often reference ID's which can be in the 1000+, lookups like this on each button draw is not useful since invalid pointers here will likely crash on scene evaluation.
2011-04-05fix [#26782] Missing settings in some texture nodes.Campbell Barton
also rename noisebasis_2 --> noise_basis_2
2011-04-05utility function for getting the vector direction the mouse is pointing in a ↵Campbell Barton
perspective view.
2011-04-05quiet warning & minor pep8 edits.Campbell Barton
2011-04-05fix [#26785] Curve shows in 3dview regardless of "Only Render"Campbell Barton
2011-04-05== filebrowser ==Andrea Weikert
Small fix for recent folders in filebrowser, didn't save correctly when too many folders in the list (more than the currently allowed 10), now skips the oldest entries. Reported on IRC.
2011-04-05Descriptions for some of curve operatorsSergey Sharybin
2011-04-04Fix for the fix, making hurried last minute changes is not a good idea :)Brecht Van Lommel
2011-04-04Fix for slow Image.pixels, make it a flat instead of multidimensional array.Brecht Van Lommel
2011-04-04Fix mistake in recent commit to revert some normal changes.Brecht Van Lommel
2011-04-04Startup.blend update:Ton Roosendaal
- Clip in 3d window now 1000 (2nd try :) - Raytrace "Instances" default
2011-04-04Fix #26781: Assigning multiple Materials to Text seems not to work correctlySergey Sharybin
Problems was in 0-based numbering vs. 1-based. Fonts are getting converted to displists when they're displaying and here base conversion happens, so no need in conversion when assigning material to selected text. This makes indices more inconsistant, but saves compatibility in both of directions. Maybe in further releases we'll make indices consistent.