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-07-31UI: tweak naming in snapping popover to be "Snap with" and "Snap to"EitanSomething
To replace "Target" and "Snapping", this should be more clear. Differential Revision: https://developer.blender.org/D5242
2019-07-31Sculpt/Paint: Brush curve presetsPablo Dobarro
This patch introduces the same presets that are used for proportional editing in the brush falloff menu. The user can select any of these presets or use the regular custom falloff curve. The presets are hardcoded formulas, so the falloff curve is not used when they are active. This change improves the general feeling of the brushes and it is more convenient and simpler to use. The CUSTOM curve option should now be used in the case that an unusual deformation is needed, in other cases, the hardcoded curve presets should be the default. The smooth curve presets is a must in the grab brush, as it fixes the deformation issue with the current custom curve setting. The user may try to adjust the deformation by tweaking the curve, but it is nearly impossible to replicate this desired behavior. {F7636217} Other brushes that are included in the sculpt branch also rely on this as they need specific hardcoded falloffs to produce the desired effect. Reviewers: brecht, billreynish Reviewed By: brecht Subscribers: JulienKaspar Differential Revision: https://developer.blender.org/D5367
2019-07-31FFmpeg: Added writing of WebM containersSybren A. Stüvel
This commit adds support for the WebM container. Previously we only supported the WebM/VP9 video codec, but still required that it was stored in a Matroska, MP4, or other compatible container format. Reviewed By: brecht Differential Revision: https://developer.blender.org/D5156
2019-07-30Fix T67906: empty menus for hooks if non-hook modifiers are presentPhilipp Oeser
2019-07-29GPencil: Remove Annotations panel from non-preview Sequencer areasAntonioya
Fix by: Peter Fog (@tintwotin) I did some small changes to original differential code. Differential Revision: http://developer.blender.org/D5306
2019-07-29Fix T67331: Annotations: Rename old grease pencil panelsAntonioya
These panels were using the old names, but now they are not grease pencil, but annotations. Also removed old Tools panel. This must be replaced with new Toolbar
2019-07-29Fix T67338 : GPencil Disable material properties when material is lockedAntonioya
When the material was locked, the properties were deactivated but not disabled. Differential Revision: http://developer.blender.org/D5309
2019-07-28Cleanup: pep8Campbell Barton
2019-07-26WM: Pre-fill bug-reports for addonsmano-wii
This is an increment of the proposed changes in D4507. Differential Revision: https://developer.blender.org/D5303
2019-07-23Fix T63775: Toolbar icons ignore BLENDER_SYSTEM_DATAFILESCampbell Barton
The environment variable to locate system data-files was ignored by toolbar icons. Add bpy.utils.system_resource to match Blender's internal data-file access.
2019-07-19GPencil: Fix showing wrong material in brush panel with pinningAntonioya
The options of the material are from object material not pinned material. If the brush is pinned, the material must be the brush material and not the object material.
2019-07-17UI: remove button to enable auto-save after load factory preferencesCampbell Barton
Based on feedback from T66675, the current interface is confusing, leading to users accidentally overwriting their preferences. Now, once factory settings are loaded preferences are not saved and the save button is shown (as when auto-save is disabled). Tool tips note that factory settings require manual saving afterwards. Also rename preference menu items for better consistency (settings/state -> preferences).
2019-07-15Fix showing "__pycache__" in templates menuCampbell Barton
2019-07-15Fix T66953: Duplicate items in pose context menuCampbell Barton
2019-07-12Fix AttributeError in mesh properties panel when mesh is pinnedSybren A. Stüvel
When a mesh datablock is pinned in the properties panel, `context.object` is `None`. This in turn causes `obj.mode` to raise an `AttributeError` exception as `None.mode` doesn't exist. Since there is no (fast/simple) way to check whether the owning object is in edit mode or not, the properties will be disabled. Not ideal, but better than spewing an exception on every panel draw. Reviewed By: campbellbarton, brecht Differential Revision: https://developer.blender.org/D5237
2019-07-12Fix T66675: Auto-Save override button has no tooltipCampbell Barton
2019-07-10Splash: use red heart icon for development fundBrecht Van Lommel
Now that the development fund image will disappear from the splash, this draws a little more attention to this link.
2019-07-10Fix T66560 Sequencer: Shortcut keys no showing in menu for 'Move' and ↵Sebastian Parborg
'Refresh All' The menu shortcut context for 'Refresh All' was wrong and the actual operation exectuted in the menu for the 'Move' command was different from the shortcut.
2019-07-10Cleanup: avoid accessing same vars multiple timesCampbell Barton
2019-07-10UI: use a label for strip 'frame_final_end'Campbell Barton
This is intended for Python access and allows temporary negative frames which is a problem when accessed from the UI. This allows: seq.frame_final_start, seq.frame_final_end = frame_range However it allows invalid sequence strips, using a label is fine since there is a duration property here which can change the length.
2019-07-10Cleanup: reserve single quotes for enumsCampbell Barton
2019-07-10Revert strip start property to strip_startRichard Antalik
Using strip_final_start affects strip offset while not moving content.
2019-07-09Implement Movieclip filter for action editorsSergey Sharybin
Allows to disable keyframes from movie clips in dopesheet. Reviewers: brecht Reviewed By: brecht Subscribers: sebastian_k Differential Revision: https://developer.blender.org/D5203
2019-07-08Fix (unreported) UI: useless setting shown for Text data-blocks.Bastien Montagne
Since we do not have start/end settings for bevel object for Text, mapping taper to those ends makes no sense here, we can hide that setting.
2019-07-08Fix T66517: Clip editor doesn't respect the 2D cursorSergey Sharybin
Was caused by 91b768ccb1f4 which re-defined masks menu with the wrong invoke type.
2019-07-07Cleanup: unused vars, redundant parenthisisCampbell Barton
2019-07-07Cleanup: use static setCampbell Barton
2019-07-07GPencil: Hide reference points when use Parallel or Grid guideAntonioya
These options are not used by these modes. Detected while writing the manual.
2019-07-07Fix T66493: Enable Add-on name not showing in favoritesCampbell Barton
2019-07-07Fix Filter Add-ons panel display for missing add-onsCampbell Barton
Check the add-on exists before getting it's info.
2019-07-07Cleanup: rename gpencil chess -> checkerCampbell Barton
Match existing texture name.
2019-07-05Fix T66404: knife tool doesn't use knife cursorCampbell Barton
2019-07-01Revert "Rename operator 'Join Shapes' to 'Transfer Mix'."Brecht Van Lommel
This reverts commit 741967079c393a9eb6babd60c92a716fafa5d3e9. We are in UI and API freeze, and this changes both.
2019-07-01Docs: for release builds, link to specific manual versionBrecht Van Lommel
2019-07-01Fix T66300: GPencil layer context menu not working in topbar layer popoverAntonioya
2019-07-01UI: run interactive 'Point From Normal' in normal menuCampbell Barton
2019-07-01GPencil: Fix wrong title missing in previous changeAntonioya
2019-07-01Fix T66192: Remove gizmos label from topbarCampbell Barton
2019-06-30UI: Use Plural Panel NamesAaron Carlisle
2019-06-30GPencil: Improve Cyclic operator to generate geometryAntonioya
Now, when close a geometry with cyclic is possible generate new geometry for the gap. The cyclic operator now supports multiframe edition too. Before only worked with active frame. Also added the corresponding missing menu options and the new F keymap. All these features were missing, pending of the fix of the alpha glitches in stroke already done.
2019-06-30Rename operator 'Join Shapes' to 'Transfer Mix'.Ines Almeida
The new name is consistent with the 'Transfer Shape' operator. - Updated the UI descriptions for both transfer operators.
2019-06-30GPencil: Fix text for Pattern stroke as Stencil MaskAntonioya
Detected while writting manual.
2019-06-29UI: Make Panel Name PluralAaron Carlisle
This is more consistent with other panels; for example "Shadows"
2019-06-29Fix T66240: clip editor shows Python error about tool headerBrecht Van Lommel
2019-06-28Remove Sticky option from the Floor constraintSergey Sharybin
This option from the very beginning of its existence needed more work to make it work correct and this was never done. This option was working fine during continuous playback, when there are no skipped frames, but it was failing when AV-sync of framedrop was enabled. It was never working correct when jumping between frames, including rendering on a farm which usually does frame-range based rendering. With copy-on-write things became even more tricky, since the "stuck" flag was never preserved between re-evaluations. Fixes T65683: Sticky Option in Floor Constraint for Bones Not Working
2019-06-28GPencil: Rename "Clamp Layer" to "Mask Layer"Antonioya
The old name was not meaning what this option does. Dtected while writting the manual.
2019-06-27Masking: make image editor UI consistent with clip editorSebastian Koenig
* Mask Display menu is now part of the header * Sidebar now has a separate Mask tab * Add context menu when in mask mode Differential Revision: https://developer.blender.org/D5102
2019-06-27Fix T65010: Affect options not being displayed in the UV editor snap settings.mano-wii
Reviewers: brecht, billreynish Reviewed By: brecht Differential Revision: https://developer.blender.org/D5141
2019-06-27Fix: Text Location lost X/Y textWilliam Reynish
Use PROP_XYZ instead, and user Slider=True to make them display as sliders in the UI
2019-06-26GPencil: Change HSV modifier to use the same range of parameter that other ↵Antonioya
areas of Blender The value of the Hue must be between 0 and 1, but the value was between 0 and 2.