[Bf-extensions-cvs] SVN commit: /data/svn/bf-extensions [2556] branches/geodesic_domes/__init__ .py: Other gui implemented

Peter K.H. Gragert pkhgragert at gmail.com
Tue Nov 1 12:07:35 CET 2011


Revision: 2556
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-extensions&revision=2556
Author:   pkhg
Date:     2011-11-01 11:07:34 +0000 (Tue, 01 Nov 2011)
Log Message:
-----------
Other gui implemented

Modified Paths:
--------------
    branches/geodesic_domes/__init__.py

Modified: branches/geodesic_domes/__init__.py
===================================================================
--- branches/geodesic_domes/__init__.py	2011-11-01 11:07:11 UTC (rev 2555)
+++ branches/geodesic_domes/__init__.py	2011-11-01 11:07:34 UTC (rev 2556)
@@ -16,14 +16,13 @@
 #
 # ##### END GPL LICENSE BLOCK #####
 
-#  first try for an GUI : step1.py will be renamed later
 bl_info = {
-    "name": "Geodesic Dome",
-    "author": "PKHG, Kilon, original for 2.49 from Andy Houston'",
-    "version": (0,0,4),
+    "name": "Geodesic Domes",
+    "author": "PKHG (help in start the conversion: Kilon), original for 2.49 from Andy Houston",
+    "version": (0,0,5),
     "blender": (2, 6, 0),
-    "api": 40827,
-    "location": "View3D > Tool Shelf > Geodesic Dome Panel",
+    "api": 41431,
+    "location": "View3D > Tool Shelf > PKHG_Test",
     "description": "Choice for objects",
     "warning": "not yet finished",
     "wiki_url": "",
@@ -31,27 +30,24 @@
     "category": "Mesh"}
 
 """
-Rev 0.1 building menues
+Rev 0.5 building gui
 """
 if "bpy" in locals():
     import imp
-    imp.reload(gui_259)
+    imp.reload(gui_pkhg)
     
 else:
-    from geodesic_domes import gui_259
+    from geodesic_domes import gui_pkhg
    
-    
 import bpy
 from bpy.props import *
 
-
 def register():
     bpy.utils.register_module(__name__)
 
 def unregister():
     bpy.utils.unregister_module(__name__)
 
- 
 if __name__ == "__main__":
     register()
 



More information about the Bf-extensions-cvs mailing list