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
2010-12-15access bpy.app.debug_value, G.rt internallyCampbell Barton
2010-12-06include getset's for generating module docs.Campbell Barton
used for bpy.debug/tempdir/driver_namespace which were previously undocumented.
2010-12-03Enabled GCC -Wwrite-strings warning for CMake and replaced many 'char's for ↵Campbell Barton
'const char's,. Only one functional change where Transform orientations passed "" to BIF_createTransformOrientation() which could then have the value written into.
2010-11-27python access to driver namespace, rather then have a textblock defined for ↵Campbell Barton
drivers allow scripts to add functions directly. - bpy.app.driver_namespace, read-only dictionary, edit in-place. - reset on file load and new file. - on errors the namespace used to be reset, this should not be needed. simple example. def driverFunc(val): return val * val bpy.app.driver_namespace['driverFunc'] = driverFunc ... now all drivers can access this function.
2010-10-19* Enable compile and link flags to build info also on Windows and in SCons.Nathan Letwory
* Added build_system SCons or CMake * Write the new build info also to system-info.txt
2010-10-18cflags, cxxflags & linkflags in buildinfo.Campbell Barton
2010-10-14UNUSED() macro so -Wunused-parameter can be used with GCC without so many ↵Campbell Barton
warnings. applied to python api and exotic.c, removed some args being passed down which were not needed. keyword args for new mathutils types were being ignored when they should raise an error.
2010-10-13use PyC_UnicodeFromByte for bpy.app.tempdir incase of non utf-8 filepathCampbell Barton
2010-10-13patch [#24221] Creating graph from armature doesn't work with unsaved .blend ↵Campbell Barton
files (with fix). from Sergej Reich (sergof) Made some corrections to the patch as well as using bpy.app.tempdir with tempfile python module.
2010-10-13python api:Campbell Barton
- bpy.app.debug can now be set, removed bpy.data.debug (since this is not blendfile data) - added bpy.app.tempdir, this is needed because the userpref temp dir isn't always set, $TEMP may be used instead and scripts need temp dir access.
2010-07-16== installation paths ==Andrea Weikert
* fix for autosave location -> shouldn't use BLI_gethome anymore * this frees BLI_gethome of having to emulate the local->user->system search path and can now be truly considered as 'home/default location for .blend files' * removed setting the default G.sce from read_history, was out of context there. * fix for creating user dir, leftover from previous commit. jesterKing, please review -> if there are any issues I will fix or revert.
2010-05-18bpy.app.background - so a python script can check if blender is running ↵Campbell Barton
without a UI
2010-03-21Fix syntax for ID keyword.Guillermo S. Romero
2010-03-14attempt to fix build error on msvcCampbell Barton
2010-03-14strip quites off buildinfo at startup (was doing this for splash screen and ↵Campbell Barton
python api)
2010-03-14remove unused includesCampbell Barton
2010-03-01patch from Clark Gaebel, use const char * for buildinfo strings, also ↵Campbell Barton
updated bpy_app.c
2010-02-13strip quotes from Buildinfo for bpy.app.build_*Campbell Barton
2010-02-12correct fsf addressCampbell Barton
2010-02-11More tooltip editingDaniel Salazar
2010-02-01Fixed a few lingering compiler warnings with the bpy_app stuffJoshua Leung
2010-02-01ugh!, missed this file tooCampbell Barton