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
2020-02-07Merge branch 'blender-v2.82-release'Campbell Barton
2020-02-07Merge branch 'blender-v2.82-release'Campbell Barton
2020-02-07Keymap: preference to swap 3D orbit/pan actionsCampbell Barton
Requested by @pepeland for grease pencil/2D usage.
2020-02-07Keymap: preference for relative/absolute Alt-MMB navigationCampbell Barton
Original request from Hjalti was to set absolute view axis, so make this an option.
2020-02-06Fluid: Hide Advanced cache optionsSebastián Barschkis
The Manta script export should not be visible in the UI. At least not to normal users. The export feature is only useful for developers.
2020-02-06Merge branch 'blender-v2.82-release' into masterNathan Letwory
2020-02-06Reference correct sha1s of submodulesNathan Letwory
2020-02-06Fluid: Removed UI locks for cache file typesSebastián Barschkis
Caches that haven't been baked yet should not be locked.
2020-02-06Smooth Modifier add invert vgroup optionCody Winchester
Adds the invert vertex group option to the smooth modifier. Setup same way as previous modifiers. Reviewed By: mont29 Differential Revision: https://developer.blender.org/D6745
2020-02-06Curve Modifier add invert vgroup optionCody Winchester
Adds the invert vertex group option to the Curve modifier. Adds a short flag and char pad to the Curve modifier DNA. Passes the flag into the curve_deform_verts function as the weight values are found there and not in the modifiers .c file. Reviewed By: mont29 Differential Revision: https://developer.blender.org/D6746
2020-02-06Lattice Modifier add invert vgroup optionCody Winchester
Adds the invert vertex group option to the Lattice modifier. Adds a short flag and modifies the existing char padding for the correct amount. Adds a .invert_vgroup to the LatticeDeformUserdata. Passes the flag into the lattice_deform_verts function where the weights around found and used. For the other calls of lattice_deform_verts function they pass in NULL for the flag in the same way they pass NULL for the vgroup name. Reviewed By: mont29 Differential Revision: https://developer.blender.org/D6747
2020-02-05Merge branch 'blender-v2.82-release'Antonio Vazquez
2020-02-05Fix T73580: Gpencil crash when try to draw without eraser brush availableAntonio Vazquez
2020-02-04Merge branch 'blender-v2.82-release'Philipp Oeser
2020-02-04Fix T58842: Add-ons Import/Export entries disapear when enabling FilterPhilipp Oeser
Addons option This removes the 'use_owner' option feature from rB61c8ed40f5df. (this wasnt working well when addons are enabled and when switching workspaces) Now Addon filtering is just bypassed for Import/Export menus. (by introducing/setting bl_owner_use_filter = False) Maniphest Tasks: T58842 Differential Revision: https://developer.blender.org/D6740
2020-02-04Merge branch 'blender-v2.82-release'Philipp Oeser
2020-02-04Fix T67084: Modal keymaps could show the wrong shortcutPhilipp Oeser
WM_modalkeymap_operator_items_to_string() wasnt checking WM_keymap_active(), so it was possible that e.g. when using the Industry Compatible keymap, the shortcut from the Blender keymap was shown. This also fixes the (now exposed) bug that the Industry Compatible keymap would not have a ADD_CUT_CLOSED kmi defined for the Knife Tool [mandatory for the status bar]. Maniphest Tasks: T67084 Differential Revision: https://developer.blender.org/D6748
2020-02-04Cleanup: remove duplicated bl_parent_id in brush mask panelSimon G
Differential Revision: https://developer.blender.org/D6718
2020-02-04Merge branch 'blender-v2.82-release'Aaron Carlisle
2020-02-04Fix: UI: Spelling and CapitalizationAaron Carlisle
2020-02-03Warp Modifier add invert vgroup optionCody Winchester
Adds the invert vertex weights option to the Warp Modifier. Setup in the same way as the other modifiers. Uses the existing flag char that is labeled unused. Differential Revision: https://developer.blender.org/D6720
2020-02-03Displace Modifier add invert vgroup optionCody Winchester
Adds the invert vertex weights option to the Displace modifier. Adds a flag and char padding to the Displace modifier DNA for the invert group boolean. Differential Revision: https://developer.blender.org/D6686
2020-02-02UI: Re-organize Sculpt Symmetrize controlsWilliam Reynish
Currently the UI for Symmetrize is confusing, for a few reasons: - It exists as a sub-panel to the Dyntopo panel, even though it doesn't require Dyntopo to work - It is inside a panel called Remesh, which is confusing because we now have a different Remesh panel Changes: - Put the Symmetrize controls in the Symmetry panel - Rename Optimize to Rebuild BVH and move to the Sculpt menu - Change the poll function - apparently it doesn't require Dyntopo Differential Revision: https://developer.blender.org/D6735 Reviewed by Pablo Dobarro
2020-02-01UI: Ellipsis Character for Line ContinuationHarley Acheson
Using ellipsis character for line continuation since that glpyh is now narrower. Differential Revision: https://developer.blender.org/D6728 Reviewed by Brecht Van Lommel
2020-02-01UI: Font Binary Symbol UpdatesHarley Acheson
Font binaries updated with consistent keyboard symbols. Footer events now have per-platform icons. Differential Revision: https://developer.blender.org/D6055 Reviewed by Brecht Van Lommel
2020-01-31Merge branch 'blender-v2.82-release'Philipp Oeser
2020-01-31UI: use full width for ID blocks in speaker propertiesPhilipp Oeser
rBb6a97baa0efa already did this for World, Light, Camera, Texture. rBb196c42d4ade already did this for Lattice.
2020-01-31UI: Icons updateWilliam Reynish
- New bespoke icon for the universal brush toggles - New icon for Redirected Folder (currently unused) - New icons for handle types (Auto Clamped, Auto, Aligned, Vector, Free) - New icons for Sequencer Text Strip anchor (Top, Bottom, Left, Right, Centre) Thanks to Andrzej Ambroż for the new icons
2020-01-31Merge branch 'blender-v2.82-release'Brecht Van Lommel
2020-01-31USD: Include USD library version in System InfoSybren A. Stüvel
Pixar recently released USD 20.02 [1]. I think it's important for people to be able to figure out which version of the USD library is used in Blender. [1] https://github.com/PixarAnimationStudios/USD/releases/tag/v20.02 This commit exposes the USD library information via `bpy.app.usd`, and includes that info in the `system-info.txt` saved via Help → Save System Info. Reviewed by: brecht Differential Revision: https://developer.blender.org/D6724
2020-01-30Fix unreported: Missing Empty Transparency panel pollWilliam Reynish
Own mistake in recent change
2020-01-30Merge branch 'blender-v2.82-release'Sergey Sharybin
2020-01-30Fix preset tracking setttings missing a commaSimon G
Preset tracking settings is missing a comma here. Without a comma this will result in an implicit string concatenation. This was probably not wanted. Reviewed By: sergey, Blendify Differential Revision: https://developer.blender.org/D6717
2020-01-30Merge branch 'blender-v2.82-release'Campbell Barton
2020-01-30Fix invalid exception used in 'rna_xml'Simon G
2020-01-30Cleanup: resolve static analyzer warnings in bl_i18n_utilsCampbell Barton
Reported in T73504
2020-01-30Merge remote-tracking branch 'origin/blender-v2.82-release'Ray Molenkamp
2020-01-30Fix T65146: Curve Texture Coordinates in Cycles and Eevee differClément Foucault
Remove the use UV for mapping option.
2020-01-29Merge branch 'blender-v2.82-release'Philipp Oeser
2020-01-29Merge branch 'blender-v2.82-release'Philipp Oeser
Merge conflict in source/blender/gpu/GPU_texture.h
2020-01-29Fluid: Updated UISebastián Barschkis
UI updates include: - More descriptive tool tips - Removed texture panel for liquid flow objects - Adjusted alignment for some smoke / fire parameters
2020-01-29Fluid: Removed wireframe drawtype setter for fluid domainsSebastián Barschkis
Fluid domains with (auto-generated) particle systems were set to wireframe drawtype automatically. This was a convenience feature that made particles visible immediately. As the auto switching is sometimes a bit annoying though this has been removed. Instead, the Quick Liquid Operator switches the viewport shading type to wireframe.
2020-01-29Fix T73466: Unable to set particle rotationPhilipp Oeser
Error in rB1f6ab32196d7. Maniphest Tasks: T73466 Differential Revision: https://developer.blender.org/D6706
2020-01-29UI: Info Editor Visual ChangesHarley Acheson
Changes to Info Editor making it easier to read. Only visual changes, no functional changes. Differential Revision: https://developer.blender.org/D6491 Reviewed by Julian Eisel
2020-01-29IC keymap: Add extend & subtract box selection to animation channel listsWilliam Reynish
Same as recent change for default keymap
2020-01-29UI: Theme tweak to selected animation channelsWilliam Reynish
We have the problem that it's very hard to see which animation channels are selected. This is a very small tweak to make it more obvious, using the same text highlight color as the Outliner. Really it should be overhauled to be more exactly like the Outliner, but this is just a quick fix to make it reasonably visible. Differential Revision: https://developer.blender.org/D6708 Reviewed by Julian Eisel
2020-01-29Keymap: Add ability to extend or subtract animation channel box selectionsWilliam Reynish
For some reason this was missing. Seems to be a simple oversight. Differential Revision: https://developer.blender.org/D6707 Reviewed by Julian Eisel
2020-01-29Merge branch 'blender-v2.82-release'Campbell Barton
2020-01-29UI: pose X-ray state wasn't shown in the headerCampbell Barton
2020-01-29Merge branch 'blender-v2.82-release'Campbell Barton