Revision 8e66183 by Sybren A. Stüvel January 10, 2020, 14:43 (GMT) |
USD Exporter: clarified export options in the UI - "Only Export Selected Objects" ? "Selection Only", as this is the standard used in other exporters. - "Evaluation Mode" ? "Use Settings for", as this is clearer for users who aren't as familiar with the technical details of the depsgraph. - "Use Instancing" ? "Instancing", and moved the checkbox to the end of the option list into its own box "Experimental". This looks a bit cleaner than just plonking "EXPERIMENTAL" in the checkbox label. |
Revision aacdf55 by Julian Eisel January 10, 2020, 13:28 (GMT) |
Cleanup: ARegion.sizex/y should not be used to access region size This should only be used to change and recalculate region sizes in a DPI independent way. To get the size with DPI applied, ARegion.winx/y should be used instead. Added note on this in comment. |
Revision c91ebcd by Nathan Letwory January 10, 2020, 13:21 (GMT) |
Docs: roll version to 2.83 for master |
Revision 9867106 by Jeroen Bakker January 10, 2020, 11:14 (GMT) |
Fix T71491: Sculpt Brush Text Color When text drawing is disabled in the viewport the color of the sculpt brh is set to the last used one. In th Light theme this is black what makes it totally not visible. This change will render the brush text using `TEXT_HI` as this is the last one set when the text overlay is on. |
Revision befc082 by Sergey Sharybin January 10, 2020, 10:40 (GMT) |
Fix T71908: Animated properties are lost after frame-post handler The issue was caused by special handling of animation update after manual edits in frame_post handler: to avid loss of manual edits done on top of animated property. This was done as a separate pass for non-animation update after frame_post did modifications. This caused some other side-effect: non-modified animated property was re-setting to the value which is used in the viewport. Idea of this solution is simple: preserve values which came from animation update through copy-on-write process. The actual process of this is a bit involved: need to decode RNA path and do it twice since f-curve might point to a sub-data which pointer will change. Since this is only done for non-active depsgraph (aka depsgraph used for render pipeline) this is probably fine since all this extra overhead is just a fraction of overall render process. Differential Revision: https://developer.blender.org/D6330 |
Revision c3d6929 by Nathan Letwory January 10, 2020, 09:26 (GMT) |
Version cycle 2.83, master is now in alpha and open for new work and features |
Revision 20ca8fd by Nathan Letwory January 10, 2020, 09:26 (GMT) |
Merge branch 'blender-v2.82-release' |
Revision a72d823 by Nathan Letwory January 10, 2020, 09:25 (GMT) |
Version cycle to 2.83 alpha for master. |
Revision 2ef08bd by Campbell Barton January 10, 2020, 07:08 (GMT) |
Cleanup: group event_query functions in header |
Revision db3968f by Campbell Barton January 10, 2020, 06:54 (GMT) |
Cleanup: name wm_event_modalkeymap_begin/end Relocate & name functions to make it clear calling begin should be followed by a call to end. Also group locking & report functions. |
Revision 1a66b33 by Campbell Barton January 10, 2020, 06:54 (GMT) |
Cleanup: move public event queries into their own file event_system.c has been collecting a lot of different functionality, move generic query/access functions into their own file, since these are used by operators and other parts of the windowing code and aren't part of low level event handling. Also move public last-property API to wm_operators.c. |
Revision 9520004 by Nathan Letwory January 10, 2020, 06:10 (GMT) |
Version 2.82 cycle to beta for bcon3, stabilizing period |
Revision 04c5882 by Campbell Barton January 10, 2020, 05:34 (GMT) |
Cleanup: use doxy sections in wm_event_system.c |
Revision 6eb9cc1 by Campbell Barton January 10, 2020, 05:31 (GMT) |
Correct last commit, restore the double-click state for modal events |
Revision 0920c16 by Campbell Barton January 10, 2020, 04:49 (GMT) |
Fix T72999: Fast keystrokes ignored for operators with modal keymaps Logic to convert double-click events into press events wasn't running in the case an operator had a modal keymap, causing bevel for e.g. to ignore keys pressed quickly. Change event handling logic so modal handlers never receive double click events, so checks for press/release are reliable. While this is an old issue for mouse events in practice it wasn't a problem since the first event typically executed/canceled. Support for keyboard double-click exposed the problem for all modal operators that take numeric input. |
Revision 62c6038 by Campbell Barton January 10, 2020, 04:10 (GMT) |
Docs: explain logic behind wm_event_modalkeymap |
Revision 7eaed14 by Campbell Barton January 10, 2020, 02:08 (GMT) |
Fix T72948: Smooth active tool gizmo vibrates |
Revision ad69127 by Campbell Barton January 10, 2020, 02:03 (GMT) |
Fix mesh randomize tool not running Missing from recent update to execute immediately when properties are set. |
Revision 9d95c03 by Nathan Letwory January 9, 2020, 19:46 (GMT) |
Docs: 2.82 release description for Linux appdata |
Revision 9b92093 by Jacques Lucke January 9, 2020, 16:07 (GMT) |
Fix T71630: Add Delete Tracks to Edit menu in NLA editor Reviewers: billreynish, lichtwerk Differential Revision: https://developer.blender.org/D6550 |
|