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
path: root/source
AgeCommit message (Collapse)Author
2018-07-13WM: register global list of panel typesCampbell Barton
Allows simple lookups for popovers.
2018-07-13Correct recent menu splitCampbell Barton
Somehow duplicate API didn't error when linking.
2018-07-13Fix T55965: shrinkwrap modifier apply not working.Brecht Van Lommel
2018-07-13Viewport: don't show look dev shader balls by default.Brecht Van Lommel
We will show these in the shading workspace by default, but for most new 3D viewports that you open these are not needed.
2018-07-13Merge branch 'master' into blender2.8Campbell Barton
2018-07-13Remove invalid assertCampbell Barton
2018-07-13Fix bad assert on redoCampbell Barton
2018-07-13Merge branch 'master' into blender2.8Campbell Barton
2018-07-13Cleanup: operator type API, headerCampbell Barton
2018-07-13Merge branch 'master' into blender2.8Campbell Barton
2018-07-13Merge branch 'master' into blender2.8Campbell Barton
2018-07-13Cleanup: move WM type registration into own filesCampbell Barton
Type registration is mostly boiler plate logic, which can be separated from other API's.
2018-07-13Nodes: add sqrt, ceil, floor and fract to math nodes.Charlie Jolly
This works for Cycles, Eevee, texture nodes and compositing. It helps to reduce the number of math nodes required in various node setups. Differential Revision: https://developer.blender.org/D3537
2018-07-13UI: show popover shortcuts in tooltipCampbell Barton
2018-07-13Merge branch 'master' into blender2.8Campbell Barton
2018-07-13Cleanup: id-property API useCampbell Barton
Also clarify comments.
2018-07-13Merge branch 'master' into blender2.8Campbell Barton
2018-07-13Cleanup: split keymap lookups into own functionsCampbell Barton
More will be added in 2.8, keep this manageable.
2018-07-13Fix T55920: viewport "navigate" shows on transformCampbell Barton
2018-07-13Keymap: dope-sheet hotkey to change falloffPhilipp Oeser
2018-07-13Keymap: dope-sheet hotkey to change falloffPhilipp Oeser
2018-07-13Merge branch 'master' into blender2.8Campbell Barton
2018-07-13Cleanup: right shift argumentsCampbell Barton
2018-07-13Cleanup: rename snap enumCampbell Barton
2018-07-13Correct error mixing fraction/screen snapCampbell Barton
Thanks @mano-wii for pointing out
2018-07-12Merge branch 'master' into blender2.8Campbell Barton
2018-07-12Cleanup: remove legacy mesh save supportCampbell Barton
This was used for saving files for Blender 2.6x.
2018-07-12WM: snap to fractions when resizing areasCampbell Barton
Snap to fractions in 1/(2,3,4,8), Nice for less arbitrary layouts.
2018-07-12PyAPI: show line, not call-stack for field warningCampbell Barton
Was too noisy and hard to tell warnings from exceptions.
2018-07-12Merge branch 'master' into blender2.8Campbell Barton
2018-07-12PyAPI: add undo redo handlersCampbell Barton
Useful so Python can clean up before/after undo steps.
2018-07-12Fix T55945: Outliner crashPhilipp Oeser
crashed when using filtering and no item was found ('Blender File' mode) Reviewed By: brecht Differential Revision: https://developer.blender.org/D3535
2018-07-12Fix T55949: increase color management exposure hard range.Brecht Van Lommel
2018-07-12Keymap: add 3D view snap popupCampbell Barton
The key was available for other spaces, removed because it conflicted with changes which have since been reverted.
2018-07-12Keymap: add utility function for panel popupsCampbell Barton
2018-07-12Merge branch 'master' into blender2.8Campbell Barton
2018-07-12Cleanup: header guardsCampbell Barton
2018-07-12Cleanup: style, duplicate headerCampbell Barton
2018-07-12Keymap: Modifiers to control mesh elem switchingCampbell Barton
Shift/Ctrl control extend/expand when number keys are used to switch modes.
2018-07-12UI: 4-state icon for view visibility popoverCampbell Barton
This is a quick way to see if some of the object types in the scene are hidden or unselected. Icon design may change.
2018-07-12Merge branch 'master' into blender2.8Campbell Barton
2018-07-12Fix PyRNA class registration w/ Python 3.7Campbell Barton
In Python3.7 this now raises an error.
2018-07-11PyAPI: Use annotations for RNA definitionsCampbell Barton
- Logical use of fields since they define type information. - Avoids using ordered-dict metaclass. Properties using regular assignments will print a warning and load, however the order is undefined.
2018-07-11Manipulator: expose use_select_background via RNACampbell Barton
2018-07-113D View: option not to draw center dotsCampbell Barton
While this is a fairly obscure option, it means it's possible to disable all overlays except for any overlays the users wants to see.
2018-07-11Fix T55915 DOF Number of blades wrong logicClément Foucault
Thanks @kostex for the fix.
2018-07-11Edit Mesh: Fix missing loose edges if vertex is at local originClément Foucault
2018-07-11Transform Manipulator: fix scale handle selectionCampbell Barton
The scale handles couldn't be accessed when rotation was enabled and they pointed away from the view.
2018-07-11Fix manipulator hiding cursorCampbell Barton
Manipulator highlight, then transform would hide the mouse cursor.
2018-07-11Eevee: LightCache: Fix autobake starting when it should notClément Foucault