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-15tag UNUSED() for operator exec() and invoke() functions.Campbell Barton
2010-10-15Fix #24257: Last shape key not applied as Basis shape.Sergey Sharybin
2010-10-14darwin Makefiles: copy release scripts and python modules to where blender ↵Stefan Gartner
looks for them, i.e. blender.app/Content/MacOS/$(VERSION) instead if blender.app/Content/MacOS/.blender
2010-10-14bugfix [#23070] some shortcuts cannot be saved in a usual wayCampbell Barton
2010-10-14fix unused args warnings and remove some unused args.Campbell Barton
2010-10-14remove unused args or tag as unused for image and screen editors, ↵Campbell Barton
uiItemEnumR_string was ignoring name and icon args.
2010-10-14fix for crash in own recent color picker commit, store the hsv color inCampbell Barton
block->_hsv, which is only accessed via a function so it can be moved to a better place later. also fix cineon define for scons/cmake.
2010-10-14fix potential crasher: malloc->callocNathan Letwory
2010-10-14Fix [#24201] COLLADA Exporter: Light source energy incorrectNathan Letwory
lamp->energy and lamp->distance are now taken in account by calculating the constant, linear and quadratic attenuations based on this. The import tries to do the reverse. Note: this will work only properly for lamps that have att1 and att2 set to 1.0 or 0.0, other lamptypes won't import correctly again.
2010-10-14Move MAXFLOAT to BLI_math_base.hNathan Letwory
2010-10-14Update outliner when vertex group was added/removedSergey Sharybin
2010-10-14Fix for [#24237] Hair dynamics with zero particles generates a segmentation ↵Janne Karhu
fault
2010-10-14hex color input wasnt clamped.Campbell Barton
2010-10-14add UNUSED() to modifiers, also removed some unused args.Campbell Barton
2010-10-14bugfix [#24238] "M" (move) selects wrong action when with armatureCampbell Barton
2010-10-14bugfix [#21959] 'Apply rotation' to scaled object behaves wrongCampbell Barton
2010-10-14remove unused args in draw*.c and some in view*.c, tag some as UNUSED().Campbell Barton
2010-10-14bugfix [#22161] Drawing of custom shapes in bonesCampbell Barton
2010-10-14use UNUSED() macro for the console space + minor changes to args.Campbell Barton
2010-10-14UNUSED() macro so -Wunused-parameter can be used with GCC without so many ↵Campbell Barton
warnings. applied to python api and exotic.c, removed some args being passed down which were not needed. keyword args for new mathutils types were being ignored when they should raise an error.
2010-10-13Fix #24234: Object deletion doesn't take into account its users (causes ↵Sergey Sharybin
segfault) Clear SELECT flag when deleting object -- object could be used in other scenes, and some stuff (like translation) would be confused due to relations
2010-10-13== docs ==Luca Bonavita
- moved files in proper directories and adapted paths where needed - deleted doc/oldbugs.txt (asked confirmation to jesterking a week ago in irc) - still working on doxygen files, for now I'll leave them in doc/ - NOTE: while checking if other files were referring to these files, I noted that "GPL-license.txt" is also used in the files below: - release/windows/installer/00.sconsblender.nsi - release/windows/specific.sh but these files should't be affected by this commit, but please check :)
2010-10-13use PyC_UnicodeFromByte for bpy.app.tempdir incase of non utf-8 filepathCampbell Barton
2010-10-13fix for remaining glitch in square color picker, the backdrop could change ↵Campbell Barton
color because rgb_to_hsv() was used rather then rgb_to_hsv_compat()
2010-10-13bugfix [#23355] Square Color picker moving by itself and locking upCampbell Barton
2010-10-13Fix for [#24208] ObjectId information is wrong when read from multilayer exrJanne Karhu
* non-rgba passes shouldn't use color correction
2010-10-13Fix for [#24205] Multilayer EXR files used as input sequence are displayed ↵Janne Karhu
incorrectly * Image buffer profile wasn't set to linear rgb for multilayer image sequences
2010-10-13== python api doc ==Luca Bonavita
First commit to make some structure in doc/ directory. - moved source/blender/python/doc -> doc/python_api - moved source/gameengine/PyDoc/*.rst -> doc/python_api/rst - modified accordingly sphinx_doc_gen.py and sphinx_doc_gen.sh (later on I'll try alternative/ scripts by neXyon as promised :) - source/gameengine/PyDoc/ is still there because contains epydoc stuff for the bge, will ask more and look into it later
2010-10-13bugfix [#23150] Creating Vertex with CTRL-LMB not snappingCampbell Barton
- Added EM_project_snap_verts so other functions can re-use this, similar to old retopo_do_all(). - Changed how the normal for selected geometry is calculated, was accumulating half selected edge's into normals which was OK with even surrounding geometry but could skew too easily if the surroundings were not so even. Now use the 2D screen space selected edge vector to calculate the normals in relation to the target mouse position. - Option to rotate initial selection, gives better results in some cases. (Ctrl+Shift+Click to disable) http://wiki.blender.org/index.php/File:ClickExtrudeFix.png
2010-10-13Text spaceSergey Sharybin
========== Main changes: - lines could be partially shown when they starts somewhere behind the upper boundary of area but because of word-wrapping some part of line will be show - fixed caret navigatiog in area when tabs aren't replaced by spaces - highlight the whole current line not only it's wrapped segment with caret - when you're in replace mode cursor would be as long as the tab's width if it's under tab symbol This fixes: #22399: Text Editor: word-wrapped lines prevent navigating through text with up-arrow. #21163: Text editor scrollbar problem with word wrap
2010-10-13bugfix [#24210] Tiled textures can cause corruption of entire UICampbell Barton
2010-10-13bugfix [#24030] Grease Pencil + Driver keysCampbell Barton
2010-10-13[#24171] Tab key no longer responds from UV / Image EditorCampbell Barton
2010-10-13[#24128] Rigid Body Joint Constraint min/max limits [patch]Campbell Barton
from Dan Eicher (dna)
2010-10-13re-enable fix from r32330 but without the alt key check because this can be ↵Campbell Barton
used for input.
2010-10-13bugfix [#24231] outliner not refreshed correctlyCampbell Barton
also made world changes only redraw the 3d view if 'Render Only' option is set.
2010-10-13patch [#24221] Creating graph from armature doesn't work with unsaved .blend ↵Campbell Barton
files (with fix). from Sergej Reich (sergof) Made some corrections to the patch as well as using bpy.app.tempdir with tempfile python module.
2010-10-13python api:Campbell Barton
- bpy.app.debug can now be set, removed bpy.data.debug (since this is not blendfile data) - added bpy.app.tempdir, this is needed because the userpref temp dir isn't always set, $TEMP may be used instead and scripts need temp dir access.
2010-10-13bugfix [#23899] renderlayers are not working properlyCampbell Barton
was missing button for single layer rendering. also renamed Object.show_shape_key to Object.show_only_shape_key since this pin's the shape key so others are disabled.
2010-10-13bugfix [#22407] Object level proxies ignore transform of originalCampbell Barton
2010-10-12Fix for [#24169] Sequencer segfaults often when scrubbing to frame zeroJanne Karhu
2010-10-12bugfix [#24144] Small problem with texture (r32316)Campbell Barton
an extra pixel was being drawn on a tiled image texture.
2010-10-12bugfix [#23191] Ctrl-LMB quick extrude problem with non-perpendicular ↵Campbell Barton
edges/faces. also remove is_mat4_flipped() from transform_manipulator.c.
2010-10-12[#24226] small inconsistency in user preferencesCampbell Barton
also made setting the temp dir more consistent, slash is always added on the end and if the user-pref dir is invalid its not used.
2010-10-12bugfix [#24225] Blur Node ignores gamma option when size has input.Campbell Barton
2010-10-12BGE Bugfix for [#22371] Alpha Planes affecting 2DFiltersDalai Felinto
disabling GL_Blend at the 2dfilter drawing routine makes the trick here. there is not a clear function invoked before the 2dfilter drawing routine. Therefore I found better to disable alpha blending while we are setting the other OpenGl attributes/matrixes. We are not re-enabling GL_BLEND after we disable it. We could and it wouldn't hurt but I can't see why to. open to suggestions here of course.
2010-10-12[#23709] Blur node on Flat blurs even at 0 by 0 pixel spreadCampbell Barton
skip blur x/y when either is set to zero.
2010-10-11Fix #24215: Bad shorcut indication for Bezier curve handles.Sergey Sharybin
All existing handle type manipulation hotkeys replaced with unified V-menu where you could directoly set type you need.
2010-10-11make file update for recent bge.render.makeScreenshot commitDalai Felinto
2010-10-11COLLADANathan Letwory
Export unit system and scale instead of hard-coded 1 decimeter.