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-10-19svn merge https://svn.blender.org/svnroot/bf-blender/trunk/blender -r32300:32571soc-2010-nicolasbishopNicholas Bishop
2010-10-18[#21475] Moving a Transform strip upwards moves its animation sidewardsJanne Karhu
* F-Curve translation is now calculated from the difference of the strips original & resulting start time, instead of using the transform data directly.
2010-10-18Camera object drawing now shows shift (not especially important but the ↵Campbell Barton
tracker is being unusably slow)
2010-10-18remove G.sce, use G.main->name instead.Campbell Barton
Both stored the filename of the blend file, but G.sce stored the last opened file. This will make blender act differently in some cases since a relative path to the last opened file will no longer resolve (which is correct IMHO since that file isnt open and the path might not even be valid anymore). Tested linking with durian files and rendering to relative paths when no files is loaded however we may need to have some operators give an error if they are used on the default startup.blend.
2010-10-18svn merge https://svn.blender.org/svnroot/bf-blender/trunk/blender -r32200:32300Nicholas Bishop
2010-10-18svn merge https://svn.blender.org/svnroot/bf-blender/trunk/blender -r31926:32200Nicholas Bishop
2010-10-18bugfix [#24302] Ctrl+Click Extrude gets old mouse eventsCampbell Barton
double click didnt check mouse distance moved so you could click twice in different areas of the screen very fast and generate a double click event which had old mouse coords copied into it but was sent to an operator set to run on single click (because the double click wasnt handled). Also added MEM_name_ptr function (included in debug mode only), prints the name of allocated memory. used for debugging where events came from.
2010-10-18Fix [#24288] Mesh Grid pointing towards the floor when first createdNathan Letwory
Reported by Terry Wallwork
2010-10-17Bugfix #24296: AutoIK interactive chain length adjustment feature is missingJoshua Leung
In 2.49, you could adjust the maximum length of Auto-IK Chains by using scrollwheel up/down or page up/down while moving Auto-IK bones. Now this is possible again with those hotkeys, but you need to hold SHIFT to get this to work, otherwise we get a conflict with the hotkeys for proportional edit nowadays. Was broken when transform tools switched from using hardcoded key mappings to using a modal keymap.
2010-10-17Partial fix for #22409: Locked axis + auto IK = badJoshua Leung
The "root" bone in an Auto-IK chain was never added properly if it didn't have a parent that it was connected to. This meant that if it had axis-locking (using transform locks), these would not get converted to temporary IK-locks. This also affects 2.49 The second part of the bug report though, is something more ingrained in the IK-solver internals (numeric error, which means that even locked axes aren't exactly untouched).
2010-10-17Reverting Cam's audio code changes from revision 32517. Part of it has been ↵Joerg Mueller
reverted by Nathan already. Cam: next time please check, why a parameter is unused before you remove it!
2010-10-17re-arrange icon_draw_rect, also use an assert() for odd icon sizes. this can ↵Campbell Barton
happen in some cases but hard to find when.
2010-10-17fix for bad use of UNUSED() with win32 & some other minor error checks.Campbell Barton
2010-10-17- fixed remaining unused warnings.Campbell Barton
- omit render code from this warning (cmake only), until render branch is merged. - moved -Wunused-parameter warning to apply to all C code in blender (not just ./source/blender), (cmake only).
2010-10-16Declaration before any statements. Doesn't GCC warn about this?Nathan Letwory
2010-10-16most unused arg warnings corrected.Campbell Barton
- removed deprecated bitmap arg from IMB_allocImBuf (plugins will need updating). - mostly tagged UNUSED() since some of these functions look like they may need to have the arguments used later.
2010-10-16Fix #24280: NURBS default "12x12" UV resolution is not actually "12x12"Sergey Sharybin
When adding new nurb primitive it'll have got the same resolution as curve
2010-10-16dont check for project anymore for ctrl+click, face snapping is enough.Campbell Barton
2010-10-16editors/space_* build without unused args warningsCampbell Barton
2010-10-16patch for bug [#24253] r32218 breaks outliner icon drawingCampbell Barton
provided by Shane Ambler (sambler) with some changes.
2010-10-16Bugfix #24099: nla content moves out of sync - with fixJoshua Leung
Thanks Shane Ambler (sambler) for the patch! <quote> This kind of follows on from a report that I think was closed prematurely - #22775 - I can't find any reference to an outstanding todo that relates to it. When resizing the nla editor the channel names and the main area get out of sync. When toggling back from fullscreen the content is hidden off the top of the area requiring scrolling to see it. The dopesheet displays similar problems but after fixing the ui_view2d_sync call it appears to behave as if the v2d.keepofs has been set for the most part. Two areas seem to be related to this - the first is calls to UI_view2d_sync used for these two views use the wrong flags. The other is v2d.keepofs not being set. (dopesheet has less issue here but I think it is meant to be set the same as nla) </quote>
2010-10-16Bugfix #24276: Unable to set extrapolation on a per curve basisJoshua Leung
Selected-curves only flag was missing.
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-15remove/tag unused args for view*.c, gpu*.c & image*.cCampbell Barton
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-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 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-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-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-14Move MAXFLOAT to BLI_math_base.hNathan Letwory
2010-10-14Update outliner when vertex group was added/removedSergey Sharybin
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-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-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