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-02-23Fix T95962: Sapling Addon now broken because of license headerCampbell Barton
Load the first non-blank, non-comment line so files with licenses are supported.
2022-02-11File headers: use SPDX license identifiersCampbell Barton
See T95597
2021-01-07Fix T83360: Tree gen error showing "Leaf Object" enumCampbell Barton
Account for limitation in the Python API which needs to keep references to strings used in an enum.
2020-12-05Fix T83386: Use type annotation instead of assignmentRobert Guetzkow
The Sapling Tree Gen add-on previously assigned the `FloatProperty` to `bend`. This caused accessing `bend` in calculations to return a reference to the `FloatProperty` instead of its value. This commit replaces the assignment with an annotation as it is the correct usage since the Python API changes for Blender 2.80. NOTE: The add-on currently has another problem T83360 which prevents it from working. For the implementation of the patch I had to comment out the usages of `props.leafDupliObj`. Reviewed By: mont29 Differential Revision: https://developer.blender.org/D9747
2020-07-16Sapling Tree Gen: Fix T77949 by removing comments around bend code.CansecoGPC
2020-03-06Addons: Use Manual URL prefixAaron Carlisle
2020-03-05Update 'bl_info' use 'doc_url' instead of 'wiki_url'Campbell Barton
2019-10-29fix manual linksmeta-androcto
2019-10-18add_curve_sapling: add manual linkmeta-androcto
2019-04-29Fix T63955: label text not used as a keyword argCampbell Barton
2018-12-18Port 'Sapling Tree Gen' addon to Blender 2.8CansecoGPC
Differential Revision: https://developer.blender.org/D4085
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-08-29Python / Cleanup: rename INFO_MT to TOPBAR_MT to reflect actual location.Brecht Van Lommel
2017-09-02Cleanup: quiet strict name warnings for addons a..h.Campbell Barton
2017-05-28Sapling addon: Fix T51157meta-androcto
2017-04-08Sapling Tree Gen: Cleanup, fix warninglijenstina
Bumped version to 0.3.3 Fix star imports Pep8 cleanup Fix RNA Warning: Current value "0" matches no enum The EnumProperty function were passed an empty list if there were no adequate objects in the scene
2016-07-22Clean Up: remove redundant bl_tracker infometa-androcto
2016-04-28Sapling: fix bl info wiki/trackermeta-androcto
2016-04-28Update sapling tree gen: T46559 major rewritemeta-androcto
2015-07-21Fix T45504: Redo popup fails to update sapling UICampbell Barton
2015-03-26Fix T44135: Sapling add-on broken in 2.74rc3.Bastien Montagne
Nothing broken here actually, just missing info (shape needs at least three levels of branching to take effect). To be backported to 2.74.
2015-02-28Fix T43837: Can't change amount of leaves.Bastien Montagne
Leaves settings were simply never used (broken logic, dead branch 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
2014-11-10Final fix for 'division by zero' issues in sapling addon.Nikolaus Leopold
Review and minor cleanup by Bastien Montagne (mont29). Note: this addon would need a full complete style cleanup. :/ Differential Revision: D874
2014-09-04Fix T41711: add trees addons bug.Bastien Montagne
Just forbid null scale value...
2014-08-14fixes to bl_info, minor cleanup, toolshelf fix for bsurfaces.Brendon Murphy
2014-08-05fix for animated trees, thanks purplefrog. removed warning.Brendon Murphy
2014-08-04fixes for T41099 and T38495 by purplefrog in irc, added warning "Armature ↵Brendon Murphy
Mode buggy"
2014-05-21Maintenance to bl_info, remove redundant tracker URL'sCampbell Barton
2014-04-18Fix T39777: Blender 2.65-2.7 Sapling BugBastien Montagne
Clamp branchL to min 0.0 (negative branch length does not make much sense, and non-int power of negative numbers gives complex numbers...).
2014-02-04Clean-up: Updated bl_info['tracker_url'] to developer.blender.org, some ↵CoDEmanX
minor other edits
2013-06-26added warning. the script indeed throws errors using the length parameters, ↵Brendon Murphy
however, not all the time & the error does not halt the addon. small incremental changes are ok, it looks like bug in slider values. warning will stay until we investigate more & repair.
2012-12-19fix [#33615] bl_info (2,6,5,0) vs. (2,65,0) ?Campbell Barton
make addons blender versions consistent
2012-10-30update for change in blender.Campbell Barton
2012-09-20The tree is now added at the cursor location instead of the world origin.Jace Priester
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-02-01Fix to make it easier to find in space bar menu. Added "tree" to label so ↵Andrew Hale
users can search "tree".
2012-01-14remove api field, was never used.Campbell Barton
2011-12-10Fix for 2 bugs:Andrew Hale
- Setting any of the branch lengths to 0.0 results in divide by zero. Min value for the length setting is now 0.000001 - Preset export failed with the change to the way that vector properties were stored. Now we just store a slice copy of the vector in the export.
2011-08-27Addon UI Cleanup, Part 1Thomas Dinges
* General Rule (for Ivygen and Sapling): If you need more code for declaring the layouts than for the props itself, something is wrong. ;-) * if > elif
2011-08-24SVN maintenance.Guillermo S. Romero
2011-08-22Version 0.2.5:Andrew Hale
- Fixed the assignment of vertex groups for rectangular leaves. Fix thanks to pawel_xx - Compressed the UI to make accessing the different parameters easier. Also, the tree is not rebuilt every time a new menu section is accessed.
2011-07-31SVN maintenance.Guillermo S. Romero
2011-07-19Added the ability to use rectangular leaves with UV mappingAndrew Hale
2011-07-12SVN maintenance.Guillermo S. Romero
2011-07-11Updated to Version 0.2.3Andrew Hale
- Added tracker and wiki URLs - Fixed usage of Matrix.Rotation
2011-07-11Moved Sapling to TrunkAndrew Hale
[[Split portion of a mixed commit.]]