Commit Graph

36 Commits

Author SHA1 Message Date
c7c6d6d879 bl_addon_info -> bl_info 2011-01-14 16:09:46 +00:00
7fb70a4041 == Tracker urls formatting ==
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-08 19:20:04 +00:00
9b83a87686 new features see https://projects.blender.org/tracker/?func=detail&atid=469&aid=22015&group_id=153 for updates. 2010-11-21 04:58:45 +00:00
bcda26d9c4 fixes for regenerating objects
- removing objects is simplified.
- render object enabled on de-generate.
- removed warning, re-render wont crash now.
2010-09-20 03:11:54 +00:00
ab5c43cc08 update working revision 31965
scripts tested as working
2010-09-17 02:22:39 +00:00
0ebae76cfd minor changes, avoid lookups on bpy.types.Scene for many settings 2010-09-13 04:44:13 +00:00
47466bf2ae Missed these changes in last patch commit, had to manually merge due to changes in Extensions SVN 1010-1012. 2010-09-10 23:58:23 +00:00
f1133b1e99 Fix for API changes. 2010-09-10 22:14:09 +00:00
4d694baf91 trunk/py/scripts/addons/object_cloud_gen.py
removed warning & merged current api with loopduplicates fixes
2010-09-04 16:47:23 +00:00
6aa5f8f4c8 trunk/py/scripts/addons/object_cloud_gen.py
fix for api changes
thanks to loopduplicate
2010-09-04 16:19:19 +00:00
4faf39673a update for changes in rna io_import_scene_mhx.py mapto isnt working as it should since this can now only be accessed as many bools 2010-09-03 15:05:18 +00:00
1e5e2412e2 update for rna changes 2010-09-02 04:53:39 +00:00
01564c0f25 == trunk addons ==
- 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-31 02:43:31 +00:00
0ff254b4d0 "warning": "returns error at line 542" trunk\py\scripts\addons\object_cloud_gen.py 2010-08-29 09:07:51 +00:00
a695741a48 updates to blender rna api 2010-08-25 01:22:50 +00:00
2e2d7c7a52 update for changes in rna 2010-08-21 05:27:49 +00:00
6b83cb96d0 updates for blender api changes 2010-08-18 09:25:04 +00:00
5027ccba53 updates for changes in blenders api 2010-08-18 03:42:53 +00:00
2384910b60 update for changes in blender. 2010-08-09 01:42:53 +00:00
ebfb6490e1 update for changes in blender. 2010-08-05 15:58:52 +00:00
4802d6516b fix for registering scripts.
- 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-02 14:35:58 +00:00
3148c0f203 update addons to work with new register/unregister method,
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-08-02 11:53:48 +00:00
29f96aa287 update for changes in blenders api. 2010-07-15 16:56:27 +00:00
b5cd123b04 == trunk scripts confirming ==
- every script is now (2,5,3)
- added warning field in bl_addon_info so every dev knows about this: when "warning" field is not empty, a warning icon appears and text alerts 
users about a buggy script (this is used during development, released scripts should must have this empty of course)
- formatted scripts info like this
  - GPL
  - docstring
  - bl_addon_info
  - imports
  so that the actual script starts after the bl_addon_info dict
- removed old 2.4x cruft like __url__, __bpydoc__, __author__ etc, not needed anymore (when the case integrated info with bl_addon_info and in 
case of one email meta just put it in the GPL)

- next commits I plan to do contrib scripts and conform io scripts naming
2010-07-13 14:08:29 +00:00
1371472bee == addons ==
- added tracker_url to most of the current scripts in release, 
  see http://lists.blender.org/pipermail/bf-blender-cvs/2010-May/028285.html
- apparently missing tracker pages for 2 scripts:
		- io_anim_camera.py
		- io_mesh_stl.py
- wiki links:
	- added link to space_view3d_materials_utils.py
	- conformed link in import_scene_unreal_psk.py
2010-05-30 22:43:59 +00:00
da13f752c0 Updates for API changes in SVN 29091. 2010-05-30 20:50:06 +00:00
b35a3cfbb3 updated, added cloud types 2010-05-16 23:59:22 +00:00
102ba8e6de Added poll() function to fix crash with no selected objects. Grouped registration functions. 2010-04-30 09:58:42 +00:00
7fa83667fb add recent updates & check versions 2010-04-30 09:05:46 +00:00
85de222266 Renamed start to frame_start and end to frame_end for generating particles, so that the cloud gen script works again. 2010-04-30 08:45:04 +00:00
9c07248248 collections like context.selected_objects no longer return None for empty lists. Update scripts for this.
also removed check for obj.data == None for a mesh. This will never happen.
2010-04-24 19:35:58 +00:00
a847daaccd clean up & rename menu's for consistency.
add contrib\py\scripts\addons\space_view3d_multiselect_menu.py
delete contrib\py\scripts\addons\space_view3d_cursor_menu.py
too many conflicts if enabled with dynamic menu & is integrated into Dynamic menu & spacebar menu

[[Split portion of a mixed commit.]]
2010-04-23 00:54:09 +00:00
aa36513776 'NoneType' was being used where None is expected. 2010-04-21 16:07:00 +00:00
02957152f5 fixes to script in blender projects page added. 2010-04-20 04:55:22 +00:00
b3da550999 Added object: to the name of cloud_gen 2010-04-18 07:57:46 +00:00
83996ddbc7 addons/object_cloud_gen.py accepted.
moved directly to trunk/py/scripts/addons/object_cloud_gen.py
2010-04-17 11:51:46 +00:00