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-08-03remove commented scons lines from cmake files, fixed use of pointer poll ↵Campbell Barton
function for ID drobdowns (currently unused)
2010-08-03pointer poll functions for object's, mainly for modifiers, constraints.Campbell Barton
Lattice modifier only shows lattices types, Shrink wrap only meshes etc.
2010-08-03rna pointer poll function, not used yet.Campbell Barton
2010-08-03py/rna update, reload works again.Campbell Barton
- fix for reload (f8) crashing, missing incref when creating the script namespace. - store the module names rather then the modules for reloading incase the modules get out of date.
2010-08-03set origin was setting surfaces as 2D curves, added dupli-group support ↵Campbell Barton
using the dupli's offset value.
2010-08-02added capabilty to limit color spill by an input maskRobert Holcomb
2010-08-02bugfix [#23151] UV Project not update in realtime until you save the file ↵Campbell Barton
and reopen it.
2010-08-02patch [#23054] Fix for bug #22725 "text editor doent scroll with cursor"Campbell Barton
fixes [#22725] text editor doent scroll with cursor from Justin Dailey (dail)
2010-08-02SConsCampbell Barton
- remove scons option WITH_BF_FHS, its not needed anymore. - comment WITH_BF_DOCS, was using epydocs which we dont use now. - blenderlite target was broken, always using openmp. - building without python wasnt working. - fixed some warnings.
2010-08-02cmakeCampbell Barton
- more strict warnings for gcc/unix, still <50 for a clean build. - install files to /usr/local/share/blender/2.53 rather then /usr/local/share/blender/.blender
2010-08-02minor changes to Martni's commit 30961Campbell Barton
- removed the immediate option from C/api and now store in python only, when python loads modules it sets it to False. - unloading a module would clear the entire TypeMap for all modules, only remove the module types that is being unloaded. - added some checks for bad class registering, report errors rather then crashing.
2010-08-02RNA Types metaclass registrationMartin Poirier
See mailing list posts for details [1][2][3] Addons still need to be fixed; Campbell said he'd do it today. See any of the py files (outside netrender) in this commit for how to do it (it's rather simple). [1] http://lists.blender.org/pipermail/bf-committers/2010-February/026328.html [2] http://lists.blender.org/pipermail/bf-committers/2010-August/028311.html [3] http://lists.blender.org/pipermail/bf-committers/2010-August/028321.html
2010-08-02python mathutils changeCampbell Barton
quat * quat was returning the dot product (a float), rather then the cross product. Use BLI_math's mul_qt_qtqt() function.
2010-08-02patch [#23144] bpy.Image.gl_load() -- fixCampbell Barton
from Dan Eicher (dna) - image.gl_load() was using GL_UNSIGNED_INT rather then GL_UNSIGNED_BYTE channel type. - changed image.gl_load() to use the image clamp settings (patch had this as an extra argument).
2010-08-02Fix preview render crash after recent G.main changes.Brecht Van Lommel
2010-08-01Fix for the fix.Thomas Dinges
2010-08-01Compile fix for recent changes. Function needed 1 more argument. Thomas Dinges
Chingiz can you please check?
2010-08-01bugfix [#23134] uv project modifier not working.Campbell Barton
own recent commit introduced this bug. would like to have this working correctly but for now commenting.
2010-08-01set blender binary name for pythonCampbell Barton
2010-08-01Smoke:Daniel Genrich
- Bugfix for not cleared smoke sim when doing alt-a and waiting for 2 sim cycles to complete
2010-08-01- new __main__ module wasnt de-referenced after adding into sys.modulesCampbell Barton
- made int buttons round floats better 10.6 --> 11
2010-08-01Fix for crash due to last commit.Brecht Van Lommel
2010-08-01bugfix [#23129] alt-p in the texteditor doesn't work anymoreCampbell Barton
recent commit cleared the __main__ namespace once a script finished which meant classes defined there would loose their namespace. now inset a new __main__ module into sys.modules for every script that runs, any classes that are registered will hold a reference to that modules namespace.
2010-08-012.5: more G.main changes.Brecht Van Lommel
2010-08-012.5: code changes to reduce the usage of G.main and pass it alongBrecht Van Lommel
or get it from the context instead.
2010-08-01Smoke:Daniel Genrich
- Bugfix for display problems in shaded view: Reverting to wire display mode for domain.
2010-08-01mistake in recent commit allowd bpy.types.Scene() which would then crash ↵Campbell Barton
blender (thanks for spotting Luca).
2010-08-01bugfix'sCampbell Barton
[#23108] bpy.ops.object.origin_set(type='GEOMETRY_ORIGIN') dosen't work in console [#23115] Crash when moving armature origin - setting the armature in editmode would leave editdata in some cases. - transforming selected linked objects to account for the movement of the obdata was only done for meshes, now do for curves and text3d. - added utility functions for getting curve & mesh bounds. - text3d moving center wasn't working at all. - changed drawobject.c to use BLI_math funcs in more places. - remove some unused code from operator object.origin_set.
2010-08-01fix for un-initialized layer (only bits between 1 and 20 were initialized)Campbell Barton
2010-08-01- font object x/yoffset was making text box's wrap text incorrectly.Campbell Barton
- draw text boxes with the offset applied. (abologies for making font.c even more confusing)
2010-07-31Separate proportional edit setting between edit and object mode. They are ↵Martin Poirier
now used and toggled independently.
2010-07-31use more BLI math funcs (no functional changes)Campbell Barton
2010-07-31recent commit to make color balance work like the sequencer, I forgot that ↵Campbell Barton
the gamma was inverted. fixed.
2010-07-31- add back prefix for ID lists (LF) for linked and fake user for search fields.Campbell Barton
- remove debug print for left/right name flipping & commented test from the sequencer.
2010-07-31Change compositor color balance to match the sequencer exactly, for this to ↵Campbell Barton
work linear/srgb conversions need to be done which that nice since it has to convert from/to the color spaces each time, after quite a lot of testing I think its the best way to go. The problem was that typical lift values (0.5 - 1.5, in our case ) would over saturate shadows so that even minor adjustments would give unusable results. tweaking the input lift to compensate for this helped with the shadows but would loose the color adjustments for the mid-tones.
2010-07-30Properties Window:Thomas Dinges
* Deleted space_buttons.py file as I doubt that these buttons will be done in python. File was not used anyway. * Deleted some ifdef checks from space_buttons.c for the py header.
2010-07-30Logic Editor:Thomas Dinges
*Removed the old header menu code, replacing with Python menus.
2010-07-30Fix #23086: crash reading 1bit tiff files.Brecht Van Lommel
2010-07-30bugfix [#23105] Scene strips renders out darker (no gamma corection?)Campbell Barton
2010-07-302.5: remove vertex normal flip option, this is more harmful than helpfulBrecht Van Lommel
in many cases, and also gave incorrect rim lighting.
2010-07-30bugfix [#23106] Blender crashes (segfault) when scene strip file is missingCampbell Barton
2010-07-30bugfix [#23104] Crash when console: <SpaceView3D object>.local_view. ↵Campbell Barton
autocomplete
2010-07-30Fix #23103:Brecht Van Lommel
* missing glsl update when changing color management setting * disable glsl lamps only when disabling them for render
2010-07-30Revert [#23093] Curve -> CurveMapping in brush. Don't use camel case forBrecht Van Lommel
UI text, and this makes it inconsistent with the property name too, Curve is just fine...
2010-07-30bugfix [#20038] Vertex path selection not working in Vertex/Face modeCampbell Barton
- disable this tool if edge mode isnt enabled using its poll function. Also fixed a bug where it would de-select the last active edge. - made view3d grid drawing use GL_LINES's for less context switching.
2010-07-30bugfix [#22660] Text Boxes properties are not animateable.Campbell Barton
suggestion [#23093] Curve -> CurveMapping in brush...
2010-07-30bugfix [#22859] Multi-user images cant be made into single user in texure panel.Campbell Barton
turns out this isnt exactly a bug since support was never written for this but may as well support it. now rna/py can do image.copy() too.
2010-07-30Fixing a typo in the BGE Python API:Mitchell Stokes
BL_ArmatureChannel.rotaion_euler -> BL_ArmatureChannel.rotation_euler Making the docs match the code: BL_ArmatureChannel.rotation -> BL_ArmatureChannel.rotation_quaternion BL_ArmatureChannel.euler_rotation -> BL_ArmatureChannel.rotation_euler
2010-07-303 duplicate functions: bone_flip_name() object_flip_name() flip_side_name()Campbell Barton
removed object_flip_name() & bone_flip_name(), use flip_side_name()
2010-07-30patch [#23060] ColorRamp python access functionsCampbell Barton
from Dan Eicher (dna) elem = color_ramp.elements.new(position=0.3) color_ramp.elements.remove(elem) - Modified the patch to make generic functions for adding and removing (inline code was in 3 different places)