Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-11-28Use collection and instance terminology in Python APISergey Sharybin
This follows naming convention agreed on in T56648.
2018-10-19Merge branch 'master' into blender2.8Brecht Van Lommel
2018-10-19Spelling fixes in comments and descriptions, patch by luzpaz.Brecht Van Lommel
Differential Revision: https://developer.blender.org/D3746
2018-09-07Merge branch 'master' into blender2.8Campbell Barton
2018-09-07Cleanup: trailing spaceCampbell Barton
2018-08-29Python / Cleanup: rename INFO_MT to TOPBAR_MT to reflect actual location.Brecht Van Lommel
2018-06-27blendfile: use_nil option for items_recursive_iterCampbell Barton
2017-06-10BAM: tiny upstream fixSybren A. Stüvel
2017-06-10Updated BAM to 1.1.8Sybren A. Stüvel
This should fix T51692: Blend File Utils - AssertionError
2017-06-10BAM: Don't bundle the dist-info directory.Sybren A. Stüvel
2017-06-10Unpacking BAM wheel into versionless directory.Sybren A. Stüvel
This makes it easier to see what changed when we update to a newer version of BAM.
2017-06-10Unpacked BAM wheel into a directory.Sybren A. Stüvel
This avoids having binary data in the addons repository. I've also added a script that automates this task. It: - wipes any pre-existing unpacked BAM wheel, - unpacks the new BAM wheel, - copies some files from the extracted wheel into the addon directly, - updates the version number of the add-on so that it matches the version of BAM, and - updates the path where the add-on searches for the unpacked wheel.
2017-04-21io_blend_utils: updated blender-bam 1.1.5 → 1.1.7Sybren A. Stüvel
2017-04-21io_blend_utils: updated BAM 1.1.4 → 1.1.5Sybren A. Stüvel
2017-04-12io_blend_utils: fixed missing variable in error msgSybren A. Stüvel
2017-04-12io_blend_utils: explicitly reference BAM wheel file, rather than guessingSybren A. Stüvel
The glob + sort approach didn't work reliably enough. Now we're just hard-coding the wheel's filename.
2017-04-12io_blend_utils: Upgraded BAM from 1.1.3 → 1.1.4Sybren A. Stüvel
Not only updated the wheel, but also updated the py files that originate from the BAM Git repository.
2017-04-12io_blend_utils: Added note about updating this module.Sybren A. Stüvel
2017-04-05Fix T51131: Upgraded BAM to version 1.1.3Sybren A. Stüvel
This fixes T51131 Textures do not get packed when used in particle system For more info, see https://developer.blender.org/diffusion/BAM/history/master/
2017-01-17io_blend_utils: be more lenient in cleaning up the temp_dirSybren A. Stüvel
self.temp_dir.cleanup() can raise a FileNotFoundError when BAM-pack actually (correctly) cleaned up after itself.
2017-01-17io_blend_utils: ship BAM as wheel file, running BAM-pack from thatSybren A. Stüvel
Previously we had a copy of BAM's blendfile_pack.py shipped with Blender. Updating that was cumbersome, as changes in one copy would have to be manually ported to the other. This is now resolved by not bundling blendfile_pack.py at all, but to include BAM as wheel file. This wheel file can be produced by running "python3 setup.py bdist_wheel" in the BAM source directory, and can be bundled with Blender without further modification. Blender looks for a file "blender_bam-*.whl" in the io_blend_utils directory, and loads the (alphabetically) last version. Even though there should be only one wheel file bundled, things won't break when there happen to be more, and Blender should pick up on the latest version (given simple versioning schemes).
2016-12-01blendfile.py: Add support reading single char DNA values as unsigned integer.Bastien Montagne
A single char is nearly never a string or byte, but rather a small int or bitflag value. ;)
2016-09-26Make blendfile.py reading/parsing slightly more robust/helpful in broken ↵Bastien Montagne
.blend files cases.
2016-09-15Use relative importSybren A. Stüvel
This way the import statements remain the same in both Blender's io_blend_utils module and BAM.
2016-09-09io_blend_utils: added BlendFileBlock.dna_type_name propertySybren A. Stüvel
Just to make it easier to get to the name of the DNA type from other Python scripts.
2016-07-19Fix T48187: Packing files on MS-Windows failsCampbell Barton
Using paths on different drives caused packing to fail since its not possible to make one path relative to another.
2016-06-23blendfile: add __repr__ to DNAName and DNAStructSybren A. Stüvel
2016-06-23blendfile: fixed dna_type can't be indexed errorSybren A. Stüvel
2016-06-23blendfile: Python modules shouldn't set their own log level.Sybren A. Stüvel
Logging configuration should be done by the user, as described in https://code.blender.org/2016/05/logging-from-python-code-in-blender/
2016-06-09minor edits to blendfileCampbell Barton
2016-03-30Correct import (missed when moving from BAM)Campbell Barton
2016-02-02Usual i18n/UI message fixes...Bastien Montagne
2016-01-29New blend-file addonCampbell Barton
Currently only expose packing functionality for packing a file and all its deps into a ZIP (shared code with the cloud). Can run directly or from the command line (without blender) via `blendfile_pack`. Also adds subprocess_helper module which we may want to re-use elsewhere, allowing to run external processes that don't lock blender and can be cancelled by pressing Esc.