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-09-06Add parser error handler.Nathan Letwory
OpenCOLLADA is a validating parser, so is pretty strict about document form. The added error handler will print out any errors the parser finds. A pop-up will be shown too, advising the user to check the console for the error log.
2011-09-05Code cleanup: remove context from RNA update functions, only one left.Brecht Van Lommel
2011-09-05Code cleanup: warning fixes.Brecht Van Lommel
2011-09-05Fix #28404: certain keyboard shortcuts not shown in menus, e.g. move operatorsBrecht Van Lommel
in graph editor > channel menu. Problem was these did not inherit operator execution context correctly. Fix found by Sergey, also needed to fix logic operators which were not working when invoked instead of executed.
2011-09-05Fix #28394: clouds texture error with high noise depth and blender originalBrecht Van Lommel
noise, patch from Campbell,
2011-09-05Fix #28389: UILayout.menu function didn't emboss menu button correct in theBrecht Van Lommel
3d view tools region.
2011-09-05Left debug print accidently enabled.Nathan Letwory
2011-09-05Fix #28504: lib linking errors were not shown when opening a file fromBrecht Van Lommel
the splash screen.
2011-09-05Partial revert commit 39878 "Fix #28280: Insert Hook wrong index"Sergey Sharybin
Such load/make edit structures introduced regression into iterators via object's geometry (vertices, edges, control points and so) when adding hooks in the body of this iterator. Fix for wrong index should be non-destructable for geometry. This will fix #28506: Unusual behavior in curves.
2011-09-05Adding noise module by default in driver_namespaceDaniel Salazar
http://www.pasteall.org/blend/8677
2011-09-05Remove NULL-checks, as they might cause infinite loops while reading a DAE ↵Nathan Letwory
containing unsupported data, i.e. <lines> geometry.
2011-09-04Fix #28503: Selecting a Grease Pencil from the Properties panel does not ↵Sergey Sharybin
update 3D View Added missing notifiers.
2011-09-04[#27884] Collada import: materials mismatch when 2 instance_geometry ↵Nathan Letwory
reference the same material Reported by David Roy Multi-materials used on different meshes would get ignored (resulting in white faces in textured view).
2011-09-04Fix #28500: Reshape in multires modifier makes blender crashSergey Sharybin
Multires doesn't store displacement for base mesh and reshaping when multires subdivision level is set to zero is crappy. Add report that reshape can't work with base level and cancel reshape operator.
2011-09-04Fix #28423: Screw-modifier crash in cunjunction with subsurf modifierSergey Sharybin
Problems was caused by angle=2*pi and steps=2 in screw modifier. Such configuration produced duplicated geometry to close object and it was confusing for subsurf cache. Restrict steps=2 for screw modifier now, so now 3<=steps<=512.
2011-09-04Prevent potential crasher, commonEffects could be empty.Nathan Letwory
2011-09-04BGE animations: fixing initialization order issues for BL_ActionActuator and ↵Mitchell Stokes
BL_ArmatureObject. Thanks to z0r for pointing them out and providing a fix.
2011-09-04BGE animations: Fixing a potential crash when using camera IPOs. The IPOs ↵Mitchell Stokes
were being created off of blendercamera->adt->action when they should have been using the supplied action. Thanks to z0r for pointing out the problem and a potential fix.
2011-09-04Fix [#28322] COLLADA imports messed up UVsNathan Letwory
Reported by Chad Gleason Imported index order could put mface->v4==0. We already know amount of verts, so use that instead.
2011-09-04Some whitespace changesNathan Letwory
2011-09-04BGE animations: Adding a separate list to KX_Scene for animated objects. ↵Mitchell Stokes
This makes scenes with a lot of non-animated objects faster. In my test scene with 8000 static, non-animated cubes my time spent on animations went from 1.5~1.7ms to 0.001ms.
2011-09-03BGE animations: Fixing a crash that would happen if the property for a ↵Mitchell Stokes
property mode action actuator was invalid.
2011-09-03warning fixesCampbell Barton
2011-09-03minor edits to build on openbsdCampbell Barton
2011-09-03== CustomData ==Nicholas Bishop
* Added comments for each entry in the LAYERTYPEINFO array noting the number and name of the layer type; was hard to tell before which entry was what
2011-09-03PyC_ExceptionBuffer is now threadsafe, used for converting exceptions into ↵Campbell Barton
reports.
2011-09-03fix [#28462] Tiled textures and 2D filters don't mixCampbell Barton
patch by Juha Mäki-Kanto
2011-09-03whitespace editsCampbell Barton
2011-09-02Fix for grid lines drawing outside of histogram widget.Sergey Sharybin
2011-09-02Add missed notifier when toggling object's force field.Sergey Sharybin
2011-09-02Fix crash caused by recently added assert about if string was set properly.Sergey Sharybin
Memory Estimate is actually 31 characters length, str[31] is a null-terminator. Return length of 31 for memory estimate property. Returning proper length would lead to slowdown because of 2x iteration through vertices.
2011-09-02Fix #28280: Insert Hook wrong indexSergey Sharybin
Use quite easy and stupid approach like it used for shape keys: re-make editmesh (editcurve or editlattice) before creating index array for hook or storing vertex index in parenting object. Even if hook was added in "current" edit mode, it should be re-mapped on loading edit data because topology could be changed after it was created. Such kind of re-loading edit structures is the easiest way for now to update keyindexes to relevant state. Also, fixed bug with not re-mapping indices for vertex-parented objects. Really old error, not sure why it wasn't noticed yet.
2011-09-02Fix #28467: Crash while deleting objects in outliner too fastSergey Sharybin
Cleanup tree when handling object delete from outliner. Prevents handling the same tree item twice when clicking fast.
2011-09-02Bugfix [#28435] Key Visual transform and Parenting not workingJoshua Leung
After reviewing this code, it seems that this case can work after all. However, several things needed to be tweaked: 1) Removed check which stopped parented objects from getting the visual keying coordinates determined. This actually wasn't doing anything, given that this case would never occur as... 2) Tweaked the visualkey_can_use() function to also consider parenting as a cause for visual-keying to be necessary.
2011-09-02paranoid check that RNA string functions set the string, would have helped ↵Campbell Barton
solve keymap search bug. disabled in release mode.
2011-09-02Partial fix for #28441: Tab width in texteditor ignored if used tabs as spacesSergey Sharybin
Scroll to cursor when displaying text datablock was changed. This behavior was lost in 2.5x.
2011-09-02patch [#28473] Outliner Simple TodoCampbell Barton
from Julien DUROURE (julien) --- * right click --> rename, as proposed on http://wiki.blender.org/index.php/Dev:2.5/Source/Development/Todo/Simple_Todos * implementation of Toggle visibility/rendarability/selectability on right click on Groups ( was in menu, but not implemented )
2011-09-02fix [#28460] SEGFAULT when trying to make empty display as imageCampbell Barton
2011-09-02tweak to WM_operatortype_find to perform better when called with empty ↵Campbell Barton
strings (as the keymap editor does a lot)
2011-09-02fix for keymap search, was using uninitialized memory when the keymaps ↵Campbell Barton
operator couldn't be found.
2011-09-02fix for error in recent commit, when audaspace is enabledCampbell Barton
2011-09-02Credits generator which cross references with the patch tracker to credit ↵Campbell Barton
the original authors. the script has a unix-name <> real-name mapping which is not totally complete since I couldn't find everyones real names. In this case the commit name is credited. Also added a link to the credits page in the splash.
2011-09-02minor warning fixes, also correct some float -> double promotions in ↵Campbell Barton
shadeoutput.c
2011-09-02BGE animations: This is an attempt to help smooth out some more ↵Mitchell Stokes
compatibility issues with the new action actuator. It now has a similar pulse behavior to the old actuator. This has worked well in most of my tests, but YoFrankie still has problems, and it appears to have gotten a little worse.
2011-09-01BGE: Undoing r39729 and applying a simpler fix (ensuring that the viewport ↵Mitchell Stokes
is correct for PostRenderScene()). This way both 2d filters and post_draw callbacks with with multiple viewports.
2011-09-01use a fixed 32byte buffer for getting an rna string from python. gives a ↵Campbell Barton
slight speedup when drawing heavy UI's
2011-09-01fix for building without audaspace, since pepper mergeCampbell Barton
2011-09-01whitespace bge editsCampbell Barton
2011-09-01spaces -> tabs (configure you're editors right!)Campbell Barton
2011-09-01fix for error in patch from r39821.Campbell Barton