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-12-06Tool System: experimental fallback tool supportCampbell Barton
Implement T66304 as an experimental option, available under the preferences "Experimental" section. - When enabled most tools in the 3D view have a gizmo. - Dragging outside the gizmo uses the 'fallback' tool. - The fallback tool can be changed or disabled in the tool options or from a pie menu (Alt-W).
2019-11-15Keymap: pressing leader key (Alt) again closes tool promptCampbell Barton
Provides a convenient way to close if the tool prompt is opened by accident.
2019-11-08Fix tool leader-key consuming mouse wheel eventsCampbell Barton
2019-11-03Merge branch 'blender-v2.81-release'Campbell Barton
2019-11-03Fix T71284: batch rename escape's dashesCampbell Barton
2019-10-31Cleanup: comments for is_path_builtinCampbell Barton
Also reduce scope of import.
2019-10-31Cleanup: import functions from bpy.propsCampbell Barton
Some instances used bpy.props when the convention is to import them.
2019-10-31Fix tool leader-key in image spaceCampbell Barton
- This wasn't working for tool-systems that use the space data. - Don't activate when the keymap is empty.
2019-10-30Fix T59065: Blender default keyset is deletable by user!Sebastian Parborg
Previously, you could delete presets that were part of the blender default install. Now we check if the preset file resides in the bundled file paths. If so, prevent deletion of the preset. Reviewed By: Campbell Differential Revision: http://developer.blender.org/D4522
2019-10-29Merge branch 'blender-v2.81-release'Campbell Barton
2019-10-29Cleanup: pep8, remove redundant parenthesisCampbell Barton
2019-10-29Merge branch 'blender-v2.81-release'Campbell Barton
2019-10-29Fix Proxy folder not getting deletedCampbell Barton
D6145 by @Eitan
2019-10-28Tool System: Use tapping Alt as a leader key to switch toolsCampbell Barton
Now tapping Alt prompts for a second input to switch tools. Initial implementation of T69992
2019-10-28Merge branch 'blender-v2.81-release'Philipp Oeser
2019-10-28Fix T71037: batch rename bones in pose mode throws exceptionsPhilipp Oeser
Maniphest Tasks: T71037 Differential Revision: https://developer.blender.org/D6122
2019-10-18Merge branch 'blender-v2.81-release'Campbell Barton
2019-10-18Fix T65397: Assigning shortcut to editor properties gives errorsCampbell Barton
2019-10-14Merge branch 'blender-v2.81-release'Bastien Montagne
2019-10-14Update Py API link in help menu to point to version dir also in beta.Bastien Montagne
Now that we have beta and master in parallel, we cannot point to API doc from master in beta builds of incoming release anymore.
2019-10-12Cleanup: pep8Campbell Barton
2019-10-09Fix T70662: Batch rename adds "\" before "."Campbell Barton
2019-10-07Fix T69933: Blender 2.81 doesn't import 2.80 preferences from quick setup screenBrecht Van Lommel
2019-09-23Cleanup: quote useCampbell Barton
2019-09-23Sequencer: correct fcurve map usageCampbell Barton
2019-09-22VSE: Remove the use of eval in Fades operatorsNathan Lovato
Fix security issue introduced in rB2ec025d7be3c Reviewed By: campbellbarton Differential Revision: https://developer.blender.org/D5807
2019-09-20UI: Fix CapitalizationYevgeny Makarov
Differential Revision: https://developer.blender.org/D5716
2019-09-20UI: Incorrect info message after batch renameHimanshi Kalra
Differential Revision: https://developer.blender.org/D5744
2019-09-19UI: Consistent Tooltip for Add Torus OperatorHans Goudey
Changes "Add" to "Construct" to be consistent with the other primitive mesh add operations.
2019-09-17UI: use unique name for install add-on operatorCampbell Barton
Was called "Install", which isn't useful in operator search.
2019-09-16Fix part of T65397: accidentally assigning shortcuts gives errorsBrecht Van Lommel
This is not a proper solution, that will come later, this avoids the main problematic error for now.
2019-09-15Sequencer: disable fades add/remove until eval() use is removedCampbell Barton
2ec025d7be3ca9f3fd2fe0ac844ef70c69e7af55 introduced 'eval()' on blend file data-paths which can be used for code injection.
2019-09-14Cleanup: redundant code from recent sequence fade operatorCampbell Barton
No need to define class variables which are all overwritten, also use __slots__ to avoid mistakes. Remove redundant length check too.
2019-09-14Cleanup: remove duplicate information in docstringCampbell Barton
No need to document all options in the doc-string since each option has it's own description.
2019-09-14Cleanup: pep8, unused args, indentationCampbell Barton
2019-09-14VSE: Add operators to add and remove fadestemp-npr-smooth-contourRichard Antalik
Fades add: Adds or updates a fade animation for either visual or audio strips. Fade options: - In, Out, In and Out create a fade animation of the given duration from the start of the sequence, to the end of the sequence, or on boths sides - From playhead: the fade animation goes from the start of sequences under the playhead to the playhead - To playhead: the fade animation goes from the playhead to the end of sequences under the playhead By default, the duration of the fade is 1 second. Fades clear: Removes fade animation from selected sequences. Removes opacity or volume animation on selected sequences and resets the property to a value of 1.0. Works on all types of sequences. Author: gdquest Reviewed By: ISS Differential Revision: https://developer.blender.org/D5166
2019-09-13UI: don't mark batch rename as internalCampbell Barton
Prevented it showing in operator search.
2019-09-09Cleanup: trailing space, remove tabs, pep8Campbell Barton
2019-09-09Fix (unreported) Freestyle modifiers element-wise multiplication errorPhilipp Oeser
2019-09-09Fix T69653: Freestyle modifiers "Distance from ..." python errorPhilipp Oeser
Was a wrong rename in rBaeb8e81f2741
2019-09-09Batch Rename: Rename Title Caps to Title CaseAaron Carlisle
2019-09-07Cleanup: style, spellingCampbell Barton
2019-09-06WM: batch rename support for regex groupsCampbell Barton
Optionally use regular expressions for the destination name, allows re-ordering words while renaming. Initial patch by @jmztn with error handling and UI changes.
2019-09-05Tracking: Enable "Render Undistorted" only if there is actual distortionSebastian Koenig
Applies to "Setup Tracking Scene" operator which configures background images for the viewport. Solves unnecessary slowdown and higher memory usage when camera's model does not have any effective distortion. Differential Revision: https://developer.blender.org/D5520
2019-09-05File Browser UI: Use 'Install' instead of ''Install Add-on from File...' as ↵William Reynish
the name of the execute button The old name didn't fit inside the button, and this fits with simpler Open/Save labels too.
2019-09-02WM: batch rename, regular expression supportCampbell Barton
Find/Replace can now use regular expressions.
2019-09-01WM: make find/replace default for batch renameCampbell Barton
Use this since it's a common operation for batch naming.
2019-09-01WM: batch rename, material & object-data supportCampbell Barton
2019-08-31WM: batch rename operatorCampbell Barton
Matches rename active, supports objects, bones, sequence strips & nodes. Support chaining actions, these can be extended, initially support: - set/prefix/suffix - search replace - stripping characters - capitalization.
2019-08-20UI: add URL presetsCampbell Barton
This adds a url-preset operator to simplify opening re-usable links. - Standard websites have their own tool-tip. - De-duplicate logic to get URL's that include version information. - Reporting bugs no longer needs to have all information included in the URL. D5498 by @luisbg with edits.