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
2018-11-23cleanup: removed outdated/outcommented codecollada2.8Gaia Clary
2018-11-23Merge remote-tracking branch 'origin/blender2.8' into collada2.8Gaia Clary
2018-11-23refactor: Simplify the Collada module. moved Blender context information ↵Gaia Clary
into its own class.
2018-11-23Pose: support wpaint+pose w/ object-lock enabledCampbell Barton
Mode locking made it nearly impossible to enter wpaint + object mode. Now enter pose mode when entering wpaint mode when the pose object is selected.
2018-11-23Fix bone selection w/ mixed wpaint & pose modeCampbell Barton
2018-11-23Merge remote-tracking branch 'origin/blender2.8' into collada2.8Gaia Clary
2018-11-22Cleanup: newlines in error printsCampbell Barton
2018-11-22UI: fix wrong icons after recent update.Brecht Van Lommel
This cleans up old icon .data files that were still hanging around, but not in the SVG anymore.
2018-11-22UI: activate tabs immediately on press, and drag to quickly cycle through.Brecht Van Lommel
2018-11-22Fix T55535: N panel in sequencer breaks display of preview.Brecht Van Lommel
This preview region should not have been part of region overlap.
2018-11-22UI: Object Context Menu tweaks.Pablo Vazquez
* Move type-specific options first. Allows to get quicker access to settings like Shading Smooth/Flat by pressing W -> S/F, or camera or light settings. * Lights: Rename Strength to Energy * Lights: Show Energy when using EEVEE
2018-11-22Image Empties: Potential Fix for T57696Clément Foucault
So far this makes a new pass for image empties that does not write to the depth buffer. Todo: - Sort empties using `DRW_pass_sort_shgroup_z`. - Calculate correct bounding boxes. - fix bounding box memory leak. Reviewers: fclem Differential Revision: https://developer.blender.org/D3922
2018-11-22Fix T57980: Assert failure in draw manager when opening fileClément Foucault
2018-11-22Cleanup: Use proper module prefix in function namesSergey Sharybin
2018-11-22GP: Keep activated the same Brush in toolbarAntonioya
2018-11-22Depsgraph: Ensure solver cleanup orderSergey Sharybin
Ensure that pose cleanup is never run before all IK solvers are finished.
2018-11-22Depsgraph: Cleanup, line wrappingSergey Sharybin
2018-11-22Fix missing newline in error printSergey Sharybin
2018-11-22Depsgraph: Cleanup, make it easier to create relations with flagsSergey Sharybin
2018-11-22Eevee: Reflection Plane: Small UI fix and invert facing fadingClément Foucault
2018-11-22Fix T57977: VSE: Markers lines get highlighted when using box selectClément Foucault
Was caused by a missing uniform.
2018-11-22Keymaps: make click event detection use a larger distance threshold.Brecht Van Lommel
Previously this was hardcoded to 2 pixels, which is too low for tablets and not taking into account DPI. Now we set it equal to the tweak threshold, so you either always do click or drag. The default distance of 10 pixels may be quite far for something to be considered a click, and we'll need to see how well it works. But I find this to help a lot when selecting vertices in quick succession. Thanks to Julien for spotting this.
2018-11-22Fix T57578: Vertex Connect crash with less than two verts selectedPhilipp Oeser
2018-11-22GP: Cleanup old TODO commentsAntonioya
These ToDo were ported when 2.7x code was ported to 2.8, but now they are not needed.
2018-11-22Cleanup: keymap wrapper for tool-setting operatorCampbell Barton
2018-11-22Keymap: add popup keymapCampbell Barton
Allow manually mapping keys for the popup toolbar. Useful for tools that don't have immediate access, add transform, annotate & measure.
2018-11-22Cleanup: minor simplification of keyconfig mergeCampbell Barton
2018-11-22Correct typoCampbell Barton
2018-11-22Icons: use newly added iconsWilliam Reynish
2018-11-22Icons: binary data update from SVGCampbell Barton
2018-11-22Icons: updates by jendrzychCampbell Barton
Changed to correct disclosure triangles everywhere, added new icon for Output Properties, added new icons for Image & Empty types in Add menu, added icons for add-on types, plus other tweaks and adjustments.
2018-11-22Merge branch 'master' into blender2.8Campbell Barton
2018-11-22Fix T57989: File loaded as startupCampbell Barton
The file contents was used to check if the file was a startup file. Now pass in an argument from startup loading code instead.
2018-11-22UI: disable screen edges for full-screen areasCampbell Barton
2018-11-22UI: hide shortcut from gizmo tip when none foundCampbell Barton
2018-11-22UI: String tweak for "UnLock" and Un-Mute in VSEPablo Vazquez
2018-11-22UI: Fix Lock/Mute menu in VSEPablo Vazquez
Thanks @tintwotin for reporting it!
2018-11-22Cleanup: utility function to avoid duplicate keysCampbell Barton
2018-11-22Tool System: auto-assign A-Z keys for toolbar popupCampbell Barton
Assign keys based on tool name when they're free, allows: Space-T for Transform, Space-A for Annotate.
2018-11-22Fix toolbar popup keymap not allowing 'A' keyCampbell Barton
2018-11-22Tool System: Updates for keymap stored as stringCampbell Barton
2018-11-22Fix factory-settings using stale preferencesCampbell Barton
We need to reload defaults on factory startup because the defaults now have preferences that may have changed.
2018-11-22Tool System: store keymap name in tool instead of the keymapCampbell Barton
Resetting keymaps caused them to become invalid (crashing on access).
2018-11-22Keymap: always show pie menu w/ tab-pie-menu prefCampbell Barton
Wasn't working well with armatures used ctrl-tab to switch to pose mode, making tab always switch to pose mode w/ this preference enabled. Now always show pie-menu.
2018-11-22Keymap: Use Z to toggle wire instead of xrayCampbell Barton
This now works like 2.7x more or less exactly, x-ray is enabled by default for wire so unless users change this, it will enable x-ray too.
2018-11-22Keymap: 3D view pref for tab to show pie menuCampbell Barton
This behaves like the 2.7x pie menu add-on, for users who prefer single-key access to all modes.
2018-11-22UI: Add Image and Clip space panels category.Bastien Montagne
Pretty much all were missing those here... Put all in same category for image, tried to sort them logically for Clip, since we already had at least two (stabilization and 'misc')... sigh. Another topic for UI team to work on I guess.
2018-11-22UI: First batch of fixing missing categories for panels.Bastien Montagne
2018-11-22Cleanup: Move debug warning message about panels missing category from ↵Bastien Montagne
drawing code to registering code. In drawing it was pretty stupid (since we did not know *which* panels were affected), and really, really annoyingly noisy!
2018-11-21UI: hide keymap preferences when filter is usedCampbell Barton