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
2008-05-07svn merge -r 13452:14721 ↵Daniel Genrich
https://svn.blender.org/svnroot/bf-blender/trunk/blender
2008-05-07Fix for bug #10990: edge render AA issue.Brecht Van Lommel
2008-05-07Bugfix: modified the tooltip to indicate that the maximum length optionBrecht Van Lommel
for particle paths applies to children.
2008-05-07Setting frame in python allowed negative numbers (was casting to a short ↵Campbell Barton
with no clamping!) disable capslock option isnt used anywhere.
2008-05-07fix for [#10290] Wire object hid in the back of soled obj.Campbell Barton
reverse wire draworder logic from r4059, wire-only meshes were not using a depth buffer which meant they would not be visible at all, if they were after an overlapping solid object in the scene (had this problem for peach too).
2008-05-07fix for [#10180] File Browser buttons disappear after clicking on Window ↵Campbell Barton
Type button Spent some time looking into what this could break and it seems like a safe change.
2008-05-07BGE patch #10492 approved: getLinearVelocity() now can provide local ↵Benoit Bolsee
velocity as well. This patch is harmless and backward compatible; it can go safely into 2.46 release
2008-05-06== bugfix ==Andrea Weikert
[#10312] Append Link (image browser) bug if combined with Open window The only place where the special handling in newspace is relevenant is when opening it with the windowtype_pupmenu. All other overlaying windows( render in image space, scriptspace) should leave imagebrowser/filebrowser space alone.
2008-05-06patchesCampbell Barton
[#10529] -p command line option fix [#8844] Glossy controls Python API
2008-05-06made python add mesh module respect blenders user settings for editmode and ↵Campbell Barton
view align. added sys.cleanpath() was a patch in the tracker but blender's internal path cleaning is now more general and can be used from python.
2008-05-06Fix for bug: drawing x-ray and transparency with sets didn'tBrecht Van Lommel
work well, now it draws those type of objects from sets also at the end.
2008-05-06Fixes Makefiles for mac_compat_glext.h by updating some include paths.Kent Mein
Kent
2008-05-06Fix for bug #10734: mirror modifier crash with no axisBrecht Van Lommel
enabled for mirroring around.
2008-05-06Bugfixes: Joshua Leung
* NLA scaling was being incorrectly handled with fractional values. This was caused by clamping to integers instead of floats when making sure the scale value was positive. * Added checks to help prevent some weird cases that may sometimes occur and cause problems
2008-05-06== FFMPEG ==Peter Schlaile
Fixes: [#10703] loading an .avi captured by dosbox causes a segfault We shouldn't try to close a codec, if we haven't managed to open one... :)
2008-05-06Fix for bug #10542: changing particle visualisation type from object toBrecht Van Lommel
something else didn't work correct. Fix for bug #10478: particle system point cache problem.
2008-05-05Fix for bug #10444: environment map crash with qmc.Brecht Van Lommel
2008-05-05Fix for bug #10347: particles reset with orbit around selectionBrecht Van Lommel
option, was doing unnecessary dependency graph calls.
2008-05-05Fixed some indentation, I stumbled across (spaces vs tabs)Kent Mein
and also removed return 0 from a void stub. Kent
2008-05-05fix for bad indexing found by Cyril BruleboisKent Mein
Its making the identity matrix so I just removed the initalizing values that were out of bounds. Kent
2008-05-05Bugfix:Joshua Leung
IPO-Smooth should now give better results. It uses a moving-window approach, which looks at two points on either side of the point in interest (a total of 5 in optimal conditions), and does a weighted average on it.
2008-05-05fix for [#10458] Rc4 Blender crash when activate playback FPS than Alt+A to ↵Campbell Barton
play animation.
2008-05-05matt ebb found a case where removing the "Real" world button was bad.Campbell Barton
2008-05-05Fix potential buffer overflow (found by Cyril Brulebois).Ken Hughes
2008-05-05Fix BGE bug in patch #8724 (memory optimization): serious problem with alpha ↵Benoit Bolsee
texture when Use Blender Material is active and several objects have same texture. This bug messes up greatly with OpenGL texture. The GE is not usable without this fix.
2008-05-04== Sequencer ==Peter Schlaile
Added the missing directory selector button for proxy custom storage...
2008-05-04hopefully the last one...Campbell Barton
2008-05-04== Sequencer ==Peter Schlaile
Fixed order of operation in 3-way color corrector according to http://rebelsguide.com/forum/viewtopic.php?t=810 Thanks to mindrones for pointing this out.
2008-05-04missed out on some BLI_convertstringcode's, also found that playing relative ↵Campbell Barton
quicktime paths from the python api never worked, was using the 'Scene' type cast to a char.
2008-05-04More compiler fixes for BLI_convertstringcode callsKen Hughes
2008-05-04More compiler fixes for BLI_convertstringcode callsJoshua Leung
2008-05-04also look for ndof plugin in $HOME/.blender/plugins/3DxNdofBlender.plug, for ↵Campbell Barton
linux distro's where blender is installed in /usr/bin/blender, installing plugins in /usr/bin/plugins would not be acceptable.
2008-05-04More fixes for compilingJoshua Leung
2008-05-04Fix for compiling with FFMPEG enabled due to BLI_convertstringcodeJoshua Leung
2008-05-04Changed frame numbering to only alter hashes if they are in the filename ↵Campbell Barton
(not the directory name) to fix bug [#10566] File Open Dialog replaces '#' with '0' in directory names. removed frame numbering from BLI_convertstringcode into its own function (BLI_convertstringframe), many uses of BLI_convertstringcode were passing dummy frames values anyway. in cases where adding the current frame number to a filename is needed run BLI_convertstringframe(...) after BLI_convertstringcode(...) There are some cases Im not sure BLI_convertstringframe is needed, these have been commented as todo, but at least have the same functionality they used to.
2008-05-03own error assigning a value out of array bounds thanks Cyril Brulebois for ↵Campbell Barton
pointing this out.
2008-05-03Added missing menu entries for Preview Range toolsJoshua Leung
2008-05-03== PyNodes ==Willian Padovani Germano
More bug fixing, reports by Juho (bebraw) Vepsalainen (thanks!) #10340: a recent fix I made broke handling of pynodes with buggy scripts when loaded from a .blend. (This may have been the reason for #10341, too, caused by saving buggy typeinfo.) http://projects.blender.org/tracker/?func=detail&atid=125&aid=10340&group_id=9
2008-05-02BGE bug fix: set parent actuator change the orientation of objectBenoit Bolsee
2008-05-02Partially revert BGE bug fix #8863: don't send keyboard sensor positive ↵Benoit Bolsee
pulse on level, this would badly interfere with keyboard sensors controlling set scene/restart scene actuators. Only send negative pulse on level to stop actuators after scene suspend
2008-05-02 fix for #7314Jean-Luc Peurière
solution provided by Leandro Inocencio
2008-05-02Fix for bug #8825. find_first_point() finds first points of implicite ↵Jiri Hnidek
surface in better way now. It goes from center of every metalement to 26 directions and try to find every place, where implicite function crosses zero value. Size of step is size of polygonization cube. It can be proofed, that smaller size of step is useless.
2008-05-02Bugfix: reading in function pointers from a 64 bit .blend on 32 bitBrecht Van Lommel
gave "memory block reconstruct: end corrupt" errors. This bug was harmless, just gave ugly error messages.
2008-05-02== PyNodes ==Willian Padovani Germano
Bug #10104 reported by bebraw: missing check for how many node sockets were being created by a pynode script. Too many (more than MAX_SOCKET == 64) would crash Blender. http://projects.blender.org/tracker/?func=detail&atid=125&aid=10104&group_id=9 Notes: moved the MAX_SOCKET define from node.c to BKE_node.h so I could use it in Node.c. Also improved error reporting in pynodes when errors occur in the init stage. Thanks Juho (bebraw), Tom (assigned the bug to me) and Brecht (mentioned the MAX_SOCKET define).
2008-05-02Fix BGE bug #8863: Keyboard Sensor does not send negative pulse if key ↵Benoit Bolsee
released while scene suspended. The fix covers keyboard and mouse sensor
2008-05-02stop centering objects from moving childrenCampbell Barton
2008-05-01deleting a vertex group didn't update the buttons window when the 3d view ↵Campbell Barton
wasnt open. it also didn't update the 3dview weight paint colors. copying a group kept appending "_copy" and rose an error when the string was too long. now just add one _copy prefix and number uniquely.
2008-05-01Add library.name attribute, which returns the actual library name used by ↵Ken Hughes
blender (this may be different from the library.filename attribute).
2008-05-01fix for [#10148] 3D preview render does not update on mouse rotate and panCampbell Barton
(own fault when replacing magic numbers)
2008-05-01Surface bugfix (reported by jms on the french newsgroup)Martin Poirier
Adding Donut or Sphere surfaces with the Align to View option turned on added broken surfaces. Those two surface type were always aligned in the past and their creation method were not made to deal with this. Fixed now (that is, they are aligned to view and created correctly if the option is on). There might be other cases of this bug elsewhere.