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-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-23add warning about misuse of ID.user_clear() since it can crash blender.Campbell Barton
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-23Revert a part of 39385.Thomas Dinges
Vertex Select Button got somehow into the Mesh panel.
2011-08-22glsl and render support for derivative mapsMorten Mikkelsen
2011-08-22Update rules for linux cross and mingw: list of DLLs for FFmpeg should be ↵Sergey Sharybin
defined there.
2011-08-22fix for buildinfo changes with blenderplayerCampbell Barton
2011-08-22Forgot this in previous commitSergey Sharybin
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-22remove workaround for bug in python 3.2.0 loading web pages on *nixCampbell Barton
2011-08-22pep8 edits and change '!= None' to 'is not None'Campbell Barton
2011-08-22patch [#28320] Small change to trunk needed for Motion Capture Addon - GSoC ↵Campbell Barton
2011 - Pepper Branch from Benjy Cook (benjycook)
2011-08-22fix [bf-blender-Patches][27924] Redundant applying of SetNetworkDeviceCampbell Barton
noticed by Jorge Bernal (lordloki)
2011-08-22name mandatory driver for OSX NDOF compile - testcommit same timeJens Verwiebe
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-21new cmake doesn't consider CLang == GNUCC, set flags for clang explicitly.Campbell Barton
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-19py style change only - make property definitions consistentCampbell 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-18fix for undo issues with generic, multi-purpose WM_OT_context* operators, ↵Campbell Barton
operators now check if they modify certain ID data (not screne, wm, brush or scene) and only do undo in those cass. - Zkey to switch shading was pushing undo's. - Wkey to interactively edit camera, lamp settings wasnt doing an undo push when it should. - Toggling settings (such as bone boolean options) now skips an undo push if there are no items selected.
2011-08-18more minor changes to wm.py, get data_path's once at the start of each func ↵Campbell Barton
and some minor style changes.
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-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 #28265: blender 2.59 not starting on OS X with old ndof driver.Brecht Van Lommel
Patch by Jens Verwiebe.
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-172.6 RNA:Thomas Dinges
* Remove some NULL RNA property update calls, they do nothing.