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-04-21Fix T63764: error when using library.users_id() functionBrecht Van Lommel
Fix suggested by Vilem Duha.
2019-04-20Correct error in last commitCampbell Barton
2019-04-20UI: remove redundant row for header templateCampbell Barton
If it's members need to be aligned the template can handle it.
2019-04-20UI Overlays: Align checkbox with slider for Wireframes, X-Ray, Shadows.Pablo Vazquez
2019-04-20UI Overlays: One line layout for Mask opacity.Pablo Vazquez
Saves one line of space and matches Wireframe, X-Ray, Shadows.
2019-04-20UI: correct accidental removal of TOPBAR_PT_nameCampbell Barton
Mistake in 9573bf432c4b0
2019-04-203D View: add opacity for sculpt mask displayPablo Dobarro
This matches vertex/texture paint opacity options. Useful because 0.75 is sometimes too dark to see the surface shading. Resolves T63746
2019-04-19DRW: Expose VBO garbage collection timingsClément Foucault
This adds user side options to tweak the behavior of the vbo garbage collection.
2019-04-19UI: minor layout tweaks to 3D viewport gizmo menuBrecht Van Lommel
2019-04-19Keymap: add 'Adjust Last Operation' as F9Campbell Barton
Adding this back was a frequent request. Now the panel can be hidden - some users may prefer only to access this via a shortcut. Unfortunately this uses an F-Key we'd intended to keep free for users. This still keeps the middle block of F-Keys (5..8) free.
2019-04-19Keymap: add set start/end shortcuts to graph editorCampbell Barton
2019-04-19Keymap: restore Ctrl-Tab in the dopesheet (removed by accident)Campbell Barton
Mistake in 6aef124e7d2869a6
2019-04-19Correct cleanup marking keyword args unusedCampbell Barton
2019-04-19Cleanup: remove redundant poll functionsCampbell Barton
2019-04-19Cleanup: logical checks in UI scriptsCampbell Barton
2019-04-19Cleanup: trailing commasCampbell Barton
2019-04-19Cleanup: unused varsCampbell Barton
2019-04-19Cleanup: use staticmethod where appropriateCampbell Barton
2019-04-19Missing from last commitCampbell Barton
2019-04-19Cleanup: correct misleading classmethod argCampbell Barton
2019-04-19Cleanup: mark unused arguments in UI scriptsCampbell Barton
Quiet's pylint W0613 warning, also remove some unused args.
2019-04-19UI: move top-bar into the spaces headerCampbell Barton
Currently this is only in the 3D viewport however all spaces that use the tool-system will have this region added. D4680 by @brecht with own updates.
2019-04-18Images: support packing edited images as OpenEXR or PNG.Brecht Van Lommel
This way float and multilayer images can now be packed without data loss. This removes the as_png option and always uses the appropriate file format depending on the image contents.
2019-04-18UI: collapse 3D view collections visibility panel by default.Brecht Van Lommel
2019-04-18GPencil: Add option to mix color with textureAntonioya
This was already supported in Fill, but not in Strokes. This adds more artistic options when use textured strokes.
2019-04-18GPencil: Initialize variable to remove console warningAntonioya
2019-04-18Missing 2.7x keymap update from last commitCampbell Barton
2019-04-18PyAPI: remove support for importing text blocks as modulesCampbell Barton
Allowing direct import of text blocks isn't especially useful, instead add `text.as_module()` script authors can do this explicitly if it's needed. Now the text "Register" option executes instead of loading as a module. This removes the need to keep track of the current Main, and C code to override Python's import & reload.
2019-04-18UI: option to toggle 'Adjust Last Operation'Campbell Barton
2019-04-18UI: Expand Enum Items Over Multiple RowsJeroen Bakker
Expanding enum items in a small area would render the names with dots, what is a bad solution. When you use expand directly on a `grid_flow` or `column_flow`, it will render the items on multiple lines, giving more control to the developer. Reviewers: campbellbarton, brecht, mont29 Differential Revision: https://developer.blender.org/D4698
2019-04-18UI: move region toggling to propertiesCampbell Barton
Each space had separate operators, duplicating logic. Use RNA properties instead so adding the ability to toggle other region types (floating redo region for eg) doesn't need to have an extra operator per space type. It's also nicer to show a check-box for something which can be toggled.
2019-04-18Overlay Engine: Option to Disable AA Ortho GridJeroen Bakker
When in Axis alligned orthographic view a grid was always displayed. With this change the user can enable/disable this grid. The Grid is always visible and editable, but only rendered active when user is in quad view, or axis aligned ortho view. Reviewers: brecht, fclem Maniphest Tasks: T63517 Differential Revision: https://developer.blender.org/D4699
2019-04-18UI: don't expand selection tool option enumBrecht Van Lommel
This was taking too much space.
2019-04-17Fix T63674: Incorrect poll methods in node category classesnBurn
Differential Revision: https://developer.blender.org/D4697
2019-04-16Industry Compat keymap: Fix loop selectionWilliam Reynish
- Extending loops wasn't working correctly. This is now fixed. - Also added ability to deselect loops by holding Ctrl and double-clicking
2019-04-16Spline IK: support changing individual bone length via Y scaling.Alexander Gavrilov
Previously Spline IK provided only two choices: either scale the length of the bone chain to fit the length of the curve, or don't scale the bone in the Y dimension at all (ignoring effects of actually fitting to the curve due to curvature and curve object scale). This patch adds a new option to use the pre-IK Y scale of the bones to adjust their length when fitted to the curve, allowing individual posing control over the length of the segments. Reviewers: brecht Differential Revision: https://developer.blender.org/D4687
2019-04-16Cleanup: use keyword only args to rna_idprop_ui_createCampbell Barton
2019-04-16Python: add a utility function for creating custom properties.Alexander Gavrilov
Creating a fully functional custom property requires also setting up its limits, description, default value and static override status. It is complex enough to warrant providing an official utility. Currently boolean properties are technically int, but the utility pretends they are separate in case that eventually they are. Reviewers: campbellbarton Differential Revision: https://developer.blender.org/D4620
2019-04-16Fix tool system Python errors if there is no active object.Brecht Van Lommel
2019-04-16UI: Move Collection Visibility popover from 3D View header into the SidebarWilliam Reynish
It's more practical to use this from the Sidebar, and takes away one item from the crowded header. See T63527
2019-04-16GPencil: New Normalize All operatorAntonioya
This operator works similar to mesh operator but for Stroke and Points data. Also minor cleanup in Normalize operator.
2019-04-16GPencil: Add lock icon to Vertex Groups listAntonioya
Also check this flag in operators. Note: This is required for the development of the new Normalize All operator.
2019-04-16GPencil: New Normalize Weights operatorAntonioya
This works similar to mesh operator, but using Stroke and Points data.
2019-04-16Industry Compat Keymap: Use F-keys for viewpointsWilliam Reynish
Following user suggestion - Similar to some apps - Works better on laptops and desktops without numpads - Also fix some small inconsistencies with select more/less in Dopesheet
2019-04-16Fix T63189: missing double click for UV loop select and emulate MMBBrecht Van Lommel
2019-04-15GPencil: Hide UV factor for Dots and BoxesAntonioya
This parameter is not used with these modes.
2019-04-15UI: move gizmo popover next to the overlay buttonsCampbell Barton
In paint modes this was the only button in the middle.
2019-04-15Industry Compat Keymap: Tool shortcutsWilliam Reynish
- Use C for Cursor tool - Use D for Annotate tool - Use tool shortcuts in UV Editor (although it's weak here still - waiting for Move, Rotate & Scale tools here)
2019-04-15GPencil: New Dots gradientAntonioya
This commit adds support for drawing Dots strokes with a gradient factor to get artistic effects like watercolor. Currently, the option is only supported by Dots materials, and in the future will be added to line strokes, but now there is a limitation on drawing engine and we will keep disabled on Line materials. Also, added the option to align Dots and Boxes strokes textures aligned with the drawing path to get more fluid strokes.
2019-04-15Industry Compat Keymap: Panning consistencyWilliam Reynish
- Allow orbiting while using Knife tool - Use consistent panning keys in properties lists - Also fix warning related to empty View 3D Generic keymap