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
2010-10-05A bit of bge.events work:Mitchell Stokes
* A few places in the bge.events docs mentioned bge.keys, when it should have been bge.events * Created two aliases to bge.events.RETKEY: ENTERKEY and RETURNKEY * ENTERKEY and RETURNKEY have been added to the docs and RETKEY marked as deprecated * Added an example of using bge.logic.keyboard to the bge.events docs
2010-10-05SVN maintenance.Guillermo S. Romero
2010-10-05Reorganisation of COLLADA import code. Classes have been split into their ↵Nathan Letwory
own files. No functional changes. Where necessary extern "C" {} blocks have been added.
2010-10-05Update stubs for recent changes (BKE_utildefines.h and header printing).Nathan Letwory
2010-10-04bugfix [#24133] r32303, Mirror Modifier + EditMode + VBO's Problem.Campbell Barton
drawing the triangle arrays were only broken up by hidden faces, but switches in material were ignored. now check for materual context changes.
2010-10-04[#22825] Copy Scenes with Audio Strip Crash.Campbell Barton
2010-10-04fix for copy in the console (wasnt taking the prompt into account)Campbell Barton
2010-10-04Recalc knots when toggling nurb cyclic flagsSergey Sharybin
2010-10-04Fix for [#24118] Hair particles can not be editedJanne Karhu
* Own mistake from a previous fix.
2010-10-04COLLADA exporter fix: do not create a duplicate <polylist> if an object has ↵Arystanbek Dyussenov
NULL materials linked along with normal materials.
2010-10-04- use own string conversion function over PyUnicode_FromString when ↵Campbell Barton
converting the argv - report errors when files dont load when given from the command line but not running in background mode.
2010-10-04fix for building over samba /w cmake+mingwCampbell Barton
2010-10-04typo in function prefix.Campbell Barton
2010-10-04changes to path searchingCampbell Barton
- don't search CWD/foldername anymore, only CWD/2.54/foldername, since this is the new default build systems use. - local source paths (./release/scripts) are now treated as system path, otherwise when this is used you cant test ~/.blender/2.54/scripts at the same time.
2010-10-04bugfix [#24087] Blender can not install add-ons unless running with root ↵Campbell Barton
priviledges now addon path is created using the same path functions and selecting where to save the startup.blend also made some minor changes to path handling funcs.
2010-10-03Fix attribution, as noticed by Dalai Felinto.Guillermo S. Romero
2010-10-03Add include directive so buildinfo compilation can find defines, see r32271.Guillermo S. Romero
2010-10-03build systems have been updated, remove use of ~/.blender/ directly, ↵Campbell Barton
~/.blender/*version*/ instead.
2010-10-03added len_squared_v2v2, use instead of len_v3v3 for font handle tests, also ↵Campbell Barton
fixed some warnings.
2010-10-03- rna bugfix where ints were not clamped and would overflow, now raise an ↵Campbell Barton
error and print valid range. - fixed WM_OT_context_cycle_int was causing problems with int overflow, now it cycles properly. - rename QUOTE macro to STRINGIFY_ARG, and added STRINGIFY, which is used more often since it gives the value as a string.
2010-10-03Making the docs for bge.types.KX_SCA_AddObjectActuator.instantAddObject() ↵Mitchell Stokes
more clear. Thanks to delaney for pointing this out.
2010-10-03python console prompt + edit line is how selectable.Campbell Barton
2010-10-03py/rna access to setting the header text - can be used in modal operators.Campbell Barton
eg: context.area.header_text_set("Some Text") included example in the view3d modal operator template.
2010-10-03Redraw object buttons on next/previous frame in 3dview, otherwise for instanceNathan Letwory
Transform panel won't get updated for keyed objects.
2010-10-02set the view3d used layer to be an unsigned int, mask out localview layers ↵Campbell Barton
to avoid flag mismatch when checking if it changed.
2010-10-02for view layer calculation, only break early if all layers are set, was ↵Campbell Barton
breaking if any layer was set.
2010-10-02Fix #22348: disabled image editor curves on non-float images, this neverBrecht Van Lommel
worked correct, only got enabled accidentally in 2.5 port.
2010-10-02make fly mode border draw into a area drawing callback rather then using a ↵Campbell Barton
flag (no functional change).
2010-10-02move window matrix translation into its own function. (no functional changes)Campbell Barton
2010-10-02Anti-Aliasing support for opengl render (belated durian todo),Campbell Barton
Simple FSA accumulation method means no fancy opengl features needed. Fixed at 5 samples per pixel for now.
2010-10-02Fix #23785: in the game engine, if an object had an armature modifier + anotherBrecht Van Lommel
modifier, it would apply the armature deformation twice.
2010-10-02Small CMAKE Fix, discovered by freakabcd in IRC.Thomas Dinges
2010-10-02Fix for [#24051] Scrubbing Timeline in VSE with Jack Audio doesn't scrub ↵Joerg Mueller
just plays the audio track There were actually two bugs, the one reported and that the Sync Callback never has been called after someone had to add #ifdefs around the call without checking that the build systems are even configured to add the needed definition, am I right Cam? :P
2010-10-02Fix for last fix, should have checked it actually worked :)Brecht Van Lommel
2010-10-02Fix #24077: convert operator not updating outliner. Note about notifiers:Brecht Van Lommel
NC_SCENE|NC_OBJECT does not work, you can only have one NC/ND/NA in a single notifier, if you need to do both, use two notifiers.
2010-10-02Most likely fix for #23420: viewer node: loses viewer nodes forever.Brecht Van Lommel
Related to another bug fixed recently, both viewer + split viewer could be set to output to the same image. That also could make node tree localization/sync go wrong.
2010-10-02Fix #24095: user preferences theme colors didn't match exactly with whatBrecht Van Lommel
was drawn. Problem was that these were not set to be in gamma space. Also needed to fix automatic 0..255 to 0..1 range conversion for PROP_COLOR_GAMMA, was only working for PROP_COLOR.
2010-10-02Fix #24103: copy logic bricks to objects with the same data didn't work.Brecht Van Lommel
Don't know why this check was here, it wasn't there in 2.49 and it's not necessary.
2010-10-02Fix #24096: shift+A add menu not working in pose mode. Useful to have itBrecht Van Lommel
here too for rigging.
2010-10-02Fix warning in collada operator after a recent commit.Brecht Van Lommel
2010-10-02Fix #24098: new file and load factory settings sharing same hotkey.Brecht Van Lommel
Made these separate operators now, less confusing.
2010-10-02Fix #24094: Multiresolution sculpt mode undo crashSergey Sharybin
2010-10-02Fix #24097: halfway shadow buffer rendererd incorrectly with spot halo. ThisBrecht Van Lommel
trick can't work with any volumetric effect, so disabled it in case halo is enabled.
2010-10-02Patch [#23589] Use Author field from User Preferences for COLLADA export.Nathan Letwory
Submitted by Imran Syed. When U.author is set, it'll be used instead of default "Blender User".
2010-10-02Fix #23629: Layers doesn't sign there are objects on them, only if the ↵Sergey Sharybin
object is selected Also fixed layer buttons update when changing scene/screen
2010-10-02- spec hardness was missing redraw updateCampbell Barton
- missed rna rename in image ui - use BLI_math functions in gpu_draw.c (no functional changes)
2010-10-02Fix #23932: compositing nodes with viewer and split viewer node couldBrecht Van Lommel
crash, with two threads writing to the same image.
2010-10-01Fix [#21084] Collada messing up geometry on import and renaming uvlayersNathan Letwory
Reported by Michael Williamson Add support to write the uvlayer name as found in <bind_vertex_input> semantic attribute (Blender exports in this one too, so reimport goes ok now). I have created a patch for OpenCOLLADA to be applied against r769, which is needed for this fix to work: http://code.google.com/p/opencollada/issues/detail?id=117 The Windows OpenCOLLADA updated builds (r769+patches) will be committed after this. Note: This means that linux and osx users will have to patch OpenCOLLADA themselves, until it's committed (or in case of OSX the libs updated in lib/darwinXXX).
2010-10-01stop dna from parsing structs that aren't used needed.Campbell Barton
2010-10-01fix [#24083] Crash when opening a certain fileCampbell Barton
own error in recent commit.