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
2015-04-10Cleanup: imports (formatting)Campbell Barton
2015-03-24Fix T44089: restore default orientation axes of each addons to stae before ↵Bastien Montagne
rBAbfbabc0592b8. Now using a class factory to allow customization of those defaults axes, still way less verbose than previous code!
2015-01-22Fix: replaced Python module "imp" with "implib"Sybren A. Stvel
Python 3.4.0 deprecated the "imp" module, and replaced it with "importlib". This changes imp.reload() into implib.reload(). Reviewers: campbellbarton Differential Revision: https://developer.blender.org/D1016
2015-01-14rename IOHelperOrientation -> OrientationHelperCampbell Barton
2015-01-14Use new IOHelperOrientation class to handle forward/up axes.Bastien Montagne
Helps ensuring common behavior, and saves quite a few lines of code, too...
2014-05-21Maintenance to bl_info, remove redundant tracker URL'sCampbell Barton
2013-03-24remove use of ob.update_from_editmode() since editmode meshes don't get ↵Campbell Barton
access to customdata layers.
2013-03-21use object.update_from_editmode() for scripts which read object data.Campbell Barton
2013-03-13patch [#34591] 3DS importer: material transparency value short/float fixCampbell Barton
from Andreas Atteneder (atti)
2012-12-19fix [#33615] bl_info (2,6,5,0) vs. (2,65,0) ?Campbell Barton
make addons blender versions consistent
2012-11-14use alternate syntax to clear listsCampbell Barton
2012-10-09style cleanup: pep8Campbell Barton
2012-10-09remove sticky coordinates use.Campbell Barton
2012-09-11fix [#31622] .3ds importer doesn't do anything with the constrain_sizeCampbell Barton
2012-07-29style cleanupCampbell Barton
2012-07-093ds export addon: Correct own mistake from previous commit, accidentally ↵Sebastian Nell
turned file from utf8 into ascii, causing python error because of 2 non-ascii chars in credits.
2012-07-083ds export addon: fixed comments to not interfere with string-literals, ↵Sebastian Nell
reported by IRIE Shinsuke via mailing list
2012-07-04More spell checking.Bastien Montagne
2012-07-03Style edit (mostly), use """ for docstrings (not ''').Bastien Montagne
2012-06-23update wiki version ro 2.6Brendon Murphy
finished
2012-04-23update for change in blender apiCampbell Barton
2012-04-22patch: [#30986] 3DS importer/exporter material improvements and bug fixes.Campbell Barton
from Alexander Gessler (aramis_acg) This patch extends the 3DS importer and exporter to have better material support and unifies their respective feature sets. This includes: - UV scale,offset - tiling/wrap modes - improved conversion of mapping targets - better warnings Additionally, the exporter now handles specular, opacity and normal maps correctly (the importer did this already). (I think the way how textures were written previously was non 3DS-compliant). I tested this against assimp's 3DS test suite [1] as well as my personal 3DS test sets. Exported 3DS files were successfully read by FBXConv and assimp. [1] http://assimp.svn.sourceforge.net/viewvc/assimp/trunk/test/
2012-04-16patch [#30969] patch for 3ds importer screwing up UVs in current trunkCampbell Barton
from Alexander Gessler (aramis_acg)
2012-04-14Fixed some UI message typos (spotted by Leon Cheung, thx).Bastien Montagne
2012-04-11[#30894] 3ds import broken (now using poly/loops).Bastien Montagne
2012-04-09- update 3DS export for BMesh.Campbell Barton
- pep8 edits for after effects script.
2012-01-14remove api field, was never used.Campbell Barton
2012-01-02update for matrix col/row switchCampbell Barton
2012-01-02formatting edits onlyCampbell Barton
2011-12-06add back 3ds import image search optionCampbell Barton
2011-11-25minor pep8 editsCampbell Barton
2011-10-17fix spelling errors for commentsCampbell Barton
2011-10-04fix for various errors in scriptsCampbell Barton
2011-10-03fix [#28297] problem exporting large .3ds filesCampbell Barton
objects with too large arrays will be skipped.
2011-09-26corrections for addons to update for trunk.Campbell Barton
2011-09-25fix [#28405] Importing certain 3DS files takes a very long timeCampbell Barton
2011-09-21fix for image export on 3ds files, dont overwrite builtin 'map' for stl ioCampbell Barton
2011-09-19/trunk: Removed final points in UI strings and messages.Bastien Montagne
Plus a few styling enhancements. [[Split portion of a mixed commit.]]
2011-09-10cleanup unused varsCampbell Barton
2011-09-03Fix #28446: Moving imported object to new layer deletes itSergey Sharybin
Adding UNDO flag to import operators. Made this only for trunk addons.
2011-08-24minor syntax change to addon headersCampbell Barton
2011-08-08use sets rather then tuples for if checks, python optimizes this case.Campbell Barton
2011-08-03move axis conversion check into blenders parent helper function.Campbell Barton
2011-08-02style change onlyCampbell Barton
2011-08-02fix [#28150] .3ds format exportCampbell Barton
2011-07-25reverse matrix, vector multiplication order,Campbell Barton
previous order deprecated.
2011-07-25fix for missing importCampbell Barton
2011-07-20fix [#28028] 3ds export fails due to relative paths in windowsCampbell Barton
2011-07-18fix for invalid axis being allowed on import/exportCampbell Barton
2011-07-11cleanupCampbell Barton
- remove/comment unused variables - remove unused imports - fixed some bugs using incorrect variables