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
2017-03-19Cleanup: trailing spaceCampbell Barton
2016-08-17ant landscape: code cleanup, fix for marble noise thanks @jimmyhazevoetmeta-androcto
2016-08-08update ant landscape by @jimmyhazemeta-androcto
2016-07-31update add_mesh_ant_landscape.py add Farsthary planet noise re: T48967meta-androcto
2016-07-22Clean Up: remove redundant bl_tracker infometa-androcto
2016-04-08add_mesh_ant_landscape.py xy offset T47707meta-androcto
2014-11-08Cleanup: redundant float conversionsCampbell Barton
2014-05-29Replace some 'sqrt(a*a, b*b)' by 'hypot(a, b)'.Bastien Montagne
Patch by ldo (Lawrence D'Oliveiro), with very minor changes by myself.
2014-05-21Maintenance to bl_info, remove redundant tracker URL'sCampbell Barton
2014-05-09ANT Landscape addon: Fix normalsCoDEmanX
As suggested by meta-androcto: http://blenderartists.org/forum/showthread.php?336209-ANT-Landscape-generates-terrain-with-incorrect-normals
2014-02-04Clean-up: Updated bl_info['tracker_url'] to developer.blender.org, some ↵CoDEmanX
minor other edits
2012-12-19fix [#33615] bl_info (2,6,5,0) vs. (2,65,0) ?Campbell Barton
make addons blender versions consistent
2012-11-14update for changes in svnCampbell Barton
2012-07-03Style edit (mostly), use """ for docstrings (not ''').Bastien Montagne
2012-06-23update wiki version ro 2.6Brendon Murphy
finished
2012-02-29final fix for smooth shading, was missing recalc normals outside for correct ↵Brendon Murphy
smooth shading.
2012-02-29revert previous committ.Brendon Murphy
set smooth option now False by default. *could be removed from this addon as it holds no usable purpose.
2012-02-29commented out set smooth function.Brendon Murphy
inappropriate for this mesh type.
2012-02-23fix for remove doubles bmeshBrendon Murphy
2012-01-14remove api field, was never used.Campbell Barton
2011-12-30added: Brendon Murphy
bl_options = {'REGISTER', 'UNDO', 'PRESET'} adds inbuilt preset function for: class landscape_add(bpy.types.Operator)
2011-12-04Fix #29488: two addons broken after recent noise module change, patch by ↵Brecht Van Lommel
Patrick Zulke.
2011-10-02Formatting description for add mesh scriptsJonathan Smith
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-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-25update to bl_infoBrendon Murphy
2011-07-10cleanupCampbell Barton
- remove unused imports - remove/comment unused vars - fix for some bugs with unused vars being used
2011-06-22fix for errors adding landscape and bolt objects in editmodeCampbell Barton
2011-05-16update for changes in blender module layout, also add global axis conversion ↵Campbell Barton
to FBX.
2011-03-29updated working revision r35853Brendon Murphy
2011-03-21dont import UI directly, get classes via bpy.typesCampbell Barton
2011-03-19Updated Blender Version to 2.57 and api versionJonathan Smith
2011-02-11add in module register calls (first pass, batch replace, will test each ↵Campbell Barton
addon next).
2011-02-09incorrectly switched mesh.update() --> mesh.update_tag(),Campbell Barton
update_tag() tags for depsgraph update only, update() executes normal recalculation and creates edge data.
2011-02-07rename id.update() to update_tag()Campbell Barton
2011-01-30Attempting to standardize some of the locations and fixing up descriptions ↵Jonathan Smith
in bl_info
2011-01-26remove boiler plate add-object code and use python module as add_torus uses.Campbell Barton
there are some known issues with this but much easier to fix bugs in the one place.
2011-01-26patch [#25632] Get rid of obsolete magic edit propertyCampbell Barton
from Lawrence D'Oliveiro (ldo)
2011-01-24changes Operator names for new, stricter checking.Campbell Barton
2011-01-14bl_addon_info -> bl_infoCampbell Barton
2011-01-08== Tracker urls formatting ==Luca Bonavita
READ THIS TO AVOID A LOT OF WORK! New way of linking to tracker pages: just use the parameter "aid" (artifact ID), to avoid a lot of manual updates later in wiki and svn. Example: ========= OLD WAY TO LINK TO TRACKER ----------------------------- Complete url of a script in Upload http://projects.blender.org/tracker/index.php?func=detail&aid=25349&group_id=153&atid=467 If we move this in contrib this url will become http://projects.blender.org/tracker/index.php?func=detail&aid=25349&group_id=153&atid=468 467 becomes 468, so we have to update this in wiki page. Later on, when this moves into Trunk, the url will become http://projects.blender.org/tracker/index.php?func=detail&aid=25349&group_id=153&atid=469 468 becomes 469, so we have to update the url in wiki page and svn. Annoying! NEW WAY TO LINK TO TRACKER ----------------------------- Best way to link to tracker page is using: http://projects.blender.org/tracker/index.php?func=detail&aid=25349 Use "func=detail" Use "aid" (which is the "artifact ID") DON'T use "group_id" (which is the project ID, bf-extensions is project 153) DON'T use "atid" (which is the "artifacts tracker ID") Like this, the url is unique, and we will avoid to update wiki pages and svn after moving pages [[Split portion of a mixed commit.]]
2010-10-15working revision updateBrendon Murphy
rev: 32411
2010-09-24use the operator rather then its properties for drawing the UI, now its ↵Campbell Barton
supported in the api.
2010-09-18minor versioning changeBrendon Murphy
2010-09-17update working revision 31965Brendon Murphy
scripts tested as working
2010-09-11Patch [#23759] more replace self.properties.foo --> self.foo for ↵Thomas Dinges
bf-extensions/trunk/py/scripts by Filiciss Muhgue (filiciss). Thanks a lot! Part 2: Extensions
2010-09-10updated revision numbersBrendon Murphy
2010-09-03SVN maintenance.Guillermo S. Romero
2010-08-31script clean upBrendon Murphy
2010-08-31Script update,Brendon Murphy
new: spherical mesh, strata functions, interactive update, shade smooth.