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
2018-10-31Cleanup style :|Dalai Felinto
So much for saving time by copying existing patches from phabricator.
2018-10-31Multi-Objects: CURVE_OT_duplicateDalai Felinto
2018-10-30Multi-Objects: CURVE_OT_extrudeDalai Felinto
2018-10-30Multi-Objects: CURVE_OT_spinDalai Felinto
2018-10-30Multi-Objects: CURVE_OT_dissolve_vertsDalai Felinto
2018-10-30Multi-Objects: CURVE_OT_de_select_lastHabib Gahbiche
Reviewers: dfelinto https://developer.blender.org/D3841
2018-10-30Multi-Objects: CURVE_OT_de_select_firstHabib Gahbiche
Reviewers: dfelinto https://developer.blender.org/D3839
2018-10-30Multi-Objects: CURVE_OT_select_nthDalai Felinto
Based on D3407 by Daniel Griffin.
2018-10-30Fix broken 'search pointer' UI since this morning.Bastien Montagne
Own rB4669c3692cc4f broke completely those searchbox pointers UI widgets... This is a quick fix, better name handling is for tomorrow.
2018-10-30UI: Cleanup typos and minor tweaks to Grease Pencil related textPablo Vazquez
First pass on adding articles, capitalize Grease Pencil, use 'keyframes' instead of 'frames' when possible, and other minor adjustments.
2018-10-30Fix T56865: Selection of bones not working properly if the option `In Front` ↵mano-wii
(old X-ray) is enabled Differential Revision: https://developer.blender.org/D3828
2018-10-30Partial fix to T56865: X-ray modes does not work for the weight paint overlay.mano-wii
Part of the D3828 review.
2018-10-30UI: Make Wireframe size respect DPI settingsClément Foucault
2018-10-30Fix outliner scrollbar overlapping icons.Roel Koster
Differential Revision: https://developer.blender.org/D3650
2018-10-30Fix T56499: Adapt incremental snapping to orthographic viewport scale.mano-wii
2018-10-30GP: New Fade no active layer overlay optionAntonioya
This option allows to fade all layers except active one. This can help in very crowded scenes with a lot of layers, to verify you are working in the right one.
2018-10-30Fix T57517: multires displacement baking relative to smooth base mesh not ↵Brecht Van Lommel
working. When baking relative to multires level 0, it would apply one level of simple subdivision still, which gave artifacts.
2018-10-30Object Mode: Grid: Allow more subdivision in orthographic viewsClément Foucault
2.7x was displaying 2 additional subdivision for theses views. Bumping to 3 just to say we improved it! Hypothetically it can be increased as much as we want but float precision can quickly become an issue.
2018-10-30UI: Fix point size and line width ignoring UI scaling optionClément Foucault
2018-10-30Object Mode: Grid: Reduce line thickness a tiny bit and apply UI scalingClément Foucault
2018-10-30Fix T57512: Creating a full copy scene doens't support parenting.Bastien Montagne
Will say it once again: we should really, really switch all that duplicating code to proper use of new ID management API :(
2018-10-30PyAPI: GPU: improve GPUShader.from_builtin and GPUShader.code_from_builtin ↵mano-wii
description.
2018-10-30Fix wrong grease pencil modifier show viewport/render icons.Brecht Van Lommel
2018-10-30GP: Back Stroke projection modeAntonioya
Back the old 2.7x stroke mode when drawing. This mode try to project the new strokes over the previous strokes.
2018-10-30GP: Cleanup unusedAntonioya
2018-10-30GPU: Extend mac blitting workaround to AMD Radeon R9 famillyClément Foucault
2018-10-30Add 'O' for Overrides to our key-coded ID UI-names generator.Bastien Montagne
2018-10-30Add library-hint to datablock search menus.Bastien Montagne
We had those for ID templates, but it's also tremendously useful for regular ID pointers UI, since often you can get local and linked data-block with same exact name... Fetaure request from Spring team (and long due TODO...).
2018-10-30GPU: Fix faulty mac gpu detectionClément Foucault
2018-10-30PyAPI: Use 'None' arg to clear header textCampbell Barton
2018-10-30PyAPI: Support for 'None' string args from PythonCampbell Barton
This is needed because some RNA functions differentiate a NULL 'char *' argument from an empty string. Previously a NULL argument could be passed when the C definition defined the default as NULL and the argument wasn't passed which is a fairly hidden way of handling things. Now strings use `PROP_NEVER_NULL` by default which can be cleared for function arguments that allow None -> NULL.
2018-10-30Multi-Object EditMode: curve deleteCampbell Barton
D3859 by @zazizizou
2018-10-30Sequencer: replace notifier /w message-busCampbell Barton
2018-10-30Cleanup: keep RNA types sortedCampbell Barton
2018-10-30Fix memory leak in workspace menuCampbell Barton
2018-10-30UI: add uiItemMenuFN which frees it's argumentCampbell Barton
2018-10-30Fix crash adding workspaceCampbell Barton
2018-10-30UI: Support using Ctrl+Scrollwheel to cycle properties editor tabsJulian Eisel
Small side effect is that area operators (toggle fullscreen/maximized, duplicate area) are now displayed in RMB-menu. Makes sense anyway.
2018-10-30UI: Move Properties editor context path into headerJulian Eisel
This will probably be a temporary solution to fill empty space, for until we have a search button there. Hence, I made this optional using a compile flag.
2018-10-30WM: correct description for header/status_text_setCampbell Barton
Make text a required argument for both.
2018-10-303D View: use 1.0 opacity for wpaint shadingCampbell Barton
Now the colors are multiplied, faded color isn't useful to see weights. Matches 2.7x behavior.
2018-10-30Eevee: Fix clearcoat materials not recieving AOClément Foucault
2018-10-29UI: Vertical Properties Editor TabsJulian Eisel
Moves the Properties editor context switching to a vertical tabs region. Design Task: T54951 Differential Revison: D3840 The tabs are regular widgets, unlike the 'old' toolshelf tabs. This means they give mouse hover feedback, have tooltips, support the right-click menu, etc. Also, when vertical screen space gets tight, the tabs can be scrolled, they don't shrink like the toolshelf ones. The tab region is slightly larger than the header. The tabs are scaled up accordingly. This makes them nicely readable. The header is quite empty now. As shown in T54951, we wanted to have a search button there. This should be added next. Implementation Notes: * Added a new region type, RGN_TYPE_NAVIGATION. * Having the tabs in a separate region allows scrolling of the tab-bar, unlike the toolshelf tabs. We might want to remove the scrollbars though. * Added a new region flag RGN_FLAG_PREFSIZE_OR_HIDDEN, to ensure the tab region is either hidden or has a fixed size. * Added some additional flags to support fine-tuning the layout in panel and layout code. * Bumps subversion.
2018-10-29UI: Support Displaying Enums as TabsJulian Eisel
Adds `uiLayout.prop_tabs_enum(data, property, icon_only)` to BPY.
2018-10-29Dope Sheet: new option to display keyframe interpolation mode and extremes.Alexander Gavrilov
With the new automatic handle algorithm, it is possible to do a lot of the animation via keyframes without touching the curves. It is however necessary to change the keyframe interpolation and handle types in certain cases. Currently the dopesheet/action editor allows changing the types, but does not show them in any way. To fix, add a new menu option to display this information. For handle type, it is represented using the shape of the key icons: diamond for Free, clipped diamond for Aligned, square for Vector, circle for Auto Clamp, and cirle with dot for Automatic. Non-bezier interpolation is a property of intervals between keys, so it is marked by drawing lines, similar to holds. In this initial version, only the fact of non-bezier interpolation is displayed, without distinguishing types. For summaries, the line is drawn at half alpha if not all curves in the group are non-bezier. In addition, it is sometimes helpful to know the general direction of change of the curve, and which keys are extremes. This commit also adds an option to highlight extremes, based on comparing the keyed values with adjacent keys. Half-intensity display is used for overshot bezier extremes, or non-uniform summaries. Reviewers: brecht, aligorith, billreynish Differential Revision: https://developer.blender.org/D3788
2018-10-29UI: icon set updates Andrzej Ambroz, and various fixes.William Reynish
* Text editor word wrap, line numbers & syntax toggles now use consistent icons that don’t change when you enable or disable them. * Replaced icon toggle buttons in the snapping popover with normal checkboxes and descriptive text labels. This makes it clearer which item is the main radio button, is more consistent with other popovers, and allows us to use more descriptive text. * Added correct icons for grease pencil add menu. * Added bespoke icons for grease pencil modifiers. * Added icon for particle instance modifier. * Added icon for fake user on & off states. * Added correct icons for enabling/disabling modifiers in the dopesheet & f-curve editor. * Made it so the restrict viewport & restrict render toggles for modifier update correctly when enabled or disabled, by flipping the order in the icon sheet. This also required changing the outliner to match. * Removed the few old remaining icons in the old style and made sure to replace the last places where they were used. * Updated many icons to be clearer & more consistent.
2018-10-29UI: allow off/on icons to be in reverse order.Brecht Van Lommel
The same icons are reused for "hide" and "show" properties, which need to be in reverse order compared to each other.
2018-10-29Cleanup: remove unused RNA flag.Brecht Van Lommel
2018-10-29Depsgraph: use full operation key to preserve update tags on rebuild.Alexander Gavrilov
The key used by find_operation consists of the operation code, node name, and an index for array property drivers. All three elements are required to unambiguously look up a node.
2018-10-29Fix T57488: crash in Shrinkwrap constraint due to unsafe multi-threading.Alexander Gavrilov
- Constraints must not use mesh_get_eval_final as it isn't thread-safe. - Depsgraph should keep lastDataMask when re-running COW.