Revision e5b788b by Philipp Oeser November 15, 2019, 20:45 (GMT) |
Fix T68191: Make-instances-real doesn't select the new instances 2.79 also did this [select the new instances] which was useful. 2.79 also kept the instancer selected [this patch deselects] Reviewed By: mont29 Maniphest Tasks: T68191 Differential Revision: https://developer.blender.org/D6233 |
Revision 17cb32c by Campbell Barton November 15, 2019, 16:34 (GMT) |
Merge branch 'blender-v2.81-release' |
Revision eba4a4b by Campbell Barton November 15, 2019, 16:32 (GMT) |
Fix active bone flip not activating the wpaint vertex group |
Revision 554321c by Campbell Barton November 15, 2019, 15:49 (GMT) |
Merge branch 'blender-v2.81-release' |
Revision b266b10 by Campbell Barton November 15, 2019, 15:49 (GMT) |
Cleanup: quiet warnings |
Revision d61f2ca by Campbell Barton November 15, 2019, 15:42 (GMT) |
Merge branch 'blender-v2.81-release' |
Revision 69b587e by Campbell Barton November 15, 2019, 15:42 (GMT) |
Merge branch 'blender-v2.81-release' |
Revision eb23c76 by Campbell Barton November 15, 2019, 15:42 (GMT) |
Merge branch 'blender-v2.81-release' |
Revision 4cf24c1 by Campbell Barton November 15, 2019, 15:42 (GMT) |
Merge branch 'blender-v2.81-release' |
Revision 0384cc6 by Campbell Barton November 15, 2019, 15:41 (GMT) |
API Docs: don't show functions in 'bpy.app.handlers' This shows the function and it's memory location, it's not useful for docs so remove it. |
Revision 4ca8708 by Campbell Barton November 15, 2019, 15:39 (GMT) |
API Docs: only document built-in types Some types were documented in bpy.types aren't accessible there. For now, disable documenting types from add-ons and some types from bl_operators, bl_ui... since these are mostly for internal use. |
Revision dc726fe by Campbell Barton November 15, 2019, 15:39 (GMT) |
PyAPI: add class and module attributes to rna_info.InfoStructRNA Module access is needed for documentation generation to exclude non built-in modules. This also fixes a bug creating references to non built-in types. |
Revision f64064e by Campbell Barton November 15, 2019, 15:39 (GMT) |
Docs: correct indent for to_swing_twist docstring |
Revision ef71668 by Dalai Felinto November 15, 2019, 15:10 (GMT) |
Merge remote-tracking branch 'origin/blender-v2.81-release' |
Revision 49db3f6 by Dalai Felinto November 15, 2019, 15:10 (GMT) |
Fix: Filebrowser saving dialog size when maximized Reviewed By: Severin Differential Revision: https://developer.blender.org/D6260 |
Revision 97f3626 by Julian Eisel November 15, 2019, 14:37 (GMT) |
Merge branch 'blender-v2.81-release' |
Revision f641c60 by Julian Eisel November 15, 2019, 14:37 (GMT) |
Fix T70991: Maximized file browser hides file name bar on Windows `WS_CHILD` is a different kind of child window that what we define as child window. See http://forums.codeguru.com/showthread.php?491604. Setting this style flag seems to mess things up a bit in our configuration. The name bar is actually being overlapped by the Windows task bar then. Not totally sure why this happens, but I think it's because windows with the `WS_CHILD` style are positioned relative to the parent, not the desktop (screen without taskbar). So it uses the full space available when maximized, which isn't clipped by the taskbar anymore. |
Revision f8354d4 by Sybren A. Stüvel November 15, 2019, 14:13 (GMT) |
Fix crash when freeing Blender after GTests This only frees brush_rng and random_tex_array when they were actually previously allocated. In a unit test (see D6246) I want to be able to partially start Blender so that I can load a blend file. To prevent memory leaks, I also want to be able to release memory, which currently requires calling `BKE_blender_free()`. This unconditionally calls `RE_texture_rng_exit()` and `BKE_brush_system_exit()`, which now crash on freeing `NULL`. This patch fixes that. Allocation (`BKE_brush_system_init()`) and freeing (`BKE_brush_system_exit()`) are done asymmetrically. The allocation functions are called from `main()` in the creator module, but the freeing is done by `BKE_blender_free()` the Window Manager. Ideally we symmetrise this and initialise Blender from outside the window manager (so that the initialisation can be done without WM and Python too), but for now I'm happy when things don't crash. Reviewed by: sergey via pair programming |
Revision b6973ed by Campbell Barton November 15, 2019, 03:36 (GMT) |
Keymap: pressing leader key (Alt) again closes tool prompt Provides a convenient way to close if the tool prompt is opened by accident. |
Revision 8863fc6 by Campbell Barton November 15, 2019, 03:36 (GMT) |
Cleanup: unused argument, variable warnings |
|