b6973ed760
Keymap: pressing leader key (Alt) again closes tool prompt
...
Provides a convenient way to close
if the tool prompt is opened by accident.
2019-11-15 14:36:16 +11:00
45a03057fa
Fix tool leader-key consuming mouse wheel events
2019-11-08 17:41:04 +11:00
6db9b443bb
Merge branch 'blender-v2.81-release'
2019-11-03 14:19:48 +11:00
93f93e6b45
Fix T71284: batch rename escape's dashes
2019-11-03 11:28:49 +11:00
2e2fd12a55
Cleanup: comments for is_path_builtin
...
Also reduce scope of import.
2019-10-31 18:01:58 +11:00
3252ef4aca
Cleanup: import functions from bpy.props
...
Some instances used bpy.props when the convention is to import them.
2019-10-31 18:00:18 +11:00
59b16e28d9
Fix tool leader-key in image space
...
- This wasn't working for tool-systems that use the space data.
- Don't activate when the keymap is empty.
2019-10-31 10:03:42 +11:00
b1b0e56a72
Fix T59065: Blender default keyset is deletable by user!
...
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-30 19:23:36 +01:00
48d1928798
Merge branch 'blender-v2.81-release'
2019-10-30 06:08:38 +11:00
cff00f6b04
Cleanup: pep8, remove redundant parenthesis
2019-10-30 05:50:17 +11:00
9e48cb1049
Merge branch 'blender-v2.81-release'
2019-10-30 00:17:01 +11:00
9389ad3736
Fix Proxy folder not getting deleted
...
D6145 by @Eitan
2019-10-30 00:14:08 +11:00
de152d0724
Tool System: Use tapping Alt as a leader key to switch tools
...
Now tapping Alt prompts for a second input to switch tools.
Initial implementation of T69992
2019-10-28 22:59:59 +11:00
d4a67fa87b
Merge branch 'blender-v2.81-release'
2019-10-28 10:31:52 +01:00
9f388c1646
Fix T71037: batch rename bones in pose mode throws exceptions
...
Maniphest Tasks: T71037
Differential Revision: https://developer.blender.org/D6122
2019-10-28 10:27:06 +01:00
eb559f2b24
Merge branch 'blender-v2.81-release'
2019-10-18 18:51:46 +11:00
acd98599ff
Fix T65397: Assigning shortcut to editor properties gives errors
2019-10-18 18:50:18 +11:00
2cdc187142
Merge branch 'blender-v2.81-release'
2019-10-14 17:40:06 +02:00
6b6b27fd13
Update Py API link in help menu to point to version dir also in beta.
...
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-14 17:39:17 +02:00
bde328352b
Cleanup: pep8
2019-10-12 10:26:37 +11:00
95199dca1f
Fix T70662: Batch rename adds "\" before "."
2019-10-09 15:13:58 +11:00
dccdc5df10
Fix T69933: Blender 2.81 doesn't import 2.80 preferences from quick setup screen
2019-10-07 19:41:58 +02:00
4031bc1478
Cleanup: quote use
2019-09-23 09:35:27 +10:00
a083ddf49b
Sequencer: correct fcurve map usage
2019-09-23 09:31:08 +10:00
29a7b1b64d
VSE: Remove the use of eval in Fades operators
...
Fix security issue introduced in rB2ec025d7be3c
Reviewed By: campbellbarton
Differential Revision: https://developer.blender.org/D5807
2019-09-22 13:38:39 -07:00
Yevgeny Makarov
7a83b64f7b
UI: Fix Capitalization
...
Differential Revision: https://developer.blender.org/D5716
2019-09-20 14:31:24 +02:00
Himanshi Kalra
60af4d207b
UI: Incorrect info message after batch rename
...
Differential Revision: https://developer.blender.org/D5744
2019-09-20 14:15:32 +02:00
3791d7abfd
UI: Consistent Tooltip for Add Torus Operator
...
Changes "Add" to "Construct" to be consistent with the other
primitive mesh add operations.
2019-09-19 13:52:46 -04:00
11b0c2080c
UI: use unique name for install add-on operator
...
Was called "Install", which isn't useful in operator search.
2019-09-17 18:18:50 +10:00
3618b2c359
Fix part of T65397: accidentally assigning shortcuts gives errors
...
This is not a proper solution, that will come later, this avoids the main
problematic error for now.
2019-09-16 14:33:19 +02:00
c9048e8e41
Sequencer: disable fades add/remove until eval() use is removed
...
2ec025d7be introduced 'eval()' on blend
file data-paths which can be used for code injection.
2019-09-15 10:59:31 +10:00
e9c18ea982
Cleanup: redundant code from recent sequence fade operator
...
No need to define class variables which are all overwritten,
also use __slots__ to avoid mistakes.
Remove redundant length check too.
2019-09-15 05:57:59 +10:00
14c160334d
Cleanup: remove duplicate information in docstring
...
No need to document all options in the doc-string
since each option has it's own description.
2019-09-15 05:43:34 +10:00
19fc50ca6f
Cleanup: pep8, unused args, indentation
2019-09-15 05:35:42 +10:00
2ec025d7be
VSE: Add operators to add and remove fades
...
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-13 17:24:42 -07:00
5d4cbbb16c
UI: don't mark batch rename as internal
...
Prevented it showing in operator search.
2019-09-14 02:39:58 +10:00
c8c3e7d284
Cleanup: trailing space, remove tabs, pep8
2019-09-10 06:17:59 +10:00
98d3a16281
Fix (unreported) Freestyle modifiers element-wise multiplication error
2019-09-09 10:46:25 +02:00
d865ac8b1b
Fix T69653: Freestyle modifiers "Distance from ..." python error
...
Was a wrong rename in rBaeb8e81f2741
2019-09-09 10:45:24 +02:00
f3a4f12ac0
Batch Rename: Rename Title Caps to Title Case
2019-09-08 17:40:46 -04:00
1b0dd5a215
Cleanup: style, spelling
2019-09-07 21:28:05 +10:00
d83f62e185
WM: batch rename support for regex groups
...
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-06 23:24:13 +10:00
Sebastian Koenig
83875e978d
Tracking: Enable "Render Undistorted" only if there is actual distortion
...
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-05 12:06:09 +02:00
c2a0f5c3d4
File Browser UI: Use 'Install' instead of ''Install Add-on from File...' as 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-05 10:21:24 +02:00
7f2b4c871e
WM: batch rename, regular expression support
...
Find/Replace can now use regular expressions.
2019-09-02 15:23:39 +10:00
a9e389b8c4
WM: make find/replace default for batch rename
...
Use this since it's a common operation for batch naming.
2019-09-02 01:57:39 +10:00
460e4024e8
WM: batch rename, material & object-data support
2019-09-02 00:58:39 +10:00
a5b1231de7
WM: batch rename operator
...
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-09-01 03:36:00 +10:00
61ff578eab
UI: add URL presets
...
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.
2019-08-20 23:44:18 +10:00
a942d97b79
Fix release notes showing twice in the splash-screen
2019-08-20 22:47:25 +10:00