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-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-15Fix showing "__pycache__" in templates menuCampbell Barton
2019-07-15Fix T66953: Duplicate items in pose context menuCampbell Barton
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 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: 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-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 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-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-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-02Updated tooltips for operators 'Transfer Mix' and 'Join Shapes'. Fixes typoInes Almeida
2019-07-01Revert "Rename operator 'Join Shapes' to 'Transfer Mix'."Brecht Van Lommel
This reverts commit 741967079c393a9eb6babd60c92a716fafa5d3e9. We are in UI and API freeze, and this changes both.
2019-07-01Docs: for release builds, link to specific manual versionBrecht Van Lommel
2019-07-01Fix T66300: GPencil layer context menu not working in topbar layer popoverAntonioya
2019-07-01Fix T66287: use keyword argument in freestyle text style loadingPhilipp Oeser
2019-07-01UI: run interactive 'Point From Normal' in normal menuCampbell Barton
2019-07-01GPencil: Fix wrong title missing in previous changeAntonioya
2019-07-01Fix keymap editing not tagging dirtyCampbell Barton
Partial fix for T65629
2019-07-01Fix T66192: Remove gizmos label from topbarCampbell Barton
2019-06-30UI: Use Plural Panel NamesAaron Carlisle
2019-06-30GPencil: Improve Cyclic operator to generate geometryAntonioya
Now, when close a geometry with cyclic is possible generate new geometry for the gap. The cyclic operator now supports multiframe edition too. Before only worked with active frame. Also added the corresponding missing menu options and the new F keymap. All these features were missing, pending of the fix of the alpha glitches in stroke already done.
2019-06-30Rename operator 'Join Shapes' to 'Transfer Mix'.Ines Almeida
The new name is consistent with the 'Transfer Shape' operator. - Updated the UI descriptions for both transfer operators.
2019-06-30GPencil: Fix text for Pattern stroke as Stencil MaskAntonioya
Detected while writting manual.
2019-06-29UI: Make Panel Name PluralAaron Carlisle
This is more consistent with other panels; for example "Shadows"
2019-06-29Fix T66240: clip editor shows Python error about tool headerBrecht Van Lommel
2019-06-28Remove Sticky option from the Floor constraintSergey Sharybin
This option from the very beginning of its existence needed more work to make it work correct and this was never done. This option was working fine during continuous playback, when there are no skipped frames, but it was failing when AV-sync of framedrop was enabled. It was never working correct when jumping between frames, including rendering on a farm which usually does frame-range based rendering. With copy-on-write things became even more tricky, since the "stuck" flag was never preserved between re-evaluations. Fixes T65683: Sticky Option in Floor Constraint for Bones Not Working
2019-06-28GPencil: Rename "Clamp Layer" to "Mask Layer"Antonioya
The old name was not meaning what this option does. Dtected while writting the manual.
2019-06-27Masking: make image editor UI consistent with clip editorSebastian Koenig
* Mask Display menu is now part of the header * Sidebar now has a separate Mask tab * Add context menu when in mask mode Differential Revision: https://developer.blender.org/D5102
2019-06-27Fix T65010: Affect options not being displayed in the UV editor snap settings.mano-wii
Reviewers: brecht, billreynish Reviewed By: brecht Differential Revision: https://developer.blender.org/D5141
2019-06-27Fix: Text Location lost X/Y textWilliam Reynish
Use PROP_XYZ instead, and user Slider=True to make them display as sliders in the UI
2019-06-26GPencil: Change HSV modifier to use the same range of parameter that other ↵Antonioya
areas of Blender The value of the Hue must be between 0 and 1, but the value was between 0 and 2.
2019-06-25Tool System: add UV transform toolsCampbell Barton
2019-06-25Cleanup: tweaks to fix for T66065Campbell Barton
This fix changed repr() to str().
2019-06-25Fix T66065: Missing text in the UI translations files due to 'fstring' usages.Bastien Montagne
Am not even sure that it is possible to use fstrings at all when UI translation is required (that is, is a sensible, reasonable way that does not make things even more complicated than they already are), but one thing is certain, this won't be trivial to get it working, so definitively not a job for now. Instead just do not use fstrings for UI translatable strings.
2019-06-25Preferences: changes to navigation gizmoCampbell Barton
- Add 'Navigation Buttons' preference, used for 2D views (previously this couldn't be disabled). - Add "Off" option for 3D view axis. - Support minimal axis with navigation buttons.