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
2020-06-05UI: Drag and Drop Modifiers, Layout UpdatesHans Goudey
This patch implements the list panel system D7490 for modifiers. It also moves modifier drawing to a callback in ModifierTypeInfo in line with the extensible architecture refactoring goal T75724. This adds a PanelRegister callback and utilities for registering panels and subpanels. It also adds the callbacks for expansion saving and drag and drop reordering described in D7490. These utilities, callbacks, and other common UI elements shared between modifiers live in MOD_ui_common.c. Because modifier buttons are now in panels, we can make use of subpanels for organization. The UI layouts also use the single column layout style consistently used elsewhere in Blender. Additionally, the mode-setting buttons are aligned and ordered consistently with the outliner. However, the large number of UI changes in this patch may mean that additional polishing is required in master. Thanks to William Reynish (@billreynish) who did a fair amount of the layout work and to Julian Eisel (@Severin) for consistent help. Differential Revision: https://developer.blender.org/D7498
2020-06-05Sequencer: split select side of frame out of the select operatorCampbell Barton
The select operator was getting overloaded with functionality unrelated to selecting the strip at the mouse position. - Don't save settings, allowing the keymap only to include non-default options. - Fix selecting strips overlapping the current frame overwrite all flags.
2020-06-05Fix accessing online manual for PropertyGroupsCampbell Barton
Alternate fix for the issue raised in D7837
2020-06-04Fix T77367: Blender's snap package ignores command line optionsCampbell Barton
2020-06-04Fix Grease Pencil panel showing as first panel in render propertiesBrecht Van Lommel
Move it lower next to the Freestyle panel.
2020-06-04Merge branch 'blender-v2.83-release'Brecht Van Lommel
2020-06-04Cleanup: move auto-execute operators into userpref_ops.cCampbell Barton
2020-06-03Linux: update appdata for 2.83 releaseBrecht Van Lommel
2020-06-03Fix broken split layout in encoding optionsJulian Eisel
The "Max B-frames" options were misplaced. Uses the usual layout of a checkbox together with the number button now. Reported by Peter Fog (@tintwotin), thanks!
2020-06-03Fix T77203: Mantaflow Bake All cannot be resumedSebastián Barschkis
The manual is also more explicit about this now (rBM6725).
2020-06-03Ensure submodules are at correct commits for 2.83Nathan Letwory
2020-06-03Splash: new image for 2.83 by Ian HubertNathan Letwory
2020-06-03Fix app-template warning disabling a template without a Python moduleCampbell Barton
2020-06-03Fix T67577: Add-on unregister can't access preferences on factory resetCampbell Barton
2020-06-02Revert "UI: Fix T77173: Report Background Colors for 2.83 Release"Hans Goudey
This reverts commit 7fc0053c27e5e9ba3cc946898c7c11a8545f2777.
2020-06-02Merge branch 'blender-v2.83-release'Hans Goudey
2020-06-02UI: Fix T77173: Report Background Colors for 2.83 ReleaseHans Goudey
This is a temporary solution for T77173 for the 2.83 release. D7203 provides a more long term solution for future releases. This adds theme colors for the three report backgrounds, setting them to the color used in 2.82. A separate commit in the addons repository will follow for changes to the bundled themes. Differential Revision: https://developer.blender.org/D7908
2020-06-02Depsgraph: Remove unneeded `RNA_path_resolve`Jeroen Bakker
Found during research of {T77124}. In `build_driver_data` an identical RNA_path is resolved twice. In stead of resolving it twice this patch will construct the `property_exit_key` based on the resolution of `property_entry_key`. This change isn't noticeable for users. Just a cleanup as it isn't needed to do the same logic twice. Reviewed By: Sergey Sharybin Differential Revision: https://developer.blender.org/D7872
2020-06-02UI: rename Cycles point light Size to Radius, for consistency and clarityJohan Walles
Differential Revision: https://developer.blender.org/D7888
2020-06-01Sculpt: Cloth FilterPablo Dobarro
This tool is similar to the cloth brush, but it applies the cloth simulation deformation to the whole mesh in an uniform way. The simulation can be controlled using the mask to pin vertices and the face sets to define force action areas. It uses the same solver as the cloth brush which now no longer depends on StrokeCache. Reviewed By: sergey Differential Revision: https://developer.blender.org/D7857
2020-06-01Sculpt: Pose Brush Face Sets FK modePablo Dobarro
This Pose Brush origin mode simulates an FK deformation in the entire model when clicking on the face sets, as they were controls of a fully rigged character. Combined with the previous Face Sets modes that allow creating IK chains, the pose brush should now be able to simulate most of the common rigs deformations. Reviewed By: sergey Differential Revision: https://developer.blender.org/D7839
2020-06-01Fix T77139: UI: Add "View Camera Center" to View MenuHans Goudey
The "View Camera Center" operator was not accessible by the new menu search. Differential Revision: https://developer.blender.org/D7865
2020-06-01UI: rename "Select Playhead" to "Select -> Side of Current Frame"Campbell Barton
Make this consistent with meshes select side of active, also rename "Under" to "Overlap" as this is confusing since strips can be considered above/under each other relative to their channels.
2020-06-01UI: use term current frame instead of playheadCampbell Barton
Avoid mixing different terminologies up, current frame is used in a majority of Blender.
2020-06-01VSE UI: Text panel adjustmentsPeter Fog
This patch adjusts a number of text panel elements: - The text entry widget has become larger in order to distinguish it from the strip name. - Wrap has been moved up under the text, since this doesn't relate to bounding box. - Alignment X/Y has been renamed to Anchor X/Y, since this is the achor point of the text point, and not the Alignment of the text. - Offset and Crop was completely missing from the Text strip panel, these has been added. Reviewed By: billreynish Differential Revision: https://developer.blender.org/D7869
2020-06-01VSE UI: Add a proxy menu to Preview/View menuPeter Fog
Add Proxy Setup, Build and View to a menu in the Preview View menu. Reviewed By: ISS, billreynish, pablovazquez Differential Revision: https://developer.blender.org/D7734
2020-06-01VSE: Use color picker for color strip.Peter Fog
Reviewed By: billreynish, ISS Differential Revision: https://developer.blender.org/D6114
2020-06-01VSE: Add select under playhead, and shortcuts for left, right, under.Peter Fog
Add `UNDER` option for `left_right` property of `sequencer.select` operator. Add Equal as shortcut for select under playhead, and move Insert Gaps to backspace + ctrl. Add extend shortcut for left, right under options. The function is added to Select > Playhead menu. Reviewed By: ISS Differential Revision: https://developer.blender.org/D7679
2020-05-29Cleanup: Use Consistent Capitalization of "Anti-Aliasing"Aaron Carlisle
2020-05-29Modifiers: add invert vgroup weights options to operands of Mix modifier.D. O
Please note that vertices which are in a vgroup are not affected by this option (which means that affected vertices from 'selection' modes remain the same). Only the weights of selected vertices get inverted. Reviewed By: mont29 Differential Revision: https://developer.blender.org/D7811
2020-05-29Merge branch 'blender-v2.83-release'Brecht Van Lommel
2020-05-29Blender: change bugfix release versioning from a/b/c to .1/.2/.3Brecht Van Lommel
The file subversion is no longer used in the Python API or user interface, and is now internal to Blender. User interface, Python API and file I/O metadata now use more consistent formatting for version numbers. Official releases use "2.83.0", "2.83.1", and releases under development use "2.90.0 Alpha", "2.90.0 Beta". Some Python add-ons may need to lower the Blender version in bl_info to (2, 83, 0) or (2, 90, 0) if they used a subversion number higher than 0. https://wiki.blender.org/wiki/Reference/Release_Notes/2.83/Python_API#Compatibility This change is in preparation of LTS releases, and also brings us more in line with semantic versioning. Fixes T76058. Differential Revision: https://developer.blender.org/D7748
2020-05-29Keymap: remove explicit 3D cursor entry for add toolCampbell Barton
Passing through events to place the cursor, as other tools do.
2020-05-29PyAPI: use bpy_rna_types_capi.c to set type methodsCampbell Barton
Remove use of '_bpy' as an intermediate module to store functions which were then assigned in bpy_types.py.
2020-05-29Keymap: swap shift and alt for interactive add toolCampbell Barton
Match original proposal.
2020-05-29Cleanup: line length, single quote enums, invalid URLCampbell Barton
2020-05-29Docs: replace warnings with note for complexity informationCampbell Barton
Reserve warnings for situations such as corrupt data which can cause crashes.
2020-05-28VSE UI: Add buttons for swap Effect strip inputsPeter Fog
The feature where the active strip determines what strip will be the first input in effect strips can be quite a puzzle for users. The operator to swap the inputs is hidden in the Strip menu. This adds the swapping to the Effect sidebar panel. Differential Revision: https://developer.blender.org/D7849
2020-05-28VSE UI: Move Scene strip and Mask strip above Adjustment in SidebarPeter Fog
This is consistent with the other strip specific properties. Differential Revision: https://developer.blender.org/D7677
2020-05-28VSE UI: Rename Scene Strip Panel and Move View Panel UpPeter Fog
- Rename "Scene Preview/Render" to "Scene Strip Display", since this relates to Scene Strips. - Move the "Scene Strip Display" down, so the view settings are on top. Differential Revision: https://developer.blender.org/D7676
2020-05-28VSE UI: Group Show Elements in View Menu, Use Consistent NamingPeter Fog
Use the "Show..." syntax for Show elements in View menu. Differential Revision: https://developer.blender.org/D7344
2020-05-28UI: Use Heading to Remove Text strip Shadow SubpanelPeter Fog
The new "heading=" option allows for a more simple way to expose the Text strip Shadow operator. Differential Revision: https://developer.blender.org/D7535
2020-05-28Object: new add object tool, currently for primitive typesCampbell Barton
- Interactively adding primitives with two clicks. - Scene orientation used for new objects. - Depth [view-plane, axis-plane, surface] - Origin [base, center] - Primitive types [cube, cylinder, cone, uv-sphere, ico-sphere ] - Settings for object types in the top-bar. Shortcuts: - Snapping (Ctrl). - Constrain 1:1 aspect (Shift). - Toggle center (Alt). Part of T57210 design task.
2020-05-26Modifiers: Add normalize weights option to vertex weight modifiersCody Winchester
Original patch by Cody Winchester (@CodyWinch), several fixes and cleanup by Bastien Montagne (@mont29). Differential revision: https://developer.blender.org/D7656
2020-05-26Merge branch 'blender-v2.83-release'Philipp Oeser
2020-05-26Fix T77082: Greasepencil error accessing material dropdown on an object ↵Philipp Oeser
without materials Differential Revision: https://developer.blender.org/D7841
2020-05-26Merge branch 'blender-v2.83-release'Philipp Oeser
2020-05-26Fix T77067: GPencil Object without materials cannot use Vertex Color modeAntonio Vazquez
2020-05-26Curves: Implement Handles for selected points onlyAntonio Vazquez
When editing a complex curve is very annoying to have all handles at a time. Also, this is a requirement for the current GSoC Edit Grease Pencil using curves. I have seen that this improvement can be used in any other area of blender, so I have decided to publish the option in the overlay panel.. Reviewed By: fclem, #user_interface, billreynish, Severin Differential Revision: https://developer.blender.org/D7754
2020-05-25Fix T77051: IC keymap hotkey conflict in mode switching with GP objectWilliam Reynish