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
2022-01-05Cleanup: fix typos in source codeBrecht Van Lommel
Contributed by luzpaz. Differential Revision: https://developer.blender.org/D5801
2021-05-26STL: fix T88532 importer replaces underscores with spacesMikhail Rachinskiy
2020-03-06Addons: Use Manual URL prefixAaron Carlisle
2020-03-05Fix IO Addond Manual LinksAaron Carlisle
2020-03-05Update 'bl_info' use 'doc_url' instead of 'wiki_url'Campbell Barton
2019-12-12io addons fix 404 manual linksmeta-androcto
2019-10-15STL: cleanup and PEP8Mikhail Rachinskiy
Unused imports, move rare imports inside functions, correct description.
2019-09-03UI: New options layout for IO Add-onsJulian Eisel
Updates importers/exporters for the new file-browser design. They are now reorganized into sub-panels. Updated the Blender version requirement (won't be compatible with older Blender versions). Left the Add-on versions untouched, will leave that up to Authors to change.
2019-07-15Update wiki_url to new manual pagesAaron Carlisle
2018-11-06Fix T57660: Export of STL format causes an exception.Bastien Montagne
Raising StopIteration was never a good idea to abort a generator function, and since 3.6 it's converted to a regular RuntimeError exception! Proper way to do that is just to use return statement (as long as there is a yield statement somewhere in the function code, it is a generator, and return statement has proper special handling in that case).
2018-10-03Cleanup: use tuples for storing classesCampbell Barton
2018-09-26Port 'STL format' addon to Blender 2.8Jacques Lucke
Reviewers: brecht Differential Revision: https://developer.blender.org/D3730
2018-08-29Python / Cleanup: rename INFO_MT to TOPBAR_MT to reflect actual location.Brecht Van Lommel
2016-01-26STL import: don't apply scene-scale by defaultCampbell Barton
2015-10-26Batch-export for STLCampbell Barton
Original patch by D1582 by @lichtwerk Also added 'use_selection' option, matching other exporters.
2015-05-03Fix T44536: Add (limited!) normal import for STL.Bastien Montagne
Limited, because STL only stores face normals, so we can only fake this by setting all clnors of a same face to that face normal... Guess use case are rather limited, but does not hurt to have it either.
2015-04-10Correct error in own last commit with STL defaultsCampbell Barton
2015-04-08Fix T44292: Work around invalid binary STL files on import.Bastien Montagne
Some report a size (facet number) of zero... To think even something as simple as STL format cannot be respected universally... :'(
2015-04-02default apply-modifiers to onCampbell 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-02-20Fix T43719: STL Import Script Scale option is strongly limitedBastien Montagne
Soft min/max are now 1e(-)3, hard ones are now 1e(-)6...
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-10-07Fix T42000: STL export scale incorrect.Bastien Montagne
Not a bug, in fact, more like a feature request. Added an option to take into account scene's scale on both export and import time. Also added scaling/axis conversion to importer.
2014-05-21Maintenance to bl_info, remove redundant tracker URL'sCampbell Barton
2014-04-22STL now always exports normals.Campbell Barton
Normals are not optional for STL so remove the option from the UI.
2014-04-01Add support for exporting normals with STLCampbell Barton
patch T36787 by Andrew Peel with own modifications.
2014-02-04Clean-up: Updated bl_info['tracker_url'] to developer.blender.org, some ↵CoDEmanX
minor other edits
2013-04-15option to apply scale on export. also add global scale options for ↵Campbell Barton
exporters. OBJ/X3D/VRML/PLY/STL
2013-02-07make option for applying modifiers consistentCampbell Barton
2012-12-19fix [#33615] bl_info (2,6,5,0) vs. (2,65,0) ?Campbell Barton
make addons blender versions consistent
2012-07-03Style edit (mostly), use """ for docstrings (not ''').Bastien Montagne
2012-06-23update wiki version ro 2.6Brendon Murphy
finished
2012-03-23update addons enabled by default to use 'faces -> tessfaces' also grease ↵Campbell Barton
pencil scatter and quake map export.
2012-01-14remove api field, was never used.Campbell Barton
2011-12-09reduce stl docstrings and keep chan exporter pep8 (remove minor warnings at ↵Campbell Barton
least)
2011-09-08pedantic pep8 editsCampbell Barton
2011-09-03Some more UNDO pushes for import operators.Sergey Sharybin
Forgot to modify this files in recent commit.
2011-08-24minor syntax change to addon headersCampbell Barton
2011-08-02pep8 style edits.Campbell Barton
2011-05-16update for changes in blender module layout, also add global axis conversion ↵Campbell Barton
to FBX.
2011-05-05fix [#26895] STL import in Win 7 64bitCampbell Barton
2011-03-19Updated Blender Version to 2.57 and api versionJonathan Smith
2011-02-27replace imports from *, considered bad practice by python devs.Campbell Barton
2011-02-16pep8 style warning corrections.Campbell Barton
2011-02-11add in module register calls (first pass, batch replace, will test each ↵Campbell Barton
addon next).
2011-01-21Some cosmetics fixesM Bouchard Guillaume
- Display the right docstring for ply files - Add a filter to *.stl on importing stl files
2011-01-21support for calling the operator with only filepath set.Campbell Barton
2011-01-14minor updates to STL classes.Campbell Barton