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
path: root/doc
AgeCommit message (Collapse)Author
2011-02-06- cmake was missing an inclide (IDE's wouldnt index)Campbell Barton
- made doc generation always sumlink newly built docs to static URL. http://www.blender.org/documentation/250PythonDoc/
2011-02-05mathutils rotate functions for Euler/Quaternion/Matrix/Vector types.Campbell Barton
each accept Euler/Quaternion/Matrix types. eg: Euler.rotate(Quaternion(axis, angle)) Vector.rotate(Euler((pi/2, 0, 0))) matrix.resize_4x4() and euler.make_compatible() were still returning an instance of themselves, now return None.
2011-02-04pep8 cleanupCampbell Barton
2011-01-30remove nan-makefilesCampbell Barton
2011-01-27r34526 removed a line which had an unused return value but still needed to run.Campbell Barton
2011-01-26option for blender --addons rigify,io_scene_fbx,add_mesh_gearsCampbell Barton
needed so ctest unit testing can be done on addons that are not enabled by default.
2011-01-25use cmake defined names for jpeg, png, zlib and python libs, building on ↵Campbell Barton
*nix with non-standard libjpeg/png/zlib locations was broken. in the case of python this makes it easier to move to find_package(PythonLibs) when 3.x is supported.
2011-01-20Command line options to set blender system environment variables.Campbell Barton
Added because CTest has no convenient way to set environment vars for commands it runs. --env-system-config -> BLENDER_SYSTEM_CONFIG --env-system-datafiles -> BLENDER_SYSTEM_DATAFILES --env-system-scripts -> BLENDER_SYSTEM_SCRIPTS --env-system-plugins -> BLENDER_SYSTEM_PLUGINS --env-system-python -> BLENDER_SYSTEM_PYTHON
2011-01-19new command line option '--factory-startup' to skip reading startup.blend. ↵Campbell Barton
useful for testing with a predictable environment. also commented python benchmark prints on exit, can enable when profiling later.
2011-01-02removing epydocs for mathutils and geometry mododules (now they are in sphinx)Campbell Barton
2010-12-31update UI introspect function & man pageCampbell Barton
2010-12-23remove reload() from builtins since python3 no longer uses this.Campbell Barton
use imp.reload now. Should use import hooks but for now replace imp.reload with our own reload as the builtin reload was replaced before.
2010-12-10patch [#25027] formatting mathutils.geometry module docs for sphinxCampbell Barton
from Luka Bonavita See: http://www.blender.org/documentation/250PythonDoc/mathutils.geometry.html
2010-12-06include getset's for generating module docs.Campbell Barton
used for bpy.debug/tempdir/driver_namespace which were previously undocumented.
2010-11-25== console ==Luca Bonavita
- banner formatting == sphinx doc == - bpy.data: put the example below the documentation itself
2010-11-09update the man page from blenders --help messageCampbell Barton
2010-11-01== blender file format ==Luca Bonavita
- added a readme so that it's easy to understand how to use the py files. - fixed typos in the usage message.
2010-10-30== blender file format ==Luca Bonavita
Hello, from the bconf 2010 from Jeroen and Luca. Our first combined commit :) Automatically create sdna documentations from Trunk. Usage: blender2.5 -b -P BlendFileDnaExporter_25.py [-- [options]] Options: --dna-keep-blend: doesn't delete the produced blend file DNA export to html --dna-debug: sets the logging level to DEBUG (lots of additional info) --dna-versioned' saves version informations in the html and blend filenames --dna-overwrite-css' overwrite dna.css, useful when modifying css in the script Examples: default: % blender2.5 -b -P BlendFileDnaExporter_25.py with options: % blender2.5 -b -P BlendFileDnaExporter_25.py -- --dna-keep-blend --dna-debug
2010-10-27remove include paths which dont exist, fix for doc upload script which was ↵Campbell Barton
getting the blender version twice and not working sometimes.
2010-10-26move geometry python module into mathutils.geometry, since it provides ↵Campbell Barton
utility functions using mathutils types.
2010-10-13== docs ==Luca Bonavita
- moved files in proper directories and adapted paths where needed - deleted doc/oldbugs.txt (asked confirmation to jesterking a week ago in irc) - still working on doxygen files, for now I'll leave them in doc/ - NOTE: while checking if other files were referring to these files, I noted that "GPL-license.txt" is also used in the files below: - release/windows/installer/00.sconsblender.nsi - release/windows/specific.sh but these files should't be affected by this commit, but please check :)
2010-10-13== python api doc ==Luca Bonavita
First commit to make some structure in doc/ directory. - moved source/blender/python/doc -> doc/python_api - moved source/gameengine/PyDoc/*.rst -> doc/python_api/rst - modified accordingly sphinx_doc_gen.py and sphinx_doc_gen.sh (later on I'll try alternative/ scripts by neXyon as promised :) - source/gameengine/PyDoc/ is still there because contains epydoc stuff for the bge, will ask more and look into it later
2010-09-07ran through pep8 checkerCampbell Barton
2010-09-03SVN maintenance.Guillermo S. Romero
2010-07-15- updated man page from --help output.Campbell Barton
- cmake now installs the man page. - added cmake_linux_install.sh, shell script which downloads and builds blender.
2010-07-14Change to text3d: When back or front is enabled, the bevel rim on the other ↵Campbell Barton
side is not created anymore, just as the back/front filling faces are not created when disabled. when both are off the behavior is unchanged. This is needed when rendering alpha text so its possible to have a single layer of faces but use the bevel option to make text thicker. adding a rim on the back when back is disabled also doesnt make much sense IMHO. minor python edits too.
2010-07-14- text3d was missing menu items for toggling bold/underline/italic/smallcaps.Campbell Barton
- made smallcaps use a temp flag so caps can still have the smallcaps flag. - utility function for getting the char from a font. find_vfont_char(), was inline in ~5 places. - removed CU_STYLE mix of flags only used in one place, not needed. removed 'style' from rna too. - fix for some warnings.
2010-06-27script to create a man page from blenders --help text, replaced the hand ↵Campbell Barton
edited man page with this.
2010-06-07man page from debian updated for 2.5, better maintain here for other linux ↵Campbell Barton
distros.
2010-04-20replace referenecs to python 2.xCampbell Barton
2010-02-12correct fsf addressCampbell Barton
2008-11-10* add Brecht's small patch to make values to BF_QUICK and BF_QUICKDEBUG ↵Nathan Letwory
function as partial search entries. - this means you can do BF_QUICK=bf_ and it would build all libs that contain bf_ in their name. This makes it easier to use, since you don't have to remember the exact names * Update documentation to mention scons-local.
2008-10-31* doc updateNathan Letwory
2008-10-05=== SCons ===Nathan Letwory
* small doc update
2008-04-28* add small bit of docs about BF_CONFIGNathan Letwory
2007-08-15add the option of not installing to scons build systemJean-Luc Peurière
settting WITHOUT_BF_INSTALL='true' will disable the copying to INSTALL_DIR you can use that in your user-config.py or commandline slipping in minor cleaning for Os X builds
2007-06-11* update version numbers for scons official stable.Nathan Letwory
2007-04-17* update link to dependencies page.Nathan Letwory
2007-01-30fixing x2 paramJoilnen Leite
2006-12-11added a note about using SCons version 0.96.1Stephen Swaney
problems reported with beta versions with mingw on forum.
2006-12-06CMake: Provide better control over Python versions and library locations for ↵Jacques Beuarain
both Mac and Unix and add to documentation
2006-11-18CMake: Initial commit of CMake usage document for BlenderJacques Beuarain
2006-09-01* change Python version from 2.3 to 2.4, since it is a requirement for ↵Nathan Letwory
Blender anyway. Thanks to kalabalik for pointing out.
2006-03-17==SCons==Nathan Letwory
* The documentation for BF_QUICKDEBUG et al, missing from previous commit. Also provided by Joseph Eagar.
2006-03-10==SCons==Nathan Letwory
* if you all look to the left, you won't see that on the right BF_PRIORITYLIST was spelled BF_PRIORITY_LIST twice.
2006-02-06==SCons==Nathan Letwory
+ Added note about using the config files. I repeat it here: a user NEVER should edit config/(platform)-config.py directly. Instead, make a copy of config/(platform)-config.py to user-config.py, and change that instead. /Nathan PS. now I can say "I told you", and be sure I will :P
2006-02-04== SCons ==Nathan Letwory
* Added a user and a developer doc for the upcoming SCons commits. These documents should get most people started after the commit of the new scripts is a fact.
2005-06-06Updated BL text.Ton Roosendaal
This option has not been used for 3 years, and is very unlikely to happen anytime.
2005-03-23Updated channel listing for help with compiling Blender to reflect (onceChris Burt
again) the existence of #blendercompilers. Also added link to updated compiling guide found here: http://www.blender3d.org/cms/Building_with_Cygwin.524.0.html Thanks to Tom M. and joeedh for pointing out that it should be updated.
2004-05-27Tom's additions to the windows build.Kent Mein
(I changed #blendersaue to #blendercoders not #blendercompilers, does anyone actually use #blendercompilers?) Kent