Revision 27170d3 by Sergey Sharybin January 6, 2013, 10:30 (GMT) |
Rename dilate/erode rna property "type" to "mode" to avoid naming conflicts |
Revision 563e38b by Campbell Barton January 6, 2013, 10:17 (GMT) |
remove frame limits for sequence strip creation. was causing errors importing some EDL's |
Revision 9248116 by Jason Wilkins January 6, 2013, 09:24 (GMT) |
BLI_assert uses printf so stdio.h should be included instead of relying on it to be included by other headers accidentally |
Revision 252d0c6 by Sergey Sharybin January 6, 2013, 08:28 (GMT) |
Workaround for textured display with dynamic topology enabled This will only make object display with proper shape in textured view, but all materials and textures will be replaced with default gray color. There's currently no better way to deal with textured display when dynamic topology enabled because of all UV/tfaces are clearing when enabling dynamic topology sculpt. Anyway, better to display gray object with proper lighting in this case rather than not update object's shape during sculpt. Proper solution will be possible once CD layer will be preserved by BMesh log. |
Revision 0ea3c28 by Jason Wilkins January 6, 2013, 07:10 (GMT) |
device_network.cpp is completely elided when WITH_NETWORK is not defined, so do not include it in the build in that case |
Revision feccbaa by Tamito Kajiyama January 5, 2013, 22:24 (GMT) |
Merged changes in the trunk up to revision 53584. Conflicts resolved: release/scripts/startup/bl_ui/properties_render.py source/blender/blenloader/intern/readfile.c source/blender/editors/interface/interface_templates.c source/blender/makesrna/RNA_enum_types.h Also made additional code updates for: r53355 UIList - Python-extendable list of UI items r53460 Alpha premul pipeline cleanup |
Revision c6a0818 by Ton Roosendaal January 5, 2013, 18:23 (GMT) |
Removal of old code trying to detect trackpads. This was causing error in previous commit "wheel only worked after using trackpad once". |
Revision 1005cdc by Ton Roosendaal January 5, 2013, 17:57 (GMT) |
Trackpad pans for UV/Image and MovieClip editors were inverse compared to all other editors. |
Revision 8dfe762 by Ton Roosendaal January 5, 2013, 17:13 (GMT) |
New version of code to detect whether a wheel is involved, or a trackpad. It was compiled with "deploy target 10.6" tested on macbook with 10.8. More tests follow quick. |
Revision 1231918 by Lukas Toenne January 5, 2013, 15:50 (GMT) |
Added some python API examples for the new get/set callbacks in bpy.props. |
Revision aecfe6d by Campbell Barton January 5, 2013, 15:36 (GMT) |
style cleanup: also add checker for function brace placement. |
Revision fa0805e by Sergey Sharybin January 5, 2013, 15:33 (GMT) |
Changes for opengl render to reflect new alpha premul pipeline without hurting quick texture painting - ED_view3d_draw_offscreen will now output buffer with transparent alpha, if sky needed it should be alpha-undered later. - ED_view3d_draw_offscreen_imbuf now accepts alpha mode as an argument which could be either R_ADDSKY or R_PREMULALPHA - OpenGL render and sequencer's opengl preview will now reflect scene's Alpha Mode - Quick Edit will use OpenGL with transparent alpha mode |
Revision e8b415b by Lukas Toenne January 5, 2013, 14:56 (GMT) |
This patch adds support in bpy.props for getter/setter callback functions. We already have update callbacks, but generic get/set functions can come in handy in some cases where the functionality is too complex to use a single value. The current C callback functions are too simple allow a straightforward implementation, in particular they don't receive the PropertyRNA pointer itself as an argument, which means the callback cannot directly access the PropertyRNA's py_data pointers which store the python function objects. For this reason a second runtime variant of these callbacks has been added. It is only used for runtime callbacks and not in makesrna, but otherwise works the same way. |
Revision 5ee3cd6 by Bastien Montagne January 5, 2013, 13:52 (GMT) |
Remove some uneeded/irrelevant "PROP_TRANSLATE". This sub-type is actually *only* needed for the "text" property of UI rna api (maybe we should rename it to "PROP_PY_TRANSLATE", as it is anyway only 'active' during conversion from py string to RNA string property...). In fact, I think it should only be used in RNA func properties anyway, as it stores the translated string into the property, it should only be used with "one time" RNA stuff... |
Revision cf0e646 by Sergey Sharybin January 5, 2013, 13:51 (GMT) |
Remove usage of deprecated TEX_USEALPHA from GE code |
Revision 37ba969 by Joshua Leung January 5, 2013, 12:27 (GMT) |
Making a few tooltips more descriptive, in light of recent confusion over the purpose of some of these features * ClampTo Constraint, Target Object field: now mentions that it is for curve objects only * Dopesheet Editor Modes: now describe what data is editable in each mode. The wording may be a bit clumsy here, but (apart from Mask Editor one, which I'm not entirely sure about) should at least be technically correct |
Revision 5ffcde8 by Sv. Lockal January 5, 2013, 12:06 (GMT) |
Add translation contexts for line, mute and clip |
Revision 6cf52cc by Joshua Leung January 5, 2013, 11:56 (GMT) |
Bugfix: "Change Frame" operator for setting current frame by clicking/scrubbing in a timeline view would show up search results in other editors (e.g. 3D View). This only really works where there is a timeline view as: 1) The modal interactive stuff is built on the assumption that a suitable 2D view mapping exists 2) The operator is not "registered" (i.e. no props display after usage, and doesn't get shown in undo) as it's more "view state" than "scene data" Rewrote poll callback to handlethis properly |
Revision 5b72578 by Bastien Montagne January 5, 2013, 11:50 (GMT) |
Tsst... "faled"... :p |
Revision 9b9da28 by Bastien Montagne January 5, 2013, 11:14 (GMT) |
Adding some example for new UIList... |
|