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
2019-03-05Cemara tracking: move select all into a utility functionCampbell Barton
2019-03-05Nodes: move select all into a utility functionCampbell Barton
2019-03-05Cleanup: move keymap circle select items to templateCampbell Barton
2019-03-05Cleanup: rename RENDER_OVERRIDE -> HIDE_OVERLAYSCampbell Barton
Match the UI naming (changed since 2.7x).
2019-03-05Fix T62159: Poly build crashes w/o overlaysCampbell Barton
2019-03-053D View: move pre-select mesh element access into gizmo APICampbell Barton
2019-03-05Fix T62199: Incorrect bpy.data.screens behaviorCampbell Barton
The screen identifier was set to the "layout_name" which isn't guaranteed to be unique or even exist. This meant `bpy.data.screens.keys()` could have duplicate keys, even when not duplicated, these keys couldn't be used for `bpy.data.screen[key]` access because internally ID's use names for collection look-ups. Make screens match other ID's, using the ID.name as the identifier. Note: this change was from the initial workspace commit 7f564d74f9edaaa Since then the layout selector has been removed so this isn't needed.
2019-03-05Cleanup: minor adjustment to gizmo extrude setupCampbell Barton
No need to access both edit & active object.
2019-03-04GPencil: Fix error in 3D Location modeAntonioya
In previous commit introduced this bug. The flag was inverted and the mode was not working.
2019-03-04Annotations: Reduce smooth factor to 0.5Antonioya
The previous value was too high and deform too much if write text.
2019-03-04GPencil: New extrude operatorAntonioya
Keymap: E - Extrude Gizmo supported. If the extrude points are the first or last of the stroke, the stroke is extended. If the extrude points are in the middle of the stroke, a new stroke is created because the grease pencil strokes can be only with 2 extremes and fold the stroke to get a new point gets very bad results. Still pending define a new icon. Also, it could be good to set by default XYZ axis in the gizmo. Note: There is a change in the transform_gizmo_extrude_3d.c gizmo for OB_MODE_EDIT_GPENCIL. This change must be undo when the mode will be integrated into OB_MODE_EDIT, but while we have both modes, we need to keep this code in order to keep running the gizmo.
2019-03-04Preferences: Remove "requires restart" from multisample tooltipsClément Foucault
It does not make sense now that we uses FBOs for that.
2019-03-04Preferences: Add option to disable edit-mode wire AntialiasingClément Foucault
Requested by some users who prefer old wireframe precision. Smooth wires are still enabled by defaults as they don't have a noticeable perf impact. Application restart is needed for changes to take effects.
2019-03-04Fix T59140 : Loose edges of final mesh does not display in edit modeClément Foucault
2019-03-04DNA: optimize data reconstructionCampbell Barton
Cache the result of DNA_elem_array_size which was being called for each element when reconstructing each struct. Also skip padding members during reconstruction. Gives ~18% overall speedup loading 10_010_A.anim.blend (r3154) from the spring project.# Please enter the commit message for your changes. Lines starting Note, this was reverted recently because it caused T62181 Changes to DNA_sdna_patch_struct_member_nr were needed which caused issues loading old 2.8x files.
2019-03-04GPencil: Cleanup value to enum nameAntonioya
2019-03-04GPencil: Move Object Depth Order to ObjectAntonioya
There was a conflict between Object "In Front" and how the strokes were managed in Stroke panel for grease pencil datablock. In order to keep consistency, the order of the object has been moved to Object level and now it's using the standard "In Front" flag. As all it is 3D, the option "Back" has been removed. This also fixes the problem with task T62137. Also related to commit 54ffc4e19dc4 and D4405
2019-03-04Merge branch 'blender2.7'Sergey Sharybin
2019-03-04Fixup for fix for OSX build using a build folder name with spacesDalai Felinto
Bug introduced on: 1f22e3f311e74031c3c01714117d759d3e3de3f1. This was making regular Mac builds to fail, where they were not failing before. Tested by William Reynish.
2019-03-04Fix T62175: Crash on Undo.Bastien Montagne
Again nodetree broken code... as usual...
2019-03-04Fix T62134: duplicating a material won't update node group's node tree user ↵Bastien Montagne
count anymore. Yet again we have to twist and curl like insane worms to cope with IDs-not-in-main infamous issue... :(
2019-03-04Merge branch 'blender2.7'Brecht Van Lommel
2019-03-04UI: make text editor Text menu consistent with menus for .blend and images.Brecht Van Lommel
2019-03-04Fix missing image editor redraw when reloading image through API.Brecht Van Lommel
2019-03-04Fix Cycles animation denoising giving black pixels for some outliers.Brecht Van Lommel
The denoising code expects the output buffer to be filled with the noisy image, which was not the case for standalone denoising.
2019-03-04Texture Paint: round corners of dilated UV seamsLuca Rood
This fixes the issue of long spikes on sharp corners by rounding them, guaranteeing that the bleed will never exceed the bleed distance set by the user in any part of the mesh. See: D4437
2019-03-04Fix texture paint UV dilation algorithmLuca Rood
Two aspects are addressed: - Correct computation of dilation distance, so that dilated boundaries remain parallel to the original boundaries (and with the actual distance specified as bleed distance). - Dilate with regard to adjacent seams instead of adjacent triangle edges, for a more correct result. This is especially important in the case of concave shapes, where spikes could overlap with actual geometry. See: D4436
2019-03-04Fix early output check in movie clip prefetchSergey Sharybin
Was preventing prefetching when clip is offset to a higher scene frame number than a duration of the clip.
2019-03-04Fix/workaround T62167: Random crash when displaying wireframes.mano-wii
Some old AMD drivers crash when a vbo with stride 1 is used a few times. I have not found a real solution to this problem. So the solution was to use a vbo with stride 4 (which in theory is less efficient and takes up more memory space).
2019-03-04Revert "DNA: optimize data reconstruction"Campbell Barton
This reverts commit 657205530cc680012734200a8babd6232be5ee92. This caused an T62181, looking into fix but revert for now.
2019-03-04Fix T62140: GPencil line segment disappearsCharlie Jolly
Remove code for when edge count is 2.
2019-03-04Outliner: better support for paintcurves ('Blender File' view)Philipp Oeser
- paintcurves were hitting an assert in outliner_add_element() - missing outliner update when adding a paintcurve - paintcurves were not showing an icon [they dont have a dedicated icon, took the one used elsewhere] Reviewers: brecht Differential Revision: https://developer.blender.org/D4445
2019-03-04Cleanup: indentation, styleCampbell Barton
2019-03-04Cleanup: use single quotes for enumsCampbell Barton
2019-03-04Merge branch 'blender2.7'Sergey Sharybin
2019-03-04Fix bad level callsSergey Sharybin
2019-03-04Fix T62009: ԥ abkhazian letter shows as a square in Blender.Bastien Montagne
Added all 'Extended Cyrillic' chars I found in DejaVuSans (unfortunately that one does not have the complete set). Note: At some point we might want to switch to some more modern solution than our Frankenstein font (thinking about noto one)...
2019-03-04Cycles: Store various render stages timingsSergey Sharybin
Includes time spent on synchronization and time spent on just path tracing/denoising.
2019-03-04Show metadata for rendered imagesSergey Sharybin
Previously metadata was only shown for images which are saved to disk. This change makes it so that it's possible to see metadata right after pressing F12.
2019-03-04Cleanup: IndentationSergey Sharybin
2019-03-04Add Thai language entry (hidden for until we get some translation).Bastien Montagne
2019-03-04Fix T62113: Color Management Curves CRGB buttons missingSebastian Parborg
Template was missing a type="COLOR" definition.
2019-03-04UI: Add descriptive tooltip to Curve Radius toolWilliam Reynish
Was previously just using generic transform tooltip.
2019-03-04UI: Rename Shrink/Fatten in curve contextual menu to fit with recent tool ↵William Reynish
name change
2019-03-04Cleanup: typo in commentPhilipp Oeser
spotted by @miclack, thx!
2019-03-04Fix unreported: Shrink/Fatten in Curve Transform menu fails because it was ↵William Reynish
calling the mesh edit mode operator
2019-03-04UI: Move paint context menus to panelsCampbell Barton
See proposal: T62130
2019-03-04Tools: Rename Curve Shrink/Fatten to RadiusWilliam Reynish
This is fundamentally different from Shrink/Fatten for meshes, because the control points are not moved, only the radius. Issue raised by Ronan Ducluzeau, name suggested by Campbell Barton
2019-03-04Icons: only use macOS override if blender not foundCampbell Barton
Otherwise `make icons_geom BLENDER_BIN=...` doesn't work as documented.
2019-03-04DRW: Remove unecessary state changesClément Foucault
The TODO is old and the issue does not seems to appear anymore. If bugs emerge from this commit it's most likely to be a bad usage of the API.