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-27Fix T54323: Improve Paint category names in keymap preferencesPhilipp Oeser
While one issue of the report was fixed already (rB27adc4aa3347), still a couple of clarifications could be made: - correct/clarify which modes these apply to - clarify that "Face Mask" is a paint thing Maniphest Tasks: T54323 Differential Revision: https://developer.blender.org/D6797
2020-02-17Fix many typos and other issues in UI messages.Bastien Montagne
2020-02-13Py API: Add `orphans_purge` helper to `bpy.data`.Bastien Montagne
Much more convinient than trying to use outliner operator...
2020-02-10Fix T73681: Python exception adding Empty objects via `object_data_add`Philipp Oeser
with "Enter Edit Mode" enabled It is valild to add Empties this way, but we cannot enter editmode on those.
2020-02-08Merge branch 'blender-v2.82-release'Aaron Carlisle
2020-02-08Update RNA Manual ReferencesAaron Carlisle
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-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-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-28Merge branch 'blender-v2.82-release'Campbell Barton
2020-01-28Error in last comment (redundant assignment)Campbell Barton
2020-01-28Merge branch 'blender-v2.82-release'Campbell Barton
2020-01-28Fix T69213: App-Template doesn't run scripts in BLENDER_USER_SCRIPTSCampbell Barton
2020-01-27Merge branch 'blender-v2.82-release'mano-wii
2020-01-27Fix T73409: error deleting preset saved on different drive than Blender installBrecht Van Lommel
2020-01-26Fix T73357: Multiple importers failJulian Eisel
Very stupid mistake in ba8de85299ff, registered property for wrong class. It should be registered for the PLY importer add-on only.
2020-01-22PLY Import: Hide empty operator properties sidebar in file browserJulian Eisel
The sidebar is empty for the PLY importer, so better to hide it.
2020-01-14Merge branch 'blender-v2.82-release'mano-wii
2020-01-14Fix T69105: reset the action blend mode to Replace in Bake Action.Alexander Gavrilov
This can't be done in Tweak mode since the setting is stored in the tweaked strip, and the logic for finding it is not exposed to python.
2020-01-14Fix T57159: don't exit tweak mode in Bake Action if reusing the action.Alexander Gavrilov
2020-01-13Fix T73062: Custom properties misalignedWilliam Reynish
The UI layout here was mistakingly made left aligned and very hard to read when viewed inside the Sidebar.
2019-12-11Fix bpy.extras.object_data_add use without an active spaceCampbell Barton
2019-12-02Fix T71596: Bug in io_utils api breaking only on windows.Bastien Montagne
Stupid mistake, 'original' filepath is a blender-flavored one, with potentially weird things like the '//' relative 'header'... This can work on linux (also it could have broken in other places too), but on windows that is fully invalid path and python `os.path` library just generates empty result here. Simply using proper valid path instead fixes it...
2019-11-28Console: remove shortcuts from console splashCampbell Barton
Menu items can be used to find shortcuts instead of keeping keymap items here.
2019-11-26Fix T71924: Baking quaternion keyframes gives discontinuous valuesCampbell Barton
2019-11-26Fix T64655: Quad view toggle conflicts on macOSCampbell Barton
Cmd-Alt-Q is a system shortcut on macOS, use Ctrl-Alt-Q.
2019-11-15Merge branch 'blender-v2.81-release'Campbell Barton
2019-11-15PyAPI: add class and module attributes to rna_info.InfoStructRNACampbell Barton
Module access is needed for documentation generation to exclude non built-in modules. This also fixes a bug creating references to non built-in types.
2019-11-14Merge branch 'blender-v2.81-release'Campbell Barton
2019-11-14Fix macOS using conflicting key binding Cmd-.Campbell Barton
Used for toggle origins, conflicts on macOS, use Ctrl-. instead.
2019-11-01Fix python error when trying to delete presetsSebastian Parborg
In some cases the default data paths for blender does not exist. For example on windows when using the portable install. This would lead to errors when trying to lookup default paths in is_path_builtin. Now we handle cases like this gracefully.
2019-10-31Cleanup: comments for is_path_builtinCampbell Barton
Also reduce scope of import.
2019-10-30Fix T59065: Blender default keyset is deletable by user!Sebastian Parborg
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-29Cleanup: remove unused object_image_guessCampbell Barton
This made sense when we had tex-face feature, since it's removed & unused, remove this function too. D6079 by @alm
2019-10-28PyAPI: change behavior of bpy.path.module_namesCampbell Barton
Instead of checking for names that contain ".", only skip files that start with a "." (since they're used for ".git" & ".arcconfig"). While other path names may fail to import, it's not the purpose of this function to validate the path, have the caller must raise an error instead of silently skipping them. See D6140.
2019-10-28Tool System: Use tapping Alt as a leader key to switch toolsCampbell Barton
Now tapping Alt prompts for a second input to switch tools. Initial implementation of T69992
2019-10-22Cleanup: quiet unknown escape warningsCampbell Barton
Auto-complete showed errors.
2019-10-17Node shader wrapper: use 'Non-Color' profile for BW textures inputs.Bastien Montagne
All the single-value texture inputs of Principled BSDF node should use non-color colorspace profile, not sRGB one (issue raised in https://blender.stackexchange.com/questions/155617, thanks). That also revealed another issue - since those color space settings are stored at the image level itself, not the node one, we need to duplicate those image data-blocks when we use same picture for e.g. base color (sRGB) and specular (non-color) inputs... For now using a basic mechanism for that, might generate several extra, uneeded copies of the image ID, but that’s better than breaking custom settings and such. Note that while this will modify the behavior of the impporters using that node wrapper, no change should be needed in IO add-ons themselves.
2019-10-15Fix T70590: Python Gizmo API misses opacity & anti-aliasingCampbell Barton
Thanks to @mano-wii for finding root cause.
2019-10-10Node Shader wrapper: add access to the Emission color of Principled BSDF node.Bastien Montagne
This did not exist when that wrapper was created, but is supported by many formats, so worth supporting it now. See also T70666.
2019-10-10PyAPI: update for change in tessellate_polygonCampbell Barton
2019-10-10Fix T70617: mesh.from_pydata() misses first edge if there are facesCampbell Barton
2019-10-09Fix T70596: Wrong default scale value for node wrapper tool.Bastien Montagne
This affected all exporter add-ons using that wrapper to handle the node shaders... sigh...
2019-10-09Cleanup: typo, styleCampbell Barton