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
2012-04-29style cleanup: function calls & whitespace.Campbell Barton
2012-04-29Add convex hull operator (bmesh operator and wm operator.)Nicholas Bishop
Image-heavy user documentation: http://wiki.blender.org/index.php/User:Nicholasbishop/Convex_Hull Thanks to Campbell for providing code review: http://codereview.appspot.com/6114060
2012-04-29style cleanup: whitespace / commasCampbell Barton
2012-04-29Bugfix [#28826] Show Hidden button in Dopesheet and Graph Editor doesn't quiteJoshua Leung
work Show Hidden was handled by the same filtering function as Only Selected, but the filters were being tested incorrectly (or to be precise, only Only Selected was being considered). This meant that it was only possible to show F-Curves belonging to hidden data if that data happened to be selected first.
2012-04-29Bugfix [#31128] Vertex Slide can't be aborted with ESC keyJoshua Leung
2012-04-29Remove variables tagged as unused. Easier to synchronize with current ↵Sergey Sharybin
patches and makes patches easier to read when variables are creating or e-using, but not un-commenting.
2012-04-29Bugfix [#31029] Select all in view3D don't update the graph editor immediatelyJoshua Leung
One-liner fix. The code was assuming that editor.refresh() would do a editor.redraw() too (like for Dopesheet), but that wasn't the case.
2012-04-29Code cleanups - whitespaceJoshua Leung
2012-04-29quiet unused warningsCampbell Barton
2012-04-29Pose armature cleanup: remove old commented code replaced by use of new ↵Bastien Montagne
generic pchan_to_pose_mat(). After two months, think we can get rid of it, it’s in svn anyway if we ever need it!
2012-04-29wireframe option to crase edges at the hub, much nicer subsurfCampbell Barton
2012-04-29Camera tracking: backport refactoring made in local branches with masking ↵Sergey Sharybin
and dopesheet view into trunk Mostly related on changes in poll functions for tracking operators and some changes to how interface is initializing for different view types.
2012-04-29bmesh: new wireframe toolCampbell Barton
- makes wireframe from faces. - options similar to inset (even offset, relative scale) - copies face settings and loops (uvs, vcolors) - optionally replaces the existing geometry.
2012-04-28Code and style cleanup in own modules in BKE and also mball moduleSergey Sharybin
- Make sure functions are named in way BKE_<object>_<action> (same way as RNA callbacks) - Make functions which are used by mball.c only static and remove their prototypes from public header file. Further cleanup is coming.
2012-04-28style cleanup: editors / mesh & objectCampbell Barton
2012-04-28style cleanup: format 'for' loop macros the same as for loops, some renaming ↵Campbell Barton
to BLI_array macros.
2012-04-28Correction to recent commmit related on splitting audio channels: ↵Sergey Sharybin
descriptions shouldn't end with dot.
2012-04-28Audio:Joerg Mueller
* Fix for [#31099] Audio in Meta-Strips Plays Beyond Strip Cut * Adding a split files option to the mixdown operator which then renders each channel into a separate file
2012-04-28code cleanup: remove editmesh code left hanging around thats already been ↵Campbell Barton
ported to bmesh, also remove main editmesh header.
2012-04-28code cleanup: replace some long ELEM7 checks with macro ↵Campbell Barton
OB_TYPE_SUPPORT_EDITMODE()
2012-04-28Camera tracking: if there's no image for current frame display default gridSergey Sharybin
and allow to interact with tracks for operators which doesn't require image. Merged from tomato branch: svn merge ^/branches/soc-2011-tomato -r45624:45625
2012-04-28Fix #31117: Segfault when removing Meshdeform ModifierSergey Sharybin
2012-04-28Fix: #31095: Incorrect clamping of labels for multibyte languagesSergey Sharybin
2012-04-28code cleanup: Campbell Barton
- replace inline face UV center calc. - use const float[3] for mesh and uv functions. - remove unused define
2012-04-28Plugin system:Thomas Dinges
* Remove RNA, Operator and UI for Texture and Sequence plugins. Since 2.5x no effort has been done to bring that back, so there is simply no reason in keeping that code and the UI for that ;-) * Low Level code still exists and is unchanged.
2012-04-28style cleanup: changes to brace placement / newlines - for/while/if/switchCampbell Barton
2012-04-28add back lasso tool in the UV editor (Ctrl+LMB / Ctrl+Shift+LMB)Campbell Barton
2012-04-27fix for select flushing in UV-sync-selection mode (regression from 2.62), ↵Campbell Barton
both border select and circle select failed in edge and vertex mode (though de-selecting worked ok).
2012-04-27code cleanup:Campbell Barton
- move lasso functions into BLI (were in 3D view but UV editor needs access) - remove unused UV functions (ones that assumed 3-4 sized UVs only)
2012-04-26rename WholeCharacter in C too, add pthreads include back for msvc which ↵v2.63Campbell Barton
needs it.
2012-04-26Release commit, 2.63!Sergey Sharybin
Special thanks to Mango team for awesome splash screen! And everybody else who made this release! :)
2012-04-26Fix for undefined reference to abort() in outliner selection moduleSergey Sharybin
2012-04-26fix memory leak in validating mesh and remove unneeded knife operator ↵Campbell Barton
settings store.
2012-04-26Fix #31066: cycles keeps rendering in viewport after window closed.Brecht Van Lommel
2012-04-26* Compile fix for recent Outliner header cleanup. Thomas Dinges
2012-04-26outliner header cleanup (copy pasted headers when split up Im guessing)Campbell Barton
2012-04-26fix for memory leak in the knife toolCampbell Barton
2012-04-26removed unneeded fnmatch include from outliner, comment files as needing ↵Campbell Barton
header cleanup.
2012-04-25fix for border de-selecting with sync selectionCampbell Barton
2012-04-25disable bevel for release after discussion with brecht and sergey, this ↵Campbell Barton
works far too poorly to be included in release.
2012-04-25Update for startup.blend: remove vertex color layer from default cubeSergey Sharybin
Pardon for updating this so close to release, but it's annoying to have such a layer and in some cases it leads to unwanted sideeffects. This layer was added by accident when was fixing flags for brushes, didn't notice entering vertex paint mode automatically creates vertex color layer.
2012-04-25code cleanup: typos and set gcc attributes for string formatting.Campbell Barton
2012-04-25fix [#31080], edge slide UV correction wasnt working for UVs surrounding the ↵Campbell Barton
end of the slide selection (one edge sliding on a grid for example).
2012-04-25code cleanup: edge slide code had oddly named variables, added some comments ↵Campbell Barton
and renamed vars. also made BM_elem_select_set() a function (was a macro calling a function).
2012-04-25now vertex paint uses the same overrides as weight paint - so wire draw mode ↵Campbell Barton
allows vertex paint to be unlit (which is quite handy, previously you had to hide lamps).
2012-04-25style cleanup: no functional changesCampbell Barton
2012-04-25code cleanup: no functional change - had both EDBM_editselection_* and ↵Campbell Barton
BM_editselection_* funcs, replace EDBM_ funcs.
2012-04-25code cleanup: dont use bmesh operator flags outside a bmesh operator, use ↵Campbell Barton
hflag tagging instead.
2012-04-24code cleanup: rename UV functions to closer match bmesh apiCampbell Barton
2012-04-24bmesh: fix selection flushing when editing UV's and sync selection is ↵Campbell Barton
enabled, and edge mode is in the 3D view.