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-02-17unify include guard defines, __$FILENAME__Campbell Barton
without the underscores these clogged up the namespace for autocompleation which was annoying.
2012-02-13remove unused varCampbell Barton
2012-02-122.6 UI Modifier Icons:Thomas Dinges
* New Ocean Icon, created by Leon Cheung. Thanks! Approved by Lukas and myself. * New Warp Icon, created by "Zafio" Blender artists Thread where the Icons come from: http://blenderartists.org/forum/showthread.php?243354-Call-for-Modifier-Icons!
2012-02-12Fix for outliner notifiers for inserting keyframes on ↵Sergey Sharybin
visibility/selectivity/renderability flags and toggling renderability from shortcut.
2012-02-12Fix #30110: Outliner view: restriction icons not updating when toggling from ↵Sergey Sharybin
Groups view Fixed by using proper button type.
2012-01-24Misc picky edits to UI messages.Bastien Montagne
2012-01-23Ocean Modifier UI fixes:Thomas Dinges
* Modifier Icon was missing in the outliner * Fluid icon was used in the rna struct, fixed Note: Ocean uses the Wave modifier icon atm, if we find a better one, this can be changed.
2012-01-22error in outliner parent patch - was using set string on an enum property.Campbell Barton
2012-01-22Patch [#27790] Drag and drop parenting in outlinerJoshua Leung
Submitted by Perry Parks (scuey) From the patch: This patch enables drag and drop parenting for objects in the outliner. Drag and drop is supported for a selection of multiple objects as well. Also, all of the "special" parenting tasks (armature, curve, lattice) are possible through the usual parenting context menus. For example, drag a mesh object onto an armature and you are prompted for using bone envelopes, automatic weights, etc. Demonstration on Vimeo: http://vimeo.com/25698606
2012-01-22Patch [#28608] Add search match colour to theme settingsJoshua Leung
Submitted by Shane Ambler (sambler) From patch description: As a follow on from #23443 - committed in r40066 I have added the outliner filter match highlight colour to the theme settings. Default colour is a light green matching what was originally hard coded.
2012-01-19yRemove missed/unused "tweak" property from keymap for outliner's border selectSergey Sharybin
2012-01-19patch [#29924] Border select tool implementation for the outlinerCampbell Barton
from Perry Parks (scuey), with edits. - select row rather than icons. - adjust outliner selection rather than object selection.
2012-01-16more keymap editsCampbell Barton
- make sure defaults are not assumed (so reuse last settings doesnt override) - replace 0/1 for TRUE/FALSE defines.
2012-01-12Some small fixes to get things compiling on solaris with cmake.Kent Mein
There are also some changes that need to be done to libmv but I'm leaving those out so I can get it patched upstream first. (Only works with gcc/g++ if we want to use sun's compiler we would need to get rid of all of our annonymous structs which I don't think we want to do at this point, example: typedef struct wmNDOFMotionData { union { float tvec[3]; // translation struct { float tx, ty, tz; }; // this would need to be fixed // something like this or something similar: struct { float x, y, z; } t; }; ... ) Kent
2012-01-12replace fixed sizes with sizeof when passing string length since size wasn't ↵Campbell Barton
always correct.
2012-01-11dynamicpaint had some incorrect string sizes for layers names, use BLI ↵Campbell Barton
string functions in more places too.
2012-01-11use BLI_strncpy and BLI_snprintf when the size of the string is known.Campbell Barton
fix for sequencer unique naming which was missed with string length update.
2012-01-11minor cleanup for string use - no functional changesCampbell Barton
- use more logical names for strings, noticed too many strings called `str` when reviewing name patch. - pass __func__ macro to uiBeginBlock(), quite a few names were wrong (copy/paste error).
2011-12-31Fix for Remesh Modifier:Thomas Dinges
* Remesh Icon was missing in the outliner.
2011-12-22split >120 length lines (mostly if statements)Campbell Barton
2011-12-17Code cleanup: fix a few warnings (>= 0 and == -1 tests on unsigned types).Brecht Van Lommel
2011-12-09remove redundant cases. no functional change.Campbell Barton
2011-12-07fix for NULL pointer free and add in some checks, while looking into bug ↵Campbell Barton
[#29521], add asserts so we know if an invalid active index is ever set.
2011-12-04remove use of deprecated struct membersCampbell Barton
- editmesh smooth & subdivide were using old mirror axis flag still. - removed colbits from outliner and object code. - commented some other parts of the code which access deprecated members and aren't called anywhere.
2011-11-30fix [#29459] Crash making a linked object group localCampbell Barton
was an error with make-local refactor & path updating.
2011-11-29Fix #29443: Outliner buttons hover on shrinkSergey Sharybin
Issue was caused by drawing icon instead of button due to column clip. This icons was drawing without taking icons' alpha into account.
2011-11-25Fix #29371: crash deleting objects in outliner. This was introduced in theBrecht Van Lommel
bugfix for #28467, it deleted outliner tree while still traversing it.
2011-11-16Partial Bugfix 2: [#29229] Outliner RMB commands unexpected resultsJoshua Leung
RenderLayers and RenderPasses don't show the generic Hide/Unhide/Select/Deselect popup which is irrelevant for this use case. I've included a commented-out call here that can be replaced when we have some operations which can be performed on this data (*) (*) For new devs looking to get into blender dev, this could be a nice little project to work on.
2011-11-16Partial Bugfix: [#29229] Outliner RMB commands unexpected resultsJoshua Leung
This commit implements the Unlink and Make Single User capabilities for World datablocks in the Outliner
2011-11-05Merge with trunk r41545Miika Hamalainen
2011-11-03correct spelling mistakesCampbell Barton
2011-11-02Space types:Thomas Dinges
* Some cleanup, removed references to already deleted *_header.c files. * Marked SpaceScript as deprecated and removed header. Will keep space for now though, as some script operators are there and Campbell might want to re-use the space later.
2011-10-28Merge with trunk r41342Miika Hamalainen
2011-10-27Support more kinds of paths for path re-writing / traversing, patch from ↵Campbell Barton
Alex Fraser with additions. this now supports as many types as bpath iterator which its intended to replace.
2011-10-23remove $Id: tags after discussion on the mailign list: ↵Campbell Barton
http://markmail.org/message/fp7ozcywxum3ar7n
2011-10-23Typo fixes for the typo fixes. :DThomas Dinges
2011-10-23fix some typo'sCampbell Barton
2011-10-22Merge with trunk r41197Miika Hamalainen
2011-10-22py api - added PyC_UnicodeFromByteAndSize() to match ↵Campbell Barton
PyUnicode_FromStringAndSize() also made RNA_property_string_get_alloc() return the length of the new string to avoid having to run strlen on it after.
2011-10-17fix spelling mistakes in comments (and in some python error messages), ↵Campbell Barton
nothing to effect translations.
2011-10-04Merge with trunk r40782Miika Hamalainen
2011-09-28Fix #28185: Regression test: outlinertest blendSergey Sharybin
Added notifier handler to outliner.
2011-09-25whitespace cleanupCampbell Barton
2011-09-22clear up some warnings.Campbell Barton
2011-09-20Merge with trunk r40409Miika Hamalainen
2011-09-20tag & comment unused vars with /* UNUSED */Campbell Barton
2011-09-19/blender/editors: Removed final points in UI strings and messages.Bastien Montagne
Plus a few cuts in very long lines…
2011-09-16WeightVG: added WeightVG icon for outliner (don’t know when that where ↵Bastien Montagne
lost...).
2011-09-16correction for my fix for [#28668], would crash when there were no editbones.Campbell Barton
2011-09-16use replace 0 with NULL for pointers, set some functions staticCampbell Barton
also fixed own errors in recent static check commit.