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
2010-04-13Fix for [#21983] Entering Particle Edit mode crashJanne Karhu
2010-04-13MSVC projectfiles updateAndrea Weikert
* big modifier refactor * added include path to pthreads for BL_gpu.vcproj and blender.vcproj - hopefully only temporarily. Is needed because BLI_threads.h includes <pthreads.h> header!!!
2010-04-13Template for 'Running Jobs" now shows Composite thread, for node space.Ton Roosendaal
2010-04-13Adding 'running jobs' button in node header.Ton Roosendaal
2010-04-13fixed make local bug; it was only looking at editable objects, which of ↵Joseph Eagar
course lib objects are not.
2010-04-13prevent images from freeing gpu buffers if not run within the main thread, ↵Joseph Eagar
instead they are queued to be freed the next time GPU_image_free() is run from the main thread.
2010-04-13Fix for hue correct node, was clamping value of hsv unnecessarily.Matt Ebb
2010-04-13Todo #21831: Deform modifier is applied to base mesh instead ofSergey Sharybin
multires modifier if both are in the stack (patch #21965) This patch also removes limitation of multires reshaping when destination object has got modifiers after multires modifier.
2010-04-13Fix for including docstrings of static methods.Tamito Kajiyama
2010-04-13BGE: stubs update (bplayer)Dalai Felinto
2010-04-13[#21993] Edge Slide operator should disable projection snappingMartin Poirier
Adding proper flag. If there are others like that, other people can fix them too, it's easy peasy.
2010-04-13modifier include cleanup, this might need fixes on other systems but hard to ↵Campbell Barton
avoid. also removed unused stuff from cmake modifier file
2010-04-12Button panels need to get handlers and keymaps... but for now sneakedTon Roosendaal
in a handy key : Akey in buttons window on a panel will open or close it.
2010-04-12Subframe calculations for particles, original patch by Raul Fernandez HernandezJanne Karhu
* Increasing subframe count increases stability for SPH fluid and Newtonian particles * Also small tweaks into physics ui panel to better fit new subframes value * This commit also fixes the moving fluid emitter problem as described by Raul in the mailinglist
2010-04-12Rearrange the includes a bit.Guillermo S. Romero
2010-04-12Merge -c 28147 from COLLADA branch into trunk.Arystanbek Dyussenov
2010-04-12Fix [#21953] Texture space size seems not updated constantlyMatt Ebb
2010-04-12BGE: TexFace panel (from patch #21780 from Mitchell Stokes + some changes)Dalai Felinto
the patch exposes a rna property to get the active edit mode face. This is a hack. However it's a small patch (a.k.a. easy to revert later if needed). The official plan is to wait for BMesh before tackling it properly. Nevertheless TexFace panel is really important for BGE. Missing: operators to copy the current parameters to other selected faces. * note: what I changed from the original patch is the UI script. The pool wasn't defined and it was using tabs.
2010-04-12Work around to keep compiler going with zlib.h:Guillermo S. Romero
In file included from MOD_fluidsim_util.c:62: /usr/include/zlib.h:1440: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘gzseek64’ TODO: string.h appears twice and "" vs <> seems arbitrary.
2010-04-12Fix external image editor (needs to be a list, otherwise extends adds each ↵Martin Poirier
character as a list item). Note: The default value ("start") on windows doesn't work. Start is not a real program.
2010-04-12Fix [#21972] Inclusive selection doesn't work for FacesMatt Ebb
2010-04-12Fix many compile errors in fluidsim modifier.Matt Ebb
Please enable+compile before committing!
2010-04-12Modifiers moved, adjust accordingly.Guillermo S. Romero
2010-04-12more header cleanupsCampbell Barton
2010-04-12Fix [#21982] Operator bug: Edit modeMatt Ebb
Hid the 'Enter Edit Mode' property when adding an object, not necessary anyway.
2010-04-12- use more inline math funcitons where possibleCampbell Barton
- swapped in less verbose math functons - modifier include cleanup
2010-04-12Patch from Xavier Thomas, tweaks/fixes to FFMPEG YUV conversion codeMatt Ebb
2010-04-12SVN maintenance.Guillermo S. Romero
2010-04-12booleanops.c was moved to MOD_boolean_util.c, remove empty file.Campbell Barton
2010-04-12[#14437] Modifier Stack RefactorCampbell Barton
patch by Ben Batt (artificer) Updated patch for 6 or so modifiers added since the patch was written. - tested with CMake and SCons - fixed one error were flags were being added to the fluids type. - remove BKE_simple_deform.h, simple_deform.c, move functions into MOD_simpledeform.c since there were problems with circular deps. - moved some fluid and boolean functions used by modifiers too.
2010-04-12Copy Constraints OperatorDalai Felinto
the C code to copy the constraint was already there (same as 2.49) so this operator simply exposes it. I'm using the name Copy Constraints to Others based on what we have in material operators (e.g. Copy Material to Others). If we bring back the whole Copy Attributes menu (old Ctrl+C) having the individual operators is still important for scripts. Nevertheless I'm not comfortable with the name (to Others sounds unnecessary verbose) but so far having the functionality back is important (request from Caju Studio). I'll be glad to make any change later if needed. (no shortcut for that, to use it go to userpref->keymap and assign a shortcut for this operator or add it to the toolshelf)
2010-04-11== Sequencer ==Peter Schlaile
Made custom proxy files a lot more sensible to select (upgraded to filepath get/setters) Changed semantics, since custom files don't make much sense without custom directories...
2010-04-11== Sequencer ==Peter Schlaile
Proxy render size settings is now back. (Maybe still in need of some sensible icons, though...) Also: waveform color seperation works in N-keys dialog again.
2010-04-11SVN maintenance.Guillermo S. Romero
2010-04-11Specific operator for Push/Pull (no need to go through the generic operator ↵Martin Poirier
and it makes it available in the operator search)
2010-04-11PyAPICampbell Barton
- added new mathutils.Color() type, use with rna so we can do for eg: material.diffuse_color.r = 1.0 # also has hsv access material.diffuse_color.s = 0.6 - made Mathutils and Geometry module names lowercase.
2010-04-11mindrones reports cmake 2.4 doesnt work anymore, since 2.8 is current, ↵Campbell Barton
bumping the minimum version requiired
2010-04-11py api file renameCampbell Barton
- prefix mathutils api. - 2 blf.c files (annoying for debugging) - py api docs ignore keying sets as with operators.
2010-04-11Long outstanding panel feature: press ENTER with mouse on header willTon Roosendaal
open/close it. Will allow quicker inspections without mouse strains.
2010-04-11Cocoa fix [#21866] : force mouse move event to be sent upon cursor position ↵Damien Plisson
set request
2010-04-11Zoom in/out for Composite Node backdrop is (temp?) Vkey and SHIFT+V.Ton Roosendaal
Scrollwheel is being fully swallowed there now...
2010-04-11python function to remove drivers.Campbell Barton
eg: bpy.context.object.driver_remove("location") ANIM_remove_driver now accepts -1 as an index for removing all drivers from one path.
2010-04-11BGE fix #20456 - 2.5: mouse position problem (offseted by 1 vertically)Dalai Felinto
In Blender 2.49 the win width and height were been calculated including an extra pixel (e.g. a fullscreen editor would be (width + 1) by (height + 1) ) In opposite to that, Blender 2.5 window/editor code were fixed to have the exact width,height size. So although the BGE canvas code was still the same as 2.49 it was producing a wrong result. I'm also adding some commentaries in the setViewport code. BGE is setting the viewports 1 pixel larger. the setViewport command is been used as if one should pass (minx, miny, width, height), while it should be (minx, miny, maxx, maxy). I will take care of that later, if any one has extra comments on that, please let me know.
2010-04-11Solidify ModifierCampbell Barton
- vertex normals were not being flipped (though faces are) - rim faces didnt influence edge vertex normals apply solidify on top of solidify modifier now works correctly
2010-04-10bpy.app was writing members more then once.Campbell Barton
2010-04-10rna/py/reference doc improvements..Campbell Barton
- vectors now respect min/max settings. - keyframing and adding drivers raises an error in an index is set on a non array, keyframing raises an error if it fails. reference docs... - added docstrings for remaining python bpy_struct functions - added fake class for docs, bpy_struct, which is the base class of everything in bpy.types - improved inherictance references for struct classes, include bpy_struct members.
2010-04-10Removed duplicated definitions of verticesBegin(), verticesEnd(),Tamito Kajiyama
pointsBegin(), and pointsEnd(). All these methods are inherited from the Interface1D class.
2010-04-10Fixed a TabError: inconsistent use of tabs and spaces in indentation.Tamito Kajiyama
2010-04-10QTKit (OSX 64bit): Add audio export to QuicktimeDamien Plisson
Supports default OSX codecs : Linear PCM, Apple Lossless and AAC Note that AAC codec doesn't support sample rates above 48kHz. If a python/rna guru knows how to easily enforce this limit, he is welcome! Enjoy making Quicktime movies now with audio!
2010-04-10rna reference docs, list inherited properties and functions at the bottom of ↵Campbell Barton
each type.