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
2013-11-17Convenience Makefile: spaces in the build path would fail still.Campbell Barton
2013-11-17convenience makefile: support spaces in pathsCampbell Barton
also update for new source/tools paths.
2013-11-15support for paths with spaces in makefileCampbell Barton
2013-09-30lots of operator descriptions were incorrectly copy/pasted.Campbell Barton
update some descriptions, others were removed and operators tagged as internal. add a script to detect duplicate operator descriptions.
2013-08-27add icons utility make target.Campbell Barton
2013-05-14Fix a mismatch in help message (check_spelling_osl obviously checks OLS, and ↵Bastien Montagne
check_spelling_c, C code! :P )
2013-04-01correct too-big allocation in mesh beautify.Campbell Barton
2012-11-20code cleanup: comment unused members of bmesh operator slots and some osl ↵Campbell Barton
style edits.
2012-11-12code cleanup: spelling,Campbell Barton
also initialize bmesh-bevel settings struct to zero to avoid possible uninitialized memory later.
2012-10-17code cleanup: add check spelling oslCampbell Barton
2012-10-17style cleanup: make OSL follow our C style convention. ↵Campbell Barton
http://wiki.blender.org/index.php/Dev:Doc/CodeStyle
2012-10-11style cleanup:Campbell Barton
also add helper makefile targets: * tbz - makes a tar.bz2 of an svn export * test_style_qtc - outputs style checks in qtc task format.
2012-10-06added simple checker for array sizes, uses clang to parse C/C++,Campbell Barton
Warns if an array is passed to a function where the array is declared larger, eg float[2] argument is passed function defined as float[3], (or a greater size). Existing free static checkers dont do this from what I can tell.
2012-09-16fix for error in recent commit (made function static that shouldn't have ↵Campbell Barton
been), add extra gcc warnings to cmake.
2012-09-14add checking target `check_smatch`Campbell Barton
2012-08-16for the default make/cmake wrapper, use ../build_os rather then ../build/osCampbell Barton
2012-07-04More spell checking.Bastien Montagne
2012-05-27cmake editsCampbell Barton
- only show mingw option when building with mingw - always run cmake configure with convenience build targets so failed configurations stop re-configuring. - disable WITH_GHOST_XDND in 'make lite'
2012-05-14style cleanup: imbuf & iconsCampbell Barton
2012-05-02replace python3 command with python3.2, python3 isnt available on ubuntu.Campbell Barton
2012-05-02source code style checker to, (similar to pythons pep8 checker)Campbell Barton
currently checks for brace placement and some whitespace use. can be accessed with: make test_style or... source/tools/check_style_c.py source/blender also style cleanup on bmo_primitives.c
2012-03-01Spelling CleanupCampbell Barton
2012-02-28move bmesh wiki docs into bmesh header and update doxygen.Campbell Barton
also have doxygen ignore *.py files and fix some warnings.
2012-02-08Correct mathutils documentation, also correct some python spelling errors ↵Campbell Barton
and add makefile target `check_spelling`
2011-11-23minor changesCampbell Barton
- avoid duplicate image enum definitions. - move image UI format & bw/rgb/rgba onto 1 line. - add 'make config' convenience target to run ccmake or cmake-gui
2011-11-13allow passing vars to cmake from our makefileCampbell Barton
2011-11-05remove po/ since the workflow for translations uses branches which isnt that ↵Campbell Barton
useful to have within blenders source dir. For now treat translations as binary files - just access from 'release/datafiles/locale'
2011-11-05update path loactions for external po/ Campbell Barton
2011-11-05misc doc editsCampbell Barton
- remove recently added sphinx reference workaround. - tested doxygen, correct some warnings, set tab width and added pymathutils group. - added convenience target 'make doc_doxy'
2011-10-23Another set of UI messages fixes and tweaks! No functional changes.Bastien Montagne
2011-10-23Remove the svn:keywords property.Guillermo S. Romero
2011-10-23remove $Id: tags after discussion on the mailign list: ↵Campbell Barton
http://markmail.org/message/fp7ozcywxum3ar7n
2011-10-20pass -noaudio when running blender for various utilities - doc-gen and tests.Campbell Barton
2011-10-16allow passing BUILD_DIR to convenience makefile as an argument incase you ↵Campbell Barton
dont want to build in the default path.
2011-10-16convenience targets for make doc_py, doc_dna, doc_manCampbell Barton
2011-10-15- add template for defining custom driver functions.Campbell Barton
- comment unused assignments.
2011-10-13py docs - gpu module wasn't included in docs.Campbell Barton
also added convenience target to build sphinx api docs: make doc_py
2011-09-30fix for crash generating messages.txt, I wasn't getting this crash because I ↵Campbell Barton
had 'WITH_PYTHON_SAFETY' enabled which was using different iterators (which dont crash), now there on by default. made headless and no-python configurations work again and added --factory-startup to doc building command.
2011-09-20move message.txt generator out of wm.py (which was loaded with blender ↵Campbell Barton
always), into it own py script which runs on its own, also added this to 'make translations' target.
2011-09-20- translation scripts now run with py3.xCampbell Barton
- added convenience make target 'make translations' - some MEM_malloc strings were not unique enough, expanded them.
2011-09-20committed change to transforms THRESHOLD by accident, also update ↵Campbell Barton
convenience makefile to regenerate real makefiles before static checking.
2011-09-16new convenience makefile targets for static source code cheching: ↵Campbell Barton
check_splint/check_sparse/check_cppcheck
2011-08-16turns out recent commit made 'make' on its own fail.Campbell Barton
2011-08-16Convenience targets for project files:Campbell Barton
Project Files for IDE's * project_qtcreator - QtCreator Project Files * project_netbeans - NetBeans Project Files * project_eclipse - Eclipse CDT4 Project Files
2011-08-16'make help' message for the convenience makefile which lists optional targets.Campbell Barton
2011-08-16added cmake configureation presets, so on *nix systems you can do...Campbell Barton
# minal blender with debug info make debug lite # blender with no ui make headless # blender as a python module make bpy
2011-07-20patch [#28031] Minor typo in BlenlibCampbell Barton
from Scott Giese (sgiese)
2011-07-18script to report deprecated functions of text and their age in days.Campbell Barton
2011-06-27initialize cmake's CMAKE_BUILD_TYPE to 'Release'Campbell Barton
add reference to cmake cache for convenience GNUMakefile
2011-06-06avoid cd'ing with the makefile stubCampbell Barton