From a0d43ae2230fc0cd6768ffe7929fcbebd40d6555 Mon Sep 17 00:00:00 2001 From: Campbell Barton <ideasman42@gmail.com> Date: Mon, 9 Dec 2019 21:05:05 +1100 Subject: [PATCH] object_collection_manager: use GPL headers for all files --- object_collection_manager/internals.py | 20 ++++++++++++++++++++ object_collection_manager/operators.py | 20 ++++++++++++++++++++ object_collection_manager/ui.py | 20 ++++++++++++++++++++ 3 files changed, 60 insertions(+) diff --git a/object_collection_manager/internals.py b/object_collection_manager/internals.py index 8b440ce8d..fc186684d 100644 --- a/object_collection_manager/internals.py +++ b/object_collection_manager/internals.py @@ -1,3 +1,23 @@ +# ##### 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 ##### + +# Copyright 2011, Ryan Inch + from bpy.types import PropertyGroup from bpy.props import StringProperty diff --git a/object_collection_manager/operators.py b/object_collection_manager/operators.py index 85a5a8229..e88ce0384 100644 --- a/object_collection_manager/operators.py +++ b/object_collection_manager/operators.py @@ -1,3 +1,23 @@ +# ##### 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 ##### + +# Copyright 2011, Ryan Inch + import bpy from bpy.types import Operator from bpy.props import ( diff --git a/object_collection_manager/ui.py b/object_collection_manager/ui.py index b48f25355..7c7f791e2 100644 --- a/object_collection_manager/ui.py +++ b/object_collection_manager/ui.py @@ -1,3 +1,23 @@ +# ##### 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 ##### + +# Copyright 2011, Ryan Inch + from bpy.types import ( Operator, Panel, -- GitLab