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
2011-08-08use static sets rather then tuples, python optimizes this case.Campbell Barton
minor change to lightmap unpack collecting unique meshes.
2011-08-08- update X3D and FBX testing checksumsCampbell Barton
- building with GHOST/SDL now adds the PREFIX - image.external_edit operator errors out if the filepath isnt set (was annoying and loaded gimp while running tests)
2011-07-29pep8 cleanup, also print message when attempting to run in animation player ↵Campbell Barton
mode.
2011-07-25fix [#28075] After the correction of No.38528 is applied, the following ↵Campbell Barton
phenomenon has been generated. own fault in recent addition of bpy.path.basename() not supporting byte paths.
2011-07-18script to report deprecated functions of text and their age in days.Campbell Barton
2011-07-01update checksums for x3d testsCampbell Barton
2011-06-09update for tests, error out when duplicate modules are found, all ctest ↵Campbell Barton
tests pass again.
2011-06-07update ctest md5sums for import/export to match changes to the scripts, also ↵Campbell Barton
some minor formatting change for bpy_props.c
2011-04-15fix [#26906] Panorama Button (Camera Data Properties)Campbell Barton
- render check for ortho/panorama combination wasn't working since the flags were not initialized at the time of checking. - disable panorama button in ortho mode.
2011-04-10minor pep8 edits, also added 'test_pep8' & 'test_cmake' to the GNUmakefile ↵Campbell Barton
for convenience.
2011-04-06fix [#26801] Undoing Animation modifiers undoes 2 steps.Campbell Barton
also found grease pencil layer operators were not flagged to use undo.
2011-04-06update test checksums (change in normals caused this). also make all imports ↵Campbell Barton
write blend files so its easy to check what the imports look like.
2011-04-05quiet warning & minor pep8 edits.Campbell Barton
2011-04-01pep8 checker, mostly pedantic style changes but also found an error in ↵Campbell Barton
mesh_utils.mesh_linked_faces()
2011-03-27pep8 cleanupCampbell Barton
2011-03-26- fix for editfont using an enum func on boolean property.Campbell Barton
- updated FBX export test hash.
2011-03-22found text editor X/Y selections coords were booleans and corrections to ↵Campbell Barton
operator calling script from last commit.
2011-03-22Added CTest to run most operators in background mode under various ↵Campbell Barton
conditions to see if any crash. used this to find quite a many errors already.
2011-03-20print how many times the operator failed.Campbell Barton
2011-03-20fix so the batch importer can run with addons passed as arguments.Campbell Barton
2011-03-192 tests for ctest.Campbell Barton
- script_load_addons: loads and onloads all addons, error if any cant be enabled or disabled. - script_load_modules: loads all blenders modules, error if any modules raise an exception or if any modules in the scripts dir are not tested (except for presets and templates). These are useful because lazy module loading means a module can have an error which isnt raised until the tools used. This gives a way to detect basic errors that used to happen on startup or when enabling the addon.
2011-03-17remove cmake WITH_INSTALL option since its a target now.Campbell Barton
2011-03-16update x3d test md5s for recent changes, also ensure directory is created or ↵Campbell Barton
export tests fail.
2011-03-13Fix "make test" on Mac, couldn't find executable.Brecht Van Lommel
2011-03-12builder reports MSVC was setting stack size to 2gig.Campbell Barton
2011-02-27replace import *'s with named imports (using * is convenient for some ↵Campbell Barton
scripts but considered bad practice by python devs)
2011-02-16bugfix [#26094] Going to Bone Roll menu brings up python errorCampbell Barton
also correct for pep8 warnings.
2011-02-10fix [#26003] Twice applied modifier with Convert to mesh with several ↵Campbell Barton
multi-user objects convert_exec could do with a re-write, getting quite confusing. update md5's for ctest results and some renaming in mesh_validate code.
2011-02-04pep8 cleanupCampbell Barton
2011-02-03remove unused variableCampbell Barton
also clear scene data before running batch import (utility script).
2011-02-01Script to test import operators, so a single command can execute an operator ↵Campbell Barton
on all files in a directory and optionally save out blend files for inspection. This comes in handy for testing importers against 100's of files, quickly showing breakages and easier to setup then unit tests. Example usage: blender.bin --background --python source/tests/batch_import.py -- \ --operator="bpy.ops.import_scene.obj" \ --path="/data/testfiles/obj" \ --match="*.obj" \ --start=0 --end=50 \ --save_path="/tmp/test" Also found my name was spelt wrong in some places :)
2011-01-25fix [#25778] Memoryblock Data from SCR: end corruptCampbell Barton
+ other minor changes.
2011-01-23update testing md5's for changes in exporters.Campbell Barton
2011-01-23correct own bad spellingCampbell Barton
2011-01-23- fix problem with cmake, windows 'RelWithDebInfo' target, was giving error: ↵Campbell Barton
"ImportError: No module named _socket" because of copying wrong files over. - move test -> tests, this name is used elsewhere in lib/tests. - change interface code not to loop on a float value (clang warning), harmless, but with extreme cases an eternal loop would still be possible though unlikely.