Blender Git Commit Log
Git Commits -> Revision 23a3a51
Revision 23a3a51 by Willian Padovani Germano (master) January 23, 2004, 19:24 (GMT) |
Blender's debug mode only worked on startup: - G.f's G_DEBUG flag was being erased in blenkernel/intern/blender.c's setup_app_data: G.f= bfd->globalf // added a line above it to fix this: if (G.f & G_DEBUG) bfd->globalf |=G_DEBUG; G.f= bfd->globalf; BPython: - debug info now only shown if Blender is started with '-d' option - added ~/.blender/scripts to modules sys.path - added two new functions to Blender.sys: basename and splitext - added doc for Blender.sys, updated other docs |
Commit Details:
Full Hash: 23a3a51e16c72d347f15790ed9e4d7bdc2d4f44a
SVN Revision: 1989
Parent Commit: 5aad4bf
Lines Changed: +277, -96
1 Added Path:
/source/blender/python/api2_2x/doc/Sys.py (+65, -0) (View)
9 Modified Paths:
/source/blender/blenkernel/intern/blender.c (+1, -0) (Diff)
/source/blender/python/api2_2x/doc/Blender.py (+8, -15) (Diff)
/source/blender/python/api2_2x/doc/Object.py (+18, -1) (Diff)
/source/blender/python/api2_2x/doc/Registry.py (+11, -9) (Diff)
/source/blender/python/api2_2x/Sys.c (+109, -32) (Diff)
/source/blender/python/api2_2x/Sys.h (+15, -3) (Diff)
/source/blender/python/BPY_extern.h (+1, -0) (Diff)
/source/blender/python/BPY_interface.c (+9, -11) (Diff)
/source/blender/python/BPY_menus.c (+40, -25) (Diff)
/source/blender/python/api2_2x/doc/Blender.py (+8, -15) (Diff)
/source/blender/python/api2_2x/doc/Object.py (+18, -1) (Diff)
/source/blender/python/api2_2x/doc/Registry.py (+11, -9) (Diff)
/source/blender/python/api2_2x/Sys.c (+109, -32) (Diff)
/source/blender/python/api2_2x/Sys.h (+15, -3) (Diff)
/source/blender/python/BPY_extern.h (+1, -0) (Diff)
/source/blender/python/BPY_interface.c (+9, -11) (Diff)
/source/blender/python/BPY_menus.c (+40, -25) (Diff)