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
2011-07-10cleanupCampbell Barton
- remove unused imports - remove/comment unused vars - fix for some bugs with unused vars being used
2011-07-03fix for keymapsBrendon Murphy
2011-06-27- update for change in blender api.Campbell Barton
- replace line intersection function with mathutils one. - snap to edge intersection works with object transforms now. - clean whitespace
2011-04-03update for change in apiCampbell Barton
2011-03-29updated working revision r35853Brendon Murphy
2011-03-26more updates for recent changes in blender.Campbell Barton
2011-03-26patch [#26620] Correction leakage [#26601] Python error when use of autocompleteCampbell Barton
from perfection cat (sindra1961)
2011-03-19Updated Blender Version to 2.57 and api versionJonathan Smith
2011-02-21Icon reshuffling and description cleanupJonathan Smith
2011-02-15Wrong operator names for deleting objects in editmodeJonathan Smith
2011-02-15Proportional editing menu was missing in some placesJonathan Smith
2011-02-13Updated wrongly named operator in curve editmode select menuJonathan Smith
2011-02-13Updates to lattice menuJonathan Smith
2011-02-13Added Add Menu for metaballs after fix in blender trunkJonathan Smith
2011-02-13Adding/fixing up Animation menuJonathan Smith
2011-02-11add in module register calls (first pass, batch replace, will test each ↵Campbell Barton
addon next).
2011-02-01Some more location/description editingJonathan Smith
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.]]
2011-01-04Spacebar Menu: Fixed a bug with changing back to object mode, and took out ↵Jonathan Smith
hack that is no longer needed related to the same issue
2011-01-04Spacebar Menu: Omitted very important comma.Jonathan Smith
2011-01-04Spacebar Menu: Add Add Menu for when editing Curves and SurfacesJonathan Smith
2011-01-03Spacebar Menu: More PEP 8 CleanupJonathan Smith
2011-01-03Spacebar Menu: PEP 8 CleanupJonathan Smith
2011-01-03Spacebar Menu: Added more support for particle mode, including select menu ↵Jonathan Smith
and particle menu
2011-01-03Spacebar Menu: Update bl_addon_infoJonathan Smith
2011-01-03Spacebar Menu: Changed select menu it editmode so that it was correct ↵Jonathan Smith
(Thanks Bao2)
2010-12-31Added select all toggle to select menu for mballs, SpacebarMenuJonathan Smith
2010-12-31Fix for renamed curve operator in Spacebar MenuJonathan Smith
2010-12-31Reformatting the spacebar menu some to maintain uniformity through all the ↵Jonathan Smith
menus.
2010-12-30Fixed error in naming, drawtype to draw_typeJonathan Smith
2010-12-22Took out some unneeded lines (Thanks zeffii_ on irc) and changed error ↵Jonathan Smith
message to be more accurate on Dynamic Spacebar Menu
2010-10-16fix for renamed operatorCampbell Barton
2010-10-15working revision testsBrendon Murphy
tested rev:32411
2010-09-19minor syntax adjustmentsCampbell Barton
2010-09-17api updateBrendon Murphy
tested as working rev 31965
2010-09-16Related to #23861: addons now modify keyconfigs.default instead ofBrecht Van Lommel
keyconfigs.active, this is consistent with internal operators, and means you're not messing with user edited data in register/unregister. [[Split portion of a mixed commit.]]
2010-09-16fix for changes in blenderCampbell Barton
2010-09-10rev number updatesBrendon Murphy
added warning to panel measure
2010-09-02update for rna changesCampbell Barton
2010-08-31== trunk addons ==Luca Bonavita
- comforming after my commit in bf-blender: - removed the categories from addons names - made 'version' a tuple of integers - added 'api' field - formatted wiki and trackers pages and added where needed (empty pages are yet to be written by the authors though) - more conforming: - 1 tab = 4 spaces - please check everything is fine in case I made some gross mistake
2010-08-30updates for rna changesCampbell Barton
2010-08-23update for changes in rnaCampbell Barton
2010-08-23added multi select options to the edit mode menu.Brendon Murphy
this also cleaned up the edit mesh sub menu. multiselect options taken from script by liquidApe.
2010-08-18updates for changes in blenders apiCampbell Barton
2010-08-09update for changes in blender.Campbell Barton
2010-08-05update for changes in blender.Campbell Barton
2010-08-02fix for registering scripts.Campbell Barton
- mesh_surface_sketch.py - render_renderfarmfi.py - space_view3d_align_tools.py - object_cloud_gen.py also move bl_addon_info to the top for faster parsing.
2010-08-02update addons to work with new register/unregister method,Campbell Barton
These scritps still need changes related to parent classes - mesh_surface_sketch.py - render_renderfarmfi.py - space_view3d_align_tools.py - object_cloud_gen.py
2010-07-16restore modifier menu.Brendon Murphy