[Bf-extensions-cvs] SVN commit: /data/svn/bf-extensions [780] contrib/py/scripts/addons/ add_mesh_BoltFactory: sorry, no message last time.

Florian Meyer florianfelix at web.de
Wed Jul 14 01:17:22 CEST 2010


Revision: 780
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-extensions&revision=780
Author:   testscreenings
Date:     2010-07-14 01:17:22 +0200 (Wed, 14 Jul 2010)

Log Message:
-----------
sorry, no message last time.

in my estimate the bolt script is finished.
It behaves like a normal add_mesh addon now.
And the presets are still working,
and editable in external files.

Modified Paths:
--------------
    contrib/py/scripts/addons/add_mesh_BoltFactory/Boltfactory.py
    contrib/py/scripts/addons/add_mesh_BoltFactory/__init__.py
    contrib/py/scripts/addons/add_mesh_BoltFactory/createMesh.py
    contrib/py/scripts/addons/add_mesh_BoltFactory/preset_utils.py

Modified: contrib/py/scripts/addons/add_mesh_BoltFactory/Boltfactory.py
===================================================================
--- contrib/py/scripts/addons/add_mesh_BoltFactory/Boltfactory.py	2010-07-13 23:12:57 UTC (rev 779)
+++ contrib/py/scripts/addons/add_mesh_BoltFactory/Boltfactory.py	2010-07-13 23:17:22 UTC (rev 780)
@@ -1,4 +1,22 @@
-    
+# ##### BEGIN GPL LICENSE BLOCK #####
+#
+#  This program is free software; you can redistribute it and/or
+#  modify it under the terms of the GNU General Public License
+#  as published by the Free Software Foundation; either version 2
+#  of the License, or (at your option) any later version.
+#
+#  This program is distributed in the hope that it will be useful,
+#  but WITHOUT ANY WARRANTY; without even the implied warranty of
+#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#  GNU General Public License for more details.
+#
+#  You should have received a copy of the GNU General Public License
+#  along with this program; if not, write to the Free Software Foundation,
+#  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+#
+# ##### END GPL LICENSE BLOCK #####
+
+
 import bpy
 import mathutils
 from bpy.props import *

Modified: contrib/py/scripts/addons/add_mesh_BoltFactory/__init__.py
===================================================================
--- contrib/py/scripts/addons/add_mesh_BoltFactory/__init__.py	2010-07-13 23:12:57 UTC (rev 779)
+++ contrib/py/scripts/addons/add_mesh_BoltFactory/__init__.py	2010-07-13 23:17:22 UTC (rev 780)
@@ -1,4 +1,22 @@
+# ##### BEGIN GPL LICENSE BLOCK #####
+#
+#  This program is free software; you can redistribute it and/or
+#  modify it under the terms of the GNU General Public License
+#  as published by the Free Software Foundation; either version 2
+#  of the License, or (at your option) any later version.
+#
+#  This program is distributed in the hope that it will be useful,
+#  but WITHOUT ANY WARRANTY; without even the implied warranty of
+#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#  GNU General Public License for more details.
+#
+#  You should have received a copy of the GNU General Public License
+#  along with this program; if not, write to the Free Software Foundation,
+#  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+#
+# ##### END GPL LICENSE BLOCK #####
 
+
 bl_addon_info = {
     'name': 'Add Mesh: Bolt',
     'author': 'Aaron Keith',
@@ -8,13 +26,9 @@
     'url': 'http://sourceforge.net/projects/boltfactory/',
     'category': 'Add Mesh'}
 
-
 import bpy
 from add_mesh_BoltFactory.Boltfactory import add_mesh_bolt
 
-
-
-
 ################################################################################
 ##### REGISTER #####
 

Modified: contrib/py/scripts/addons/add_mesh_BoltFactory/createMesh.py
===================================================================
--- contrib/py/scripts/addons/add_mesh_BoltFactory/createMesh.py	2010-07-13 23:12:57 UTC (rev 779)
+++ contrib/py/scripts/addons/add_mesh_BoltFactory/createMesh.py	2010-07-13 23:17:22 UTC (rev 780)
@@ -1,4 +1,22 @@
-
+# ##### BEGIN GPL LICENSE BLOCK #####
+#
+#  This program is free software; you can redistribute it and/or
+#  modify it under the terms of the GNU General Public License
+#  as published by the Free Software Foundation; either version 2
+#  of the License, or (at your option) any later version.
+#
+#  This program is distributed in the hope that it will be useful,
+#  but WITHOUT ANY WARRANTY; without even the implied warranty of
+#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#  GNU General Public License for more details.
+#
+#  You should have received a copy of the GNU General Public License
+#  along with this program; if not, write to the Free Software Foundation,
+#  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+#
+# ##### END GPL LICENSE BLOCK #####
+
+
 import os  #remove this
 import bpy
 

Modified: contrib/py/scripts/addons/add_mesh_BoltFactory/preset_utils.py
===================================================================
--- contrib/py/scripts/addons/add_mesh_BoltFactory/preset_utils.py	2010-07-13 23:12:57 UTC (rev 779)
+++ contrib/py/scripts/addons/add_mesh_BoltFactory/preset_utils.py	2010-07-13 23:17:22 UTC (rev 780)
@@ -1,3 +1,22 @@
+# ##### BEGIN GPL LICENSE BLOCK #####
+#
+#  This program is free software; you can redistribute it and/or
+#  modify it under the terms of the GNU General Public License
+#  as published by the Free Software Foundation; either version 2
+#  of the License, or (at your option) any later version.
+#
+#  This program is distributed in the hope that it will be useful,
+#  but WITHOUT ANY WARRANTY; without even the implied warranty of
+#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#  GNU General Public License for more details.
+#
+#  You should have received a copy of the GNU General Public License
+#  along with this program; if not, write to the Free Software Foundation,
+#  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+#
+# ##### END GPL LICENSE BLOCK #####
+
+
 import bpy
 import os, sys
 




More information about the Bf-extensions-cvs mailing list