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
2014-02-13Code cleanup: styleCampbell Barton
2014-02-03OSX: tentative set back TEST_BLENDER_EXE to Debug hardcoded for xcode case,Jens Verwiebe
did not found a way yet to use Configuration or run CTEST out of xcode
2014-02-03Fix EXECUTABLE_OUTPUT_PATH binpath for OSX makefiles ( no CMAKE_BUILD_TYPE ↵Jens Verwiebe
dir used here )
2014-02-03Code cleanup: white space and cmake was broken on all platformsCampbell Barton
2014-02-03Assure test works in all OSX buildenvironments/build-typesJens Verwiebe
2014-02-02Added bevel regression test to tests.Howard Trickey
Goes with companion files bevel_regression.blend and mesh_ops_test.py just added to svn lib/tests/modeling. Also changed the blender executable path for Apple case: needed either 'Debug' or 'Release' in the path. I chose 'Debug', because not sure how to add otherwise. At any rate, what was currently there didn't work at all.
2014-01-06Patch D133: Python wrapper for BLI_kdtree (adds mathutils.kdtree)Campbell Barton
Originally by Dan Eicher, with my own fixes and adjustments (see patch page for details). For details there are unit tests and api example usage. doc/python_api/sphinx-in-tmp/menu_id.png
2013-11-28error in last commitCampbell Barton
2013-11-28Testing: added check for broken links to wiki docsCampbell Barton
2013-09-15- update bl_run_operators.py for change in blender.Campbell Barton
- rename curve delete operator vertices enum to match mesh delete operator. - add missing NULL checks to view3d_lock_poll() to prevent crashes when called outside a view3d.
2013-06-28test operator script, add ability to load files from a path while testing ↵Campbell Barton
operators.
2013-04-07freestyle lineset `tag` attribute was defined but not used, also some code ↵Campbell Barton
cleanup.
2013-03-17code cleanup: incorrect sized array args, remove some redundant code.Campbell Barton
2013-03-08style cleanupCampbell Barton
2013-02-26patch [#34437] Fix text editor bug: ctrl+F is not configurableCampbell Barton
in fact the keymap editor was missing other keymaps so added these too, also updated keymap checker to make sure there is no mismatch with region/space types.
2013-02-26add ctest for keyconfig_utils to check for missing items.Campbell Barton
2013-02-14update to operator running test, add option to randomize order, not reset ↵Campbell Barton
blender for each operator and set data attributes.
2013-02-13update python module loading test.Campbell Barton
2013-02-07fix for regression in bpy-api, python context passed to operators couldn't ↵Campbell Barton
override collections.
2013-01-19patch [#33924] Spelling CorrectionsCampbell Barton
from Gavin Howard (gdh)
2013-01-16code cleanup:Campbell Barton
- cycles ui used 'cscene' for scene.cycles and scene.cycles_curves - style cleanup
2012-12-31add ".hh" as an extension for source scripts.Campbell Barton
2012-12-20add a test to the addons loaded that tries to load all addons then lists ↵Campbell Barton
addons that fail.
2012-11-30fix for another error in my own recent commit, beauty fill crashed.Campbell Barton
2012-11-22add missing bgl and gpu api docstrings (found using docstring completeness ↵Campbell Barton
checker)
2012-11-21scripts to report missing py reference api docs. (simple RST parse and ↵Campbell Barton
compare with python)
2012-11-03code cleanup: cmake - add missing headers, remove directories from source ↵Campbell Barton
listing. also remove logImageLib.c - empty file.
2012-10-31no longer use 'check_existing' to see if we need to have a save popup, ↵Campbell Barton
instead use 'exec' operator on a saved file and invoke on unsaved files. correct missing memset --> CustomData_reset switch too.
2012-10-29style cleanup: also quiet harmless compiler warning.Campbell Barton
2012-10-22style cleanupCampbell Barton
2012-10-08style cleanup: pep8Campbell Barton
2012-09-27pep8 cleanupCampbell Barton
2012-09-23add more tests to run operators testing scriptCampbell Barton
2012-09-18wiki reference checker now prints undocumented sections, more helpful then a ↵Campbell Barton
massive list of all props.
2012-09-18extra error check for bl_rna_wiki_reference.py validator, that ↵Campbell Barton
rna_wiki_reference.py uses correct structure.
2012-09-13modifications needed to get a URL from an RNA id from the testing scriptCampbell Barton
2012-09-13test script to check rna/wiki lookup completenessCampbell Barton
2012-09-05code cleanup: python - pass multiple args to string startswith() / ↵Campbell Barton
endswith() functions rather than calling multiple times.
2012-05-27code cleanup: remove mode comments, these were applied very un-evenly ↵Campbell Barton
across a few files.
2012-04-23rename Mesh.uv_loop_layers --> uv_layersCampbell Barton
add filtering for document generator to support --partial bpy.types.SomeType
2012-03-18spelling cleanupCampbell Barton
2012-03-16mesh_validate code for bmesh (i.e. polys/loops).Bastien Montagne
Everything seems to work well (many tests making random changes over various meshes went good), but the code is a bit complex and hard to follow, due to the various possibilities of invalid poly/loop combinations… Code also makes more operations than previous tri/quad faces version (hence is a bit slower), but I don’t think we can do otherwise, it’s just the price for bmesh flexibility. ;) Note: added the py script I used to make the tests, under source/tests/...
2012-03-09style cleanup: spelling.Campbell Barton
also remove large, duplicate comments from sunsky.h
2012-03-08use BLI_path_cmp() rather then strcmp()Campbell Barton
2012-02-11use ValueError when vector/matrix multiplications sizes are not supported, ↵Campbell Barton
was using TypeError for mat*vec and ValueError for vec*mat.
2012-02-04Code Cleanup: pep8 editsCampbell Barton
2012-02-03Code Cleanup: check is / is not when comparing singletons.Campbell Barton
2012-02-02* fix for error in shape transfer (wrong var name).Campbell Barton
* fix for error alligning object to the view when no space was set. also added blenderplayer start to CTest operator blacklist.
2012-02-02internal cleanup, check.Campbell Barton
* remove duplicate operator, wasnt used. * added check for duplicate types for CTest.
2012-01-19rename rgb_float_to_byte, rgb_byte_to_float to rgb_float_to_uchar, ↵Campbell Barton
rgb_uchar_to_float and swap args (math functions mostly have dest arg first like strcpy).