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-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
2019-07-11API Doc link: make releases/RC's point to their own version of the doc.Bastien Montagne
Sounds kind of stupid to have 2.79 pointing to "current" which is now 2.80 API doc... Let's try to avoid that in future.
2019-07-11Fix for RC release step to also point at 'current' API doc link.Bastien Montagne
RC's are supposed to be like "real" releases...
2019-07-10Splash: new image for 2.80 by Andy Goralczyk and the Spring teamBrecht Van Lommel
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 release notes not showing in splash without recent filesBrecht Van Lommel
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-09Fix T66605: Operation on origins not working correctSergey Sharybin
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 T61401: Failure to register a `GizmoGroup` after unregistering itmano-wii
It does not seem right to rely on the python code to fix problems in the C code. But this already works like this with the other Python Classes.
2019-07-08Revert "Fix T61401: Failure to register a `GizmoGroup` after unregistering it"mano-wii
Problems with ClangFormat This reverts commit c1bcde0c0feaf8bcfbd3664a52c50611806538ac.
2019-07-08Fix T61401: Failure to register a `GizmoGroup` after unregistering itmano-wii
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-08Keymap: Vertex Paint: Add ctrl to temporarily swich colorsAaron Carlisle
This now matches Texture Painting This was added in rB7d5fb2e103e03046194d69640aadf7e76a700620 but was lost probably when migrating to python keymap.
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-05GPencil: Remove select keymap definition for Weight Paint modeAntonioya
This removes the keymap, but the B key is still available, so in some top level the selection is enabled. Related to T66458.
2019-07-05Keymap: add V-key to toggle vertex select in vertex paint modeCampbell Barton
Match weight paint mode.
2019-07-05Fix T66404: knife tool doesn't use knife cursorCampbell Barton
2019-07-05Use latest/version number for manual linksAaron Carlisle
We want users to go to the current version for their current version when possible if not point to latest. /dev should really only be for development related work. End users should not be browsing /dev unless they are reading about upcoming features ahead of time.
2019-07-04Industry Compat keymap: Fix keymap conflict related to snappingWilliam Reynish
There were some keymap conflicts and inconsistencies here. After this change, it works as follows: Snap toggle on/off: X Snap pie: Shift-X Viewpoint pie: V This is now consistent in all editors and the 3d View conflict should be gone
2019-07-04node_shader_utils: add possibility to override image colorspacePhilipp Oeser
'is_data' since the move from 'cycles_shader_compat' (2.79) to 'PrincipledBSDFWrapper' (2.8) we lost the ability to (automatically) set this colorspace setting for imported textures. This was useful for e.g. normalmaps to always assume 'Non-Color' data. This adds the possibility to overide and uses this for normalmaps... Fixes T66368 Reviewers: mont29, brecht Maniphest Tasks: T66368 Differential Revision: https://developer.blender.org/D5176
2019-07-02Fix submodules hash in previous commitSergey Sharybin