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
2011-11-16OSX: buildfix for itask on 10.5.sdkJens Verwiebe
2011-11-16Fix #28936: UV unwrap issue with meshes with inconsistent normals.Brecht Van Lommel
2011-11-16Fix issue with tracks color presetsSergey Sharybin
2011-11-16Fix: part of 3d view header disappears when collapsing menus.Brecht Van Lommel
2011-11-16Typo fixes in descriptions.Sergey Sharybin
2011-11-15Fix #29208: Text.clear() and Text.write() did not redraw text editor.Brecht Van Lommel
2011-11-15SVN maintenance.Guillermo S. Romero
2011-11-15Fix #29275: vertex/edge/face selection buttons showing squashed in 3d view ↵Brecht Van Lommel
header.
2011-11-15Cycles: move clew into cycles namespace to avoid conflicts, and fix meshBrecht Van Lommel
displacement panel showing with blender internal.
2011-11-15Fix for #29165 bugfix: adding nodes from shift+A menu in node editor did ↵Brecht Van Lommel
nothing.
2011-11-15Fix build issue on windows, M_PI => M_PI_F.Brecht Van Lommel
2011-11-15patch [#28993] wm_window_match_do(): Fix crash on null pointer dereferenceCampbell Barton
from Ola Jeppsson (olajep) also some cleanup edits
2011-11-15replace rna description string limits with rna define RNA_DYN_DESCR_MAXCampbell Barton
2011-11-15Fix #29259: cycles issues on certain processors. Now two versions of the kernelBrecht Van Lommel
are compiled, one SSE optimized and the other not, and it will choose between them at runtime.
2011-11-15add support for python __doc__ comments in menu classes showing in the ↵Campbell Barton
tooltip, since menus are used as buttons too.
2011-11-15show tooltips for menus, currently works for operators and enum properties ↵Campbell Barton
which are can be accessed as menus from the UI (camera overlay enum for example)
2011-11-15access mesh string data layer as bytes since this is low level data storageCampbell Barton
2011-11-15fix [#29272] Dynamic Paint crashes on duplicating a particle systemCampbell Barton
smoke had this same bug too
2011-11-15One more description became easier to understandSergey Sharybin
2011-11-15patch [#27708] API for adding mesh propertiesCampbell Barton
from Geoffrey Bantle (briggs)
2011-11-15Camera tracking: made some options more easy to understandSergey Sharybin
- Changed some names so now people who aren't really familiar with motion tracking can understand what they exactly means - Also cleaned up and rephraded some descriptions - Changed behavior of operator which creates empty for 2d tracks: now it operates on all selected tracks rather than active track only - Added checkbox to enable/disable rotation stabilization
2011-11-15Follow-up commit to r.41765Joshua Leung
Reviewed behaviour of selection operators, and decided that ultimately, it's better if select left/right/column didn't change the channel selections at all. This is because with the highlighting of the active curve nowadays, it's a bit distracting to suddenly lose track of it after performing these operations, when you may have been trying to select all of the keyframes on that curve for further tweaking.
2011-11-15py/rna api was calling RNA_property_type more often then needed (no ↵Campbell Barton
functional change)
2011-11-15Formatting cleanup. No functional changesJoshua Leung
2011-11-15Bugfix [#29264] Superfluous control in Maintain Volume constraintJoshua Leung
2011-11-15correct off by one error in previous commit, also add assert incase ↵Campbell Barton
idproperty length gets out of sync.
2011-11-15missed these while rna renaming.Campbell Barton
2011-11-15add IDP_EqualsProperties support for comparing non-null terminated byte strings.Campbell Barton
2011-11-15de-duplicate some idproperty py api code, also improve some exception messages.Campbell Barton
2011-11-15Fixed compilation error in writeffmpg.c (caused by recent IDProp changes).Bastien Montagne
2011-11-15Minor: added the description of expected string format for the ↵Bastien Montagne
template_list's "prop_list" parameter (was missing in bpy ref...).
2011-11-15rename IDProp.c/h to idprop_py_api, since it was same name as BKE idprop.c ↵Campbell Barton
with case changed.
2011-11-15pass a pointer to IDP_New's IDPropertyTemplate rather then a copy.Campbell Barton
2011-11-15Fixed typo in previous commitSergey Sharybin
2011-11-15support for non-null terminated byte strings in id properties (as a subtype ↵Campbell Barton
of IDP_STRING types)
2011-11-15Patch from nico_ga: libmv can be compiled with icc nowSergey Sharybin
2011-11-15Request from nico_ga: expose WITH_BF_STATIC* variables to linux-config soSergey Sharybin
builders can easily find interesting for them flag.
2011-11-15fix for own error, BLI_replace_extension would strip the filename if there ↵Campbell Barton
wasn't already an extension.
2011-11-15fix for crash in blenderplayer when the engine isnt fount.Campbell Barton
2011-11-15Workaround for half-transparent windows when running blender-softwareglSergey Sharybin
and compiz effects are enabled. Thanks to Nicholas Bishop for pointing in possible solution of this issue.
2011-11-15bytestring support for py/rna - this is so py can access data whichCampbell Barton
isn't meant to be accessed as unicode text.
2011-11-15Fix #29202: Crash - VSE Cross strip probably leads to thisSergey Sharybin
Crash was caused by several conditions: - Frame which failed to decode tried to be converted to RGB colorspace and some filters like deinterlacing used to be applied as well (it's avscale stuff sws_scale where crash happened). - In some cases it happened reading of freed memory when calling sws_scale function. Looks like it happened because of freeing packet on which decoding of frame finished and reading next packet. Solved this two issues by making YUV->RGB conversion as soon as frame was decoded in ffmpeg_decode_video_frame (such postprocessing used to happen in callee of this function ffmpeg_fetchibuf), so now sws_scale would be called before freeing packet on which decoding of frame finished and it wouldn't be called in cases when decoding of frame failed. If decoding of frame failed, it'll be black ibuf returned to the sequencer.
2011-11-15Fix #29253: 3D Manipulator: "Active Element" not supported for curvesSergey Sharybin
This funcitonality simply wasn't implemented for curves yet, implemented it now.
2011-11-15Fix #29165: Arrow keys not working correct in Compositing Node EditorSergey Sharybin
Bug is caused because of how ui_handle_menu_event works -- it makes quite tricky check in which direction movement happens depending on button type. Checked usages for uiItemV and found that it's used in node_editor only, so changed type of button used there, so ui_handle_menu_event works would detect right direction of movement.
2011-11-15add back feature from 2.4x - Shift+Del to delete objects from all scenes.Campbell Barton
2011-11-15remove unused OceanModifierData member & use smaller flags where possibleCampbell Barton
2011-11-15set cycles scripts as pep8 & make some minor changes.Campbell Barton
also update sphinx doc generator.
2011-11-15Fix #29249: mapping node not keyable anymore, restore RNA to what it was beforeBrecht Van Lommel
Cycles change, generating RNA paths for this is a bit complicated.
2011-11-15Fix #29238: crash with node dependency loop.Brecht Van Lommel
2011-11-14Cycles:Brecht Van Lommel
* Fix #29257: nan-pixels with zero roughness for glass/glossy. * Fix #29239: crash with border rendering, this is not working yet, but should no longer crash now. * Show object name in 3d view rendered draw type. * Attempt to improve Sample as Light option description.