Scripts:
The orange -> HEAD merge reverted some scripts to older versions. This only affected the ones that already existed before the orange branch. Minor issue, easy to fix. All in all, kudos to kaito, Hos and others for all the hard work in bringing (coding, merging) all these changes to the main branch.
This commit is contained in:
@@ -2,14 +2,14 @@
|
||||
|
||||
"""
|
||||
Name: 'Save Current Theme...'
|
||||
Blender: 237
|
||||
Blender: 240
|
||||
Group: 'Export'
|
||||
Tooltip: 'Save current theme as a bpython script'
|
||||
Tooltip: 'Save current theme as a BPython script'
|
||||
"""
|
||||
|
||||
__author__ = "Willian P. Germano"
|
||||
__url__ = ("blender", "elysiun")
|
||||
__version__ = "2.37 2005/06/06"
|
||||
__version__ = "2.41 2006/01/16"
|
||||
|
||||
__bpydoc__ = """\
|
||||
This script saves the current Theme in Blender as a Blender Python script.
|
||||
@@ -39,15 +39,32 @@ some information on it before sharing it with others.
|
||||
# $Id$
|
||||
#
|
||||
# --------------------------------------------------------------------------
|
||||
# Copyright (C) 2004: Willian P. Germano, wgermano _at_ ig.com.br
|
||||
# Copyright (C) 2004: Willian P. Germano, wgermano _at_ ig com br
|
||||
# --------------------------------------------------------------------------
|
||||
# Released under the Blender Artistic License (BAL):
|
||||
# http://download.blender.org/documentation/html/x21254.html
|
||||
#
|
||||
# The scripts generated by this script are put under Public Domain by
|
||||
# default, but you are free to edit the ones you generate with this script
|
||||
# and change their license to another one of your choice.
|
||||
# --------------------------------------------------------------------------
|
||||
# ***** BEGIN GPL LICENSE BLOCK *****
|
||||
#
|
||||
# Copyright (C) 2005: Willian P. Germano, wgermano _at_ ig.com.br
|
||||
#
|
||||
# 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
#
|
||||
# ***** END GPL LICENCE BLOCK *****
|
||||
# --------------------------------------------------------------------------
|
||||
|
||||
import Blender
|
||||
from Blender.Window import Theme, FileSelector
|
||||
@@ -70,13 +87,13 @@ def write_theme(filename):
|
||||
|
||||
# \"\"\"
|
||||
# Name: '%s'
|
||||
# Blender: 237
|
||||
# Blender: 241
|
||||
# Group: 'Themes'
|
||||
# Tooltip: 'Change current theme'
|
||||
# \"\"\"
|
||||
|
||||
__%s__ = "????"
|
||||
__%s__ = "2.37"
|
||||
__%s__ = "2.41"
|
||||
__%s__ = ["blender"]
|
||||
__%s__ = \"\"\"\\
|
||||
You can edit this section to write something about your script that can
|
||||
|
||||
Reference in New Issue
Block a user