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-01Cleanup: misc spelling fixesCampbell Barton
T68035 by @luzpaz
2019-08-01Cleanup: move defaults into U_default structCampbell Barton
2019-08-01Cleanup: remove unused compute-id from preferencesCampbell Barton
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-31Fix: build error with MSVCLazydodo
Reviewed By: Brecht Differential Revision: https://developer.blender.org/D5381
2019-07-31Spelling fixes in comments and descriptions, patch by luzpazBrecht Van Lommel
Differential Revision: https://developer.blender.org/D3744
2019-07-31Preferences: don't store preferences in the startupCampbell Barton
Simplify preferences by removing the ability to load them from either the startup.blend or userpref.blend. Also simplifies updating default preferences by moving them to a struct definition.
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 snap package to work with 2.80 version numberBrecht Van Lommel
Without this it rounds to 2.8.
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-26Linux: add script and instructions for creating snap packagesBrecht Van Lommel
We will now maintain the Blender package on snapcraft.io/blender. Differential Revision: https://developer.blender.org/D5342
2019-07-26Linux: update appdata descriptionBrecht Van Lommel
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.
2019-07-15Fix T66986: fix dylib plugins on macOS not working in code signed releaseBrecht Van Lommel
Add more entitlements for code signing.
2019-07-15Fix T64827 (part two): "Batch-Generate Previews" fails with certain filesPhilipp Oeser
Some values (not properly handled by do_versions?) could cause 'rna_backup_restore()' to throw an error resulting in the whole preview generation not being saved to the .blend file. I've checked folowwing demo files: - race_spaceship.blend - wasp_bot.blend Here the offending seetings were: - `UnitSettings` (`length_unit`, ...) - `FFmpegSettings` (`ffmpeg_preset`, ...) For now, these are now excluded in `exclude_props` Reviewers: brecht Differential Revision: https://developer.blender.org/D5255
2019-07-15Fix T66986: errors with add-ons using ctypes in macOS releaseBrecht Van Lommel
Add extra entitlements to allow the kind of unsigned executable memory access that cytpes does.
2019-07-15Fix showing "__pycache__" in templates menuCampbell Barton
2019-07-15Fix T66953: Duplicate items in pose context menuCampbell Barton
2019-07-12macOS: clarify bundle script instructionsBrecht Van Lommel
2019-07-12macOS: allow bundle script to re-codesign a Blender.app that was already signedBrecht Van Lommel
2019-07-12macOS: remove hardcoded paths for code signing python/dylib/soArto Kitula
Differential Revision: https://developer.blender.org/D5234
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 T66446: UV editor "Deselect on Nothing" not workingCampbell Barton
2019-07-12Fix keymap editor missing tools for UV/Image spaceCampbell Barton
2019-07-12Fix T66675: Auto-Save override button has no tooltipCampbell Barton