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
path: root/source
AgeCommit message (Collapse)Author
2011-10-14Fix MSVC build ( .0f/.0f fires a compiler error )Andrew Wiggin
2011-10-14fix [#28909] OpenCollada export / import sintel lite v2.1 crashes on import.Campbell Barton
2011-10-14Fixing [#28907] Frozen playback.Joerg Mueller
Also fixing two more crashes when audio files don't exist/cannot be read and apply a changed file path of a sound, reported by Jens Verwiebe in IRC.
2011-10-14rename confusing constants (no functional change)Campbell Barton
- OB_BOUND_POLYT --> OB_BOUND_CONVEX_HULL - OB_BOUND_POLYH --> OB_BOUND_TRIANGLE_MESH
2011-10-13comment own recent memory leak fix since it broke edge slide.Campbell Barton
2011-10-13correct collada lib linking order (wasnt building for me), and sphinx doc ↵Campbell Barton
syntax warning.
2011-10-13Revert part of recent fix for movie resolution.Sergey Sharybin
It helped to make things works better for some movies but it didn't help proxies to work properly. Correct fix seems a bit larger and better not be made atm, so to keep behavior of proxies and original movie consistent keep resolution behaves like it was before recent changes,
2011-10-13fix for leak when switching between transform rotation modes.Campbell Barton
2011-10-13ensure grease pencil layer names are unique when set through rna.Campbell Barton
2011-10-13fix [#28898] Segmentation fault when Home key during GreasePencil dopesheet ↵Campbell Barton
pressed
2011-10-13correct some invalid exception types.Campbell Barton
2011-10-13formatting edits & remove debug print.Campbell Barton
2011-10-13bpy/rna new property attribute 'data', this means its possible to get back ↵Campbell Barton
the rna-struct which a property uses. Without this you cant get the bone from an fcurve data path for example, needed to fix bug [#28889].
2011-10-13quiet compiler warnings for string formatting in ffmpeg loggingCampbell Barton
2011-10-12Compile fix for some platforms (like linux release build environment)Sergey Sharybin
2011-10-12Fix typo.Guillermo S. Romero
2011-10-12Free cache data when creating a new group from selected nodes. This would ↵Lukas Toenne
leave unfreed memory behind otherwise, since node groups don't have internal caches.
2011-10-12Workaround for #28864: crash rendering out file with audio, due to scene audioBrecht Van Lommel
channels being set to invalid value 0. The cause of this is unclear, this adds a version patch just to be safe, in case it turns out to be a common issue.
2011-10-12Fix for #28876, alpha over with empty image node gives black result.Lukas Toenne
The image node output is the default value when no image is selected. In pre-2.60 this was always initialized to 0 alpha, the defaults written in the node socket templates were completely ignored for outputs (except for value and RGB input nodes, which use these as button values). Now the stack values are initialized with the template defaults, which are all 0 by default. This patch changes alpha to 0 for image and render layer outputs too.
2011-10-12Fix for #28886, compositor cache regression bug.Lukas Toenne
The problem was that all outputs got tagged indiscriminately (esp. hidden render layer sockets), leading to full recalculation every time. This was caused by erroneous tagging of bNodeStacks with hasinput/hasoutput flags. This patch restores the old behaviour of tagging all non-static stacks as input values and all outputs that are connected to some input. Only difference is in node groups, where the hasoutput flag is no longer abused for tagging internal buffers, here the is_copy flag is used instead.
2011-10-12Fixes for #26837: MPEG Preseek does not work for some h264 files.Sergey Sharybin
- Display running job template in all sequencer modes It was displayed only for sequencer mode without preview. - Fixed proxy rebuild progress indicator It was alsways zero because of incorrect rounding. - Fixed timecode saving on windows (and probably some other platforms) It was caused by incorrect opening file for writting -- it should be opened in binary format "wb". This error caused incorrect movie duration detection on windows. - Fixed movie resolution detection for some movies. In file attached to report, Blender detected resolution 1920x1088 instead of 1920x1080. Not sure if this fix is correct or it's issue in FFmpeg, but it's something what mplayer using: store width/height before running avcodec_open(). - Fixed frame number calculation when building timecodes. It was rounding error caused some frames be positioned incorrect in several cases (that each 6th frame rendered as next frame from report).
2011-10-12fix for possible buffer overflow bug in BLI_join_dirfile(), recent fix ↵Campbell Barton
didn't account for the case when destination string and dir string matched.
2011-10-12fix [#28882] grease pencil draw apperence seems to change wieght/thickness ↵Campbell Barton
after a while
2011-10-12fix [#28883] redraw problems for particle mode's brush menuCampbell Barton
The enum items for getting the brush tool (which the UI draws), would change after the 3D view first draws on exiting editmode. Since the panel draws before the 3D view does, the UI had a glitch. Fix by using psys_get_current() for the enum, rather then PE_get_current() which depends on an updated particle system.
2011-10-12fix [#28880] relative paths don't work with Change Path/FilesCampbell Barton
2011-10-12changes to relative path optionCampbell Barton
- initialize the relative_path option in ED_fileselect_get_params(), saves initializing within every operators own init functions, some even trying to initialize a non existing property. - don't set the operator default from the user preferece, operator property defaults should be static else python scripts for eg can get different defaults depending on user settings, this also wont get updated when user-defaults are edited so generally confusing & not good practice.
2011-10-12fix [#28879] can't change names of some of the VSE stripsCampbell Barton
Multi-Cam, Sound, Movie and Image strips were not showing strip names. also replace sprintf() with safer BLI_snprintf()
2011-10-12fix for crash caused by invalid active material index while editing text.Campbell Barton
also added some better error checking in object_remove_material_slot() so it will print an error rather then crashing if this case ever happens again.
2011-10-11Fix crash drawing waveform with zero length sound, found looking into sound ↵Brecht Van Lommel
reading bug.
2011-10-11fix for drag-n-drop ID's for renaming (own fault when fixing #24016)Campbell Barton
2011-10-11Adding FA (Persian - Farsi) language to po + flipping Arabic name in the ↵Dalai Felinto
Language Enum
2011-10-11fix for py/rna assigning an invalid index. also give better error message in ↵Campbell Barton
this case.
2011-10-11fix for crash in BLI_join_dirfile() when the dir is longer then the target ↵Campbell Barton
string. starting blender in a dir longer then 240 chars would crash.
2011-10-11Handle "Open Recent..."Xiao Xiangquan
2011-10-11- bpy.path.abspath(), added optional library argument since any paths from ↵Campbell Barton
linked datablocks are relative to this, not the blend files path, this saves kludgy path code wherever libraries may be used. - Image "Edit Externally" operator can now edit relative library images. also minor edits to navmesh.
2011-10-11create navmesh operator would crash on non-mesh objects, add type check and ↵Campbell Barton
report if no mesh objects are selected.
2011-10-10Fix #28857: 2.60 rc1 regression?Sergey Sharybin
If displacement mapping is used, normals shouldn't be flipped.
2011-10-10fix [#28850] With "Auto-keyframe" on, the "Selection to Cursor" option ↵Campbell Barton
doesn't create keyframe.
2011-10-10Revert "Fix #28863: Inconsistent UI inside of the UV/ImageEditor window"Sergey Sharybin
This reverts commit 40899 due to UI department feedback.
2011-10-10correct operator name from my own recent changes and edit navmesh rna prop ↵Campbell Barton
name for consistency
2011-10-10fix bad svn ID tagsCampbell Barton
2011-10-10header cleanup (no functional changes)Campbell Barton
2011-10-10Now append/link will start at current blend file directory, if available ↵Bastien Montagne
(lastest used lib keeps priority).
2011-10-10add in empty modifier slot so dynamic paint files don't break.Campbell Barton
2011-10-10Fix #28863: Inconsistent UI inside of the UV/ImageEditor windowSergey Sharybin
Make panels which are on left be toggled by T, and which are on right by N.
2011-10-10updates to navmeshCampbell Barton
- 2 new navmesh operators, reset and clear navmesh data. - rename operators to be more consistent with existing names. - some minor edits to draw function, was getting the custom data for every index when it already had the array.
2011-10-10edit error macro formatting (confuses some editors)Campbell Barton
2011-10-10fix for using uninitialized stack memory in ↵Campbell Barton
mesh_foreachScreenFace__mapFunc(), used for face selection.
2011-10-10- for some reason navmesh wasnt drawing when VBO was enabled.Campbell Barton
- fix navmesh crash (may well have been from own changes) - changing VBO's now redraws all windows - useful for checking if VBO draws differently.
2011-10-10fix documentation error - [#28862] Method 'difference' doesn't exist in ↵Campbell Barton
Quaternion object.