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-08-23Merging r39486 through r39651 from trunk into vgroup_modifiers.Bastien Montagne
2011-08-23vgroup_modifiers: Definitively removed addtionnal mapping/clamping options ↵Bastien Montagne
in WeightVGEdit mod, including from DNA struct.
2011-08-23fix [#28336] Particles: setting to zero the count of all elements of a group ↵Campbell Barton
crashes Blender
2011-08-23fix [#28344] for this file, the multires smiley has 2 materials, but only 1 ↵Campbell Barton
loads
2011-08-23Make Ctrl+RMB in editmode behave like 2.4x, was re-using center option which ↵Campbell Barton
worked but used center select too. instead add 'object' option to VIEW3D_OT_select.
2011-08-23Fix for [#28339] Rev:39618 The revision part doesn't suffice. Thomas Dinges
NAN_BUILDINFO > WITH_BUILDINFO change from rev 39618 was missing in those files.
2011-08-23change compression level for gzip saving to 1, approx twice as fast when ↵Campbell Barton
saving a 194mb blend file and only slightly bigger.
2011-08-22glsl and render support for derivative mapsMorten Mikkelsen
2011-08-22fix for buildinfo changes with blenderplayerCampbell Barton
2011-08-22actually, this if is still marginally good to haveMorten Mikkelsen
2011-08-22FFmpeg library update:Sergey Sharybin
- Update scons/cmake rules to use new versions of libs/dlls. - Update rules for buildbot.
2011-08-22properly escape chars for pythons bpy objects __repr__Campbell Barton
2011-08-22rename NAN_BUILDINFO --> WITH_BUILDINFOCampbell Barton
2011-08-22buildinfo is now quoted from the build systems, avoids stripping quotes on ↵Campbell Barton
startup. tested with linux/cmake linux/scons windows/cmake/mingw windows/cmake/msvc
2011-08-22fix [bf-blender-Patches][27924] Redundant applying of SetNetworkDeviceCampbell Barton
noticed by Jorge Bernal (lordloki)
2011-08-21Fix #28154: linux3-config.py doesn't existSergey Sharybin
Change OURPLATFORM from "linux<major_version>" to simple "linux". Since new policy for linux kernel versions that major version in platform doesn't make much sense for building rules so the same rules could be used for both of linux2 and linux3 now/ Tested on both of linux2 and linux3 systems.
2011-08-21Small fix, report in IRC by Olivier:Ton Roosendaal
Click in Compositor on output node invoked a re-composite. Only has to be done for inactive outputs.
2011-08-21fix for out of bounds array access for shaded drawing in the UI, remove ↵Campbell Barton
alpha blending for uiDrawBoxShade and uiDrawBoxVerticalShade.
2011-08-20floats were being promoted to doubles in quite a few cases (using gcc's ↵Campbell Barton
-Wdouble-promotion), went over render module and use float constants, gives small but consistent speedup - approx 3%.
2011-08-20use ghash for DNA_struct_find_nr(), gives ~18% speedup on loading sintel ↵Campbell Barton
lite, will also speedup undo. note: only works with CMake, wasn't able to get this working with scons, complains about same file being built in different environments.
2011-08-20fix for crash when loading a file from a script, and executing user modules ↵Campbell Barton
in the newly loaded file.
2011-08-20remove over zealous undo's on operators that don't need it.Campbell Barton
2011-08-19warning cleanup for -Wdouble-promotionCampbell Barton
2011-08-19minor speedup to python/rna api keyword argument lookups.Campbell Barton
- dont use hash lookups in this case because converting the string to unicode and doing a hash lookup is slower then looping over the keys and comparing (which avoids creating and throwning away a unicode string).
2011-08-19minor style changeCampbell Barton
2011-08-19store a pointer to the units system in the uiBlock since the button code was ↵Campbell Barton
doing context lookups for the scene quite a lot.
2011-08-18misc changes to unterface & undoCampbell Barton
- operator strings were doing undo pushes (in fileselector text for example), this is dumb since the operators themselves handle undo. - interface code checks rna props are arrays rather then checking the array length. - disable properties window pin undoing. - sequencer refresh was calling undo, disable since this is clearnign global data not handled by undo. - added commented out code for drawing mesh vertex index/key index, useful for debugging shapekey - hook issyes.
2011-08-18minor change for operator OUTLINER_OT_item_activateCampbell Barton
Noticed clicking anywhere in the outliner was doing undo pushes, even in empty areas. - check if any selection is made before redrawing. - don't do an undo push when selecting outliner items since only screen data is touched here.
2011-08-18bugfix: genx and geny are not the image resolution. Texture space variant ↵Morten Mikkelsen
needs this.
2011-08-18disable undo for hard coded interface buttons:Campbell Barton
- space type switcher. - header menu toggle. - properties window header buttons. - various view3d manipulator buttons.
2011-08-18disable undo for screen & wm RNA buttons, changing shading mode via the UI ↵Campbell Barton
for eg was doing an undo push.
2011-08-18formatting edits, no functional changes.Campbell Barton
2011-08-18fix for bad array access in transform operator, was assigning an array to a ↵Campbell Barton
single float operator value.
2011-08-18vgroup_modifiers: Minor update (names...).Bastien Montagne
2011-08-18Fix for [#28216] particles objects rotation still wrong with r39287Janne Karhu
* The emitter object's inverse matrix wasn't in global coordinates during rendering, so the surface normals of the hair emission locations were transformed with the wrong matrix.
2011-08-18BGE: Upon further investigation this should have been 8 since up/down and ↵Mitchell Stokes
left/right both are just one axis each. So, in actuality, the number of directions = 2, not 4, and thus JOYAXIS_MAX/directions = 16/2 = 8. 8 was also the max used in 2.4x.
2011-08-18BGE: Upping the max Axis Number for the Axis event type on joystick sensors ↵Mitchell Stokes
from 2 to 4. The BGE supports up to 16 axis. For Axis events (not Single Axis), you get for directions per axis (up, down, left, right). So, the max should be JOYAXIS_MAX/directions = 16/4 = 4.
2011-08-17Fix #28207: animating pin option for cloth didn't work, solver doesn't supportBrecht Van Lommel
it, so set the property as not animatable.
2011-08-17Fix #28262: uv unwrap in sync selection mode unwrapped all faces irrespectiveBrecht Van Lommel
of selection. Changed the fix for bug #27198, live unwrap not working with sync selection.
2011-08-17vgroup_modifiers: Removed (commented out, for now) addtionnal ↵Bastien Montagne
mapping/clamping options in WeightVGEdit mod, leaving the only curve mapping stuff. Also, updated all three modifiers with new foreachTexLink walking func.
2011-08-172.6 RNA:Thomas Dinges
* Remove some NULL RNA property update calls, they do nothing.
2011-08-17Fix #28277: changing smoke border collision type did not reset cache, makingBrecht Van Lommel
it seem like the option wasn't working.
2011-08-17Fix #28194, #28269: proxy object was not showing pose mode as available inBrecht Van Lommel
3d view header mode menu. A recent bugfix was incorrectly hiding pose and particle mode when the object data was library linked, but these modes edit object level settings so should be available.
2011-08-17Merging r39199 through r39485 from trunk into vgroup_modifiers.Bastien Montagne
2011-08-17fix [#28274] Cant select aditional object in edit mode.Campbell Barton
missing feature from 2.4x
2011-08-17fix for error calling RNA_property_float_get_index on non array float ↵Campbell Barton
rotations when displaying.
2011-08-16minor fix, armature selection outline was not being drawn for non-active, ↵Campbell Barton
selected armature object when they were in pose mode.
2011-08-16remove support for deprecated Vector() * Matrix(), eventually this will be ↵Campbell Barton
added back as row_vector_multiplication bu to avoid confusion for a bit just disable it altogether so script authors get an error on use and update their scripts.
2011-08-16Fix #28273: Crash playing with Follow path+Bevel+MaterialSergey Sharybin
Crash was caused by old refactor of displists. Added additional check to makeDispListCurveTypes.
2011-08-162.6 Node Muting:Thomas Dinges
* Removing check if Node is in between, so in-/output nodes can be muted as well. Useful for example if you want to temporarily mute a file output node.