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
2013-04-11Small changes to images as planes:Bastien Montagne
*Use absolute as default size mode (dpi with BU is not that nice). *Use default plane primitive instead of creating our own square (this way we can be sure things like verts order will always match those of default plane!), request from Christopher Barrett in tracker.
2013-03-29Fix import image as plane addon, broken by recent pynodes changes (thx to ↵Bastien Montagne
Iggy B [rexxxus] for reporting the bug).
2013-01-02Another fix to import image as plane, due to recent alpha refactor in ↵Bastien Montagne
blender code (thanks to meta-androcto for the report on IRC).
2013-01-01Fix [#33716] Import Image as Plane broken in recent buildBastien Montagne
Never use a generator as enum's "items" value!
2012-12-19fix [#33615] bl_info (2,6,5,0) vs. (2,65,0) ?Campbell Barton
make addons blender versions consistent
2012-12-03Some enhancement to how plane size is computed. Now you have three choices ↵Bastien Montagne
(absolute, to directly specify the result height, and dpi or dpbu [dots per Blender Unit], to use image definition). Based on an idea and code from mat ali, thanks! Also fixed correct use of overriden context (not really a bug, but printed annoying warning messages in the console).
2012-08-02Renaming bl_idname of import images as plane addon from ↵Bastien Montagne
"import.image_to_plane" to "import_image.to_plane" (import is a keyword in python...). Thanks to P. Staples in tracker!
2012-07-16Make Cycles emission autogenerated material trully shadeless (not cast light)Daniel Salazar
2012-06-24Update to import image as planes:Bastien Montagne
*Mostly, makes much more intensive use of Blender's FileSelector, to only show relevant files, and allow any pict/video files when "all" is selected (previously e.g. importing mkv's was impossible!). *Style cleaning/refactoring (esp. do not use 'self' for anythin else than a method's object, so made most func member of op class)...
2012-06-23update wiki version ro 2.6Brendon Murphy
finished
2012-05-30fix: reversed alpha mapping in cyclesFlorian Meyer
2012-05-30added preliminary support for cycles materialsFlorian Meyer
2012-03-24added per user request: receive transparent material optionFlorian Meyer
2012-03-14De-duplicate functions needed for object add operators:Sergey Sharybin
Remove module add_utils.py which fully duplicates functions from trunk's object_utils.py module and switch all dependent addons to use module from trunk.
2012-01-31fix some errors with import images to planes, 1) path comparison was not ↵Campbell Barton
expanding, normalizing first, 2) non-utf8 paths made the script error out, 3) paths were exported with absolute paths by default, had to remember to make them relative which was annoying.
2012-01-14remove api field, was never used.Campbell Barton
2011-12-31various style edits, no functional changesCampbell Barton
2011-11-24fix for exception if the image data cant be loadedCampbell Barton
2011-10-04fix for io_import_images_as_planes add-on not working after texface patch ↵Dalai Felinto
(reported by Nathan Letwory over IRC)
2011-09-23Fixing wrong type= syntax in report call...Bastien Montagne
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 2Thomas Dinges
* You only have to do layout.prop if you want 1 property, no need for row then! * Use col, row, sub as variable names, not colsub, rowsub, row2 etc please. * Povray Addon: Still used a lot of splits, you need no split when you only have 1 column!
2011-07-25swap vector multiplication order, also some style changesCampbell Barton
2011-05-28update for changes in blenders apiCampbell Barton
2011-05-16update for changes in blender module layout, also add global axis conversion ↵Campbell Barton
to FBX.
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-02-05update for changes in mathutuils.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-12-23== formatting ==Luca Bonavita
- in wiki page urls: "File_I-O/" -> "Import-Export/" - in categories: "Import/Export" -> "Import-Export" - 1 tab to 4 spaces - some tuple formatting, just to be very picky :P
2010-12-19basically completely recoded in order to use add_utils and io_utils. Also ↵Florian Meyer
the rest of the thing is recoded. Since this was like my first script this new version is much more readable and easier to debug. As a bonus there is also a new option to align the planes in a row on import to justify a version bumb. I think i tested everything and it should be bug free. Hopefully :)
2010-12-08updates for changes in blenders apiCampbell Barton
2010-11-14fix use-alpha bug, thanks to Olivier Amrein for patchFlorian Meyer
2010-09-24use the operator rather then its properties for drawing the UI, now its ↵Campbell Barton
supported in the api.
2010-09-18- fix for api changesFlorian Meyer
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-03update for changes in rna io_import_scene_mhx.py mapto isnt working as it ↵Campbell Barton
should since this can now only be accessed as many bools
2010-09-03updates for changes in blender.Campbell Barton
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-27update for rna api changesCampbell Barton
2010-08-25updates to blender rna apiCampbell Barton
2010-08-23update for changes in rnaCampbell Barton
2010-08-21update for changes in rnaCampbell Barton
2010-08-19update for changes in rna apiCampbell 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