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-08-05Text: merge toggle comments into a single operatorCampbell Barton
This allows users to map comment/un-comment to be mapped to keys.
2019-08-05Cleanup: remove underscore prefix for used varsCampbell Barton
Also remove unused vars.
2019-08-04Sculpting: Remove Show Diffuse Color OptionYour Name
This should have been removed in 2.80 as the functionality was removed. This feature now does not do anything and can be removed. Differential Revision: https://developer.blender.org/D5411
2019-08-04Text Editor UIWilliam Reynish
Tweak Text Editor to fit better with the rest of Blender 2.8: - Move sidebar to the right - Add proper context menu - Move view toggles to the View menu - Change the indentation option to be an enum between spaces and tabs - Several layout tweaks Patch by @tintwotin / Peter Fog with additional tweaks by me. Differential Revision https://developer.blender.org/D5028 Reviewers: Brecht, Campbell
2019-08-04Tweak Brush Gradient UIWilliam Reynish
Gradient and Color are mutually exclusive, so we now communicate this in the UI much more clearly Differential Revision: https://developer.blender.org/D5395 Reviewers: brechrt
2019-08-03UI: Fix Small inconsistency in particle emissionYour Name
This property was being called something else depending on the distribution type
2019-08-033D View: preferences for rotate sensitivityCampbell Barton
Added because the current default is too fast for painting with tablets, see D5385. Turntable and trackball have different settings because turn-table uses an angle-per-pixel, where as trackball values are relative to the view-port size so a scale is used. The sensitivity is scaled by the pixel size so hi-dpi views don't rotate faster.
2019-08-02GPencil: Replace Separate menu by operator Enum to display assigned keyAntonio Vazquez
As the operator was using a menu, the keymap was not displayed. Now, the operator is used directly and don't need the menu.
2019-08-02Fix T66731: Translated texts remain original english (Tools' tips part).Bastien Montagne
This should fix all remaining issues reported in T66731 I think.
2019-08-02Fix (unreported) missing/broken translations in Text space.Bastien Montagne
As a reminder, no new fancy python string formatting is just not working (tm) with i18n translations system...
2019-08-02Keymap: add fractional zoom shortcuts for sequencer previewCampbell Barton
Matches shortcuts from the image editor. D5341 by @tintwotin
2019-08-01Fix T66028: Move sequence, movieclip and text editor progressbars to status barRichard Antalik
Reviewed By: brecht Differential Revision: https://developer.blender.org/D5219
2019-08-01Fix T67939: GPencil Noise modifier wrong random calculationAntonioya
There were several problems in the old random calculation: * Different result in the viewport and render. * Noise "pop" in some frames. * Random number was calculated every time the file was opened, so get different results. Now, instead to calculate the random numbers when n number of frames changed, the random values are calculated using a unique seed by stroke. Also, a new Seed parameter has been added and this adds more control in the noise generated. This value can be animated and get more variations. Differential Revision: http://developer.blender.org/D5393
2019-08-01Added FFmpeg preset for WebM + VP9 video + Opus audioSybren A. Stüvel
This is a standard combination (VP9 video, Opus audio, in WebM container), so it's nice to have as a preset.
2019-08-01I18n messages extraction: do not report multi-lines messages anymore.Bastien Montagne
Those are now supported for tooltips.
2019-08-01Cleanup a bit i18n message extraction code.Bastien Montagne
2019-08-01Keymap: use Ctrl-/ to toggle commentsCampbell Barton
Consistent with many code editors, see: D5175
2019-08-01Text: toggle comment operatorCampbell Barton
2019-08-01Cleanup: remove redundant LMB select default.Campbell Barton
2019-08-01Cleanup: misc spelling fixesCampbell Barton
T68035 by @luzpaz
2019-07-31Add operator for removing unused material slotsLukas Stockner
Reviewers: campbellbarton, brecht Reviewed By: brecht Subscribers: brecht Differential Revision: https://developer.blender.org/D4991
2019-07-31Fix T66785: Blender Menu As Text When Main Menu CollapsedHarley Acheson
This makes the blender logo menu appear as text if 'Show Menus' is off Differential Revision: https://developer.blender.org/D5244 Reviewed by Brecht Van Lommel
2019-07-31Fix T63921: Unable to use confirm on release for keyboard shortcutsSebastian Parborg
The first issue was that we were still working around a Xorg bug that has been solved since a very long time: https://bugs.freedesktop.org/show_bug.cgi?id=22515 The second issue was that the global "confirm on release for mouse clicks" was used for keyboard shortcuts as well.
2019-07-31Spelling fixes in comments and descriptions, patch by luzpazBrecht Van Lommel
Differential Revision: https://developer.blender.org/D3744
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-31FIx T66019: Text cutoffs for descriptions in keyframe insertion (keyingsets).Bastien Montagne
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-30Py node shader wrapper: Add clamping to official min/max values.Bastien Montagne
Taking values from relevant node definition C file... Related to T67889.
2019-07-30UI: add use_button option to popoversCampbell Barton
This is useful when popovers are launched from operators instead of as button popover types. Where the connection between the button and the popover is useful to keep.
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 T67874: Show gizmo incorrectly uses Cmd-` on macOSCampbell Barton
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-28Fix T66872: Changing clip color space does not update background imagesSergey Sharybin
Such reload can no longer happen directly and is to be done via dependency graph. Eventually, the movie cache will become shared across all copies of the clip, but even then we still need to have dependency graph mechanism because we need to update FFmpeg animation handle (which can not be shared across the copies).
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-25Fix T67603: Selecting toolbar from search raises errorCampbell Barton
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-22Incompatible usage of the Collada transparency valueGaia Clary
Some external tools seem to have issues with the definition of Collada <transparency> - a float value in range (0,1). However it is possible to use the <transparent> color as a container for the <transparency> value. This seems to be a more reliable method to export transparency values from Blender PBSDF Shaders. The relevant documentation is in the collada 1.14 reference manual, page 7-5 about the usage of transparent and transparency. This fix makes export and import of the <transparency> and <transparent> values more convenient and more reliable. Reviewers: brecht, jesterking Reviewed By: brecht Differential Revision: https://developer.blender.org/D5305
2019-07-20Industry Compat keymap: Fix inconsistencies and conflicts with color ↵William Reynish
swatches and other over-widget hotkeys Sample hotkey is set to the I key now, similar to other apps. Reported on Devtalk
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-18Keymap: use number keys to change particle modesCampbell Barton
Match behavior for meshes. Fixes T67161
2019-07-17Fix T66091: paint curve point slide conflicts with 2D cursorBrecht Van Lommel
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-16Fix T66964: sculpting box hide tool can't select multiple areasBrecht Van Lommel
Only deselect all on mouse release when no box dragging was done.
2019-07-16Cleanup: typos in commentsCampbell Barton
2019-07-16Fix typo in background_job templateCampbell Barton
D5264 by @dimtion
2019-07-15Revert "Fix T64827 (part two): "Batch-Generate Previews" fails with certain ↵Bastien Montagne
files" This reverts commit 8a5a8282ce48704e60e70cb02d747aede71e70b8.