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
2013-10-292.69 release commitv2.69Sergey Sharybin
Set release string to release :)
2013-10-29Merge for final releaseSergey Sharybin
- One-liner fix for sculpting - Splash without RC3 caption -- svn merge -c60872 -c60900 ^/trunk/blender
2013-10-21svn merge ^/trunk/blender -c60858Bastien Montagne
2013-10-21svm merge ^/trunk/blender -c60756 -c60763Brecht Van Lommel
Fix for freestyle line styles showing in the outliner when it's disabled.
2013-10-21svn merge ^/trunk/blender -c60755 -c60766 -c60792 -c60796Campbell Barton
2013-10-20svn merge ^/trunk/blender -c60814 -c60848Brecht Van Lommel
Merge two more small fixes for the release.
2013-10-19Revert own r60813, should never have been made here!Bastien Montagne
svn merge -c -60813 .
2013-10-18svn merge -c -60753 URL/trunkBrecht Van Lommel
Remove fix from revision 60753, it introduced another bug and was a minor issue anyway, so leave it out of release.
2013-10-17More complete handling of printf formatting in msgid/msgstr checks.Bastien Montagne
2013-10-15svn merge ^/trunk/blender -c60760Campbell Barton
2013-10-15svn merge ^/trunk/blender -c60579 -c60599 -c60605 -c60626 -c60630 -c60635 ↵Campbell Barton
-c60639 -c60644 -c60649 -c60673 -c60674 -c60675 -c60680 -c60682 -c60683 -c60685 -c60689 -c60695 -c60703 -c60707 -c60708 -c60709 -c60712 -c60712 -c60723 -c60724 -c60731 -c60740 -c60742 -c60743 -c60747 -c60749 -c60752 -c60753 -c60753 -c60755
2013-10-07Merging r60595 through r60596 from trunk into blender-2.69-releaseSergey Sharybin
2013-10-07fix for crash on load if the file was saved in editmesh,Campbell Barton
BKE_mesh_uv_cdlayer_rename_index was checking editmesh pointer before it was NULL'd by direct_link_mesh.
2013-10-07Merging r60592 through r60594 from trunk into blender-2.69-releaseSergey Sharybin
2013-10-07Fix regression in r59316Sergey Sharybin
Different version could be passed here, added check cached path is calculated with the proper one.
2013-10-07fix for casting shadows of scaled objects was made to ↵Campbell Barton
X_BlenderRenderTools.cpp but not to GPC_RenderTools.cpp.
2013-10-07remove minor differences between these 2 files which are almost exact ↵Campbell Barton
duplicates (tsk tsk!)
2013-10-07revert r58693. patch [#36233], caused regression (bug report [#36959]).Campbell Barton
2013-10-07Fix #36981, Removing Sample line fails during render.Lukas Toenne
The SAMPLELINE flag in histogram was set during the BKE_histogram_update_sample_line function. That function in turn is called during every scope update in area draw function, meaning that during render it constantly gets set. OTOH the operator tries to disable the flag on invoke, which "cancels" the sample line by default. So during render the operator un-setting of the flag has no effect, because the render job immediatly triggers a redraw, which updates scopes and sets it again. Moved the flag out of the actual sample line update function into the operator execute. Now only the operator enables/disables overall sample line drawing, while the rest of the update works as before.
2013-10-07Fix #36980: Color space issue when displaying pixel color in a renderSergey Sharybin
HSV values were calculated from a linear space color, which is not so much useful and correct. Now RGB(A) buffers will use color managed color for HSV values. Still not sure which color to use for HSV when there's only one channel in a buffer. This part left unchanged for now.
2013-10-07Remove unused and meaningless line.Sergey Sharybin
2013-10-07Fix for conf instructions for scons...Bastien Montagne
2013-10-07Build fix (issue could happen with scons,reported by ebrain on IRC, thanks).Bastien Montagne
Var declared in an #ifdef DEBUG, but used in an #ifndef NDEBUG…
2013-10-06Revert revision 59985, 59986, 60046 and 60067. These were fixes to improve saveBrecht Van Lommel
and restore of window setups with multiple monitors, but they are also causing regressions, in particular issues with Blender overlapping the taskbar and the user preferences opening wrong. We decided to revert to the old behavior for the release. See bug #36707 for the full explanation.
2013-10-06* Display warning icon for SSS/GPU message. Thomas Dinges
2013-10-06Check the node Add operator's type property before attempting to create a ↵Lukas Toenne
new node. This prevents python exceptions when calling it from the search menu, where the node type is unspecified. Reported by Sebastian Koenig in unrelated bug report #36968.
2013-10-06Fix for Output File node operators: added a sanity type check to avoid using ↵Lukas Toenne
invalid node data. Reported by Sebastian Koenig in unrelated bug report #36968.
2013-10-05Better fix for #36935 and 36316:Brecht Van Lommel
* 32 bit GCC builds now have the SSE BVH optimizations turned off, but still compile with SSE flags for better performance. * White color when rendering on Windows seems to have been unrelated to SSE, rather it was a graphics driver not supporting half float textures, added a check for that now.
2013-10-05Fix for my last customdata fix, accidentally left in comments.Brecht Van Lommel
2013-10-05rename presets not to use '+' character, also some typo fixes.Campbell Barton
2013-10-05replaced export for OpenSim by Export for SL/OpenSim in Collada export user ↵Gaia Clary
interface (conforming to Linden Lab document http://secondlife.com/corporate/brand/trademark/sl_insl.php )
2013-10-05Replaced opensim by sl+opensim in collada presets (conforming to Linden Lab ↵Gaia Clary
document http://secondlife.com/corporate/brand/trademark/sl_insl.php )
2013-10-05Fix for unnecessary customdata warning with empty meshes.Brecht Van Lommel
2013-10-05Fix #36962, "Render emitter" option for hair is ignored in Cycles. Hair ↵Lukas Toenne
particles use the hide_tris boolean to disable rendering of the emitter, but this was still ANDed with the "experimental" flag. Hair is not experimental any longer, so this has to be removed.
2013-10-05rename overlap to holes for isect_point_poly_v2Campbell Barton
2013-10-05avoid divide by zero with grid fill (when there is no selection)Campbell Barton
2013-10-05more corrections to valgrind hinting.Campbell Barton
2013-10-05use valgrind hints for memarena for better debugging info when using valgrind.Campbell Barton
also quiet a false positive in BLI_mempool_free().
2013-10-04pressing enter over a file-text button is ignored (so enter in the file ↵Campbell Barton
selector works again).
2013-10-04Fix cycles hair render UI panel showing for particles that are not hair,Brecht Van Lommel
patch by Greg Zaal.
2013-10-04Remove prints from own r60549, sorry for the noise.Bastien Montagne
2013-10-04code cleanup: warnings and minor edits.Campbell Barton
2013-10-04fix for lasso failing/glitches on overlapping lines, replace scanfill with ↵Campbell Barton
2d pixel filling for drawing and selection.
2013-10-04Attempt to fix #36935: disable SSE optimizations on 32 bit windows too. ↵Brecht Van Lommel
Something strange is going on here, but I don't think it can be fixed before the release, if it is worth at all spending time on this.
2013-10-04Fix obvious bug in particle code (copying normal into nor when in if(ornor) ↵Bastien Montagne
block...), though probably harmless in current code...
2013-10-04Fix #36930: dynamic topology sculpting with masks gave bad results:Brecht Van Lommel
* The mask was not subdivided properly on splitting edges, which gave interesting but definitely wrong fractal-like borders around masks. * Edge splitting was only done where the mask was < 50%, with the reasoning that you can't do a 50% topology update. But this gives an ugly border in the mesh. The mask should already make the brush move the vertices only 50%, which means that topology updates will also happen less frequent, that should be enough.
2013-10-04Fix #36948: blender internal viewport render crashes holding shift+Z pressedBrecht Van Lommel
to quickly toggle it on/off. Problem is accessing freed data, now the job is ended immediately. Fix based on patch from Sergey and investigation from Bastien.
2013-10-04Code cleanup: remove unused functionSergey Sharybin
2013-10-04Fix related to [#36926] 'scale' Node doesn't work properly.Bastien Montagne
Scene/Render "spaces" are actually absolute values, they do not use the input X/Y scale factors, hide them in this case. Thanks to Lukas for review and improvement!
2013-10-04fix for lasso selection (in non-zbuf mode) when the line intersected its self.Campbell Barton
isect_point_poly_v2() - add argument to check overlapping areas.