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-16- UNUSED macro wasn't throwing an error with GCC if a var become used.Campbell Barton
- made interface, windowmanager, readfile build without unused warnings. - re-arranged CMake's source/blender build order so less changed libs are build later, eg: IK, avi
2010-10-15Fix COLLADA import after recent API cleanups by Campbell.Nathan Letwory
2010-10-15Less cryptic modifier key typesNathan Letwory
2010-10-15remove/tag unused args for view*.c, gpu*.c & image*.cCampbell Barton
2010-10-15Fix for [#23314] Comp node renaming breaks animationJanne Karhu
* Old name was already overwritten before the update function, so changed the update function to a "set" function.
2010-10-15Add comment about when prefsizx et al are used.Nathan Letwory
2010-10-15Fix for r32487: the logic was suboptimal, improved to always work correctly.Nathan Letwory
2010-10-15Partial fix for [#22867] retopo bugJanne Karhu
* More logical to restrict snapping to all visible objects instead of just selectable objects * Rest of bug added to todo-list
2010-10-15bugfix [#24264] toggle UV selection fails.Campbell Barton
was using the 4th selection flag on tri's. also some minor changes, removed unused args and corrected some comments.
2010-10-15[#24263] Hooks influence area with vertex group assigned is not effectedCampbell Barton
changes... - use vertex weights when hook indices are used. - use force as well as vertex weights (overall multiplier), before when vertex weights were used force was ignored. - rearranged the loops to be less confusing. - falloff now in its own function. - falloff curve slightly different, smoother towards the center /w 2 less sqrt calls.
2010-10-15Fix for [#21822] Unusual material slot behaviour, edit v object mode, ↵Janne Karhu
cascade, SVN 27833 * Disabled removing material slots in edit mode and added back error message from 2.49.
2010-10-15Fix [#24260] Window geometry command-line option doesn't workNathan Letwory
Override the first window size with --window-geometry if given. startup.blend would otherwise open as lastly saved.
2010-10-15fix for own recent unused commit that broke with OpenMP enabled.Campbell Barton
also build ./source/ first with cmake since testing new changes are most likely to be made here.
2010-10-15Ctrl+Click extrude, project the source verts when projection and rotating ↵Campbell Barton
the source are enabled (better for retopo workflow).
2010-10-15replace SIDE_OF_LINE macro with line_point_side_v2() inline function.Campbell Barton
made a number of files build without unused warnings.
2010-10-15bugfix [#24247] Duplicating a Composite Group Node no User Count IconCampbell Barton
duplicating nodes wasnt changing the usercount of the referenced ID but file loading deleting was. also removed some unused args.
2010-10-15bugfix [#24256] Wrong bone subdivision number in tweak panel.Campbell Barton
there were 3 operators for armature subdivision, now only have 1 (as with mesh). + remove unused warnigns.
2010-10-15enable warning for unused args with gcc: -Wunused-parameterCampbell Barton
- for cmake only apply this to source/blender, will apply globally later. - ./extern/ ./source/blender/makesrna/intern/ ignore this.
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