Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWillian Padovani Germano <wpgermano@gmail.com>2006-12-30 21:28:49 +0300
committerWillian Padovani Germano <wpgermano@gmail.com>2006-12-30 21:28:49 +0300
commit91b2bc5c2344220aa395d5e7d6e2fd5c777b6218 (patch)
tree8c593d3d29da0b391e3f123dff9743a7266e7847 /release
parent822a88959bb2961ec1b5391b1fd01ebbece7b1df (diff)
Python API:
-Added missing access to Node win theme (thanks Mickaƫl Le-bihan for pointing) and also options group and group_active. -Added Node space to Window.Types dict. -Tiny update to the save theme script version numbers (keeping 2.42 for now to avoid popups, but should change to 2.43 right before release). BTW: Happy New Year everyone :).
Diffstat (limited to 'release')
-rw-r--r--release/scripts/save_theme.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/release/scripts/save_theme.py b/release/scripts/save_theme.py
index 6d19ed81885..981477cdd09 100644
--- a/release/scripts/save_theme.py
+++ b/release/scripts/save_theme.py
@@ -2,14 +2,14 @@
"""
Name: 'Save Current Theme...'
-Blender: 240
+Blender: 242
Group: 'Export'
Tooltip: 'Save current theme as a BPython script'
"""
__author__ = "Willian P. Germano"
__url__ = ("blender", "elysiun")
-__version__ = "2.41 2006/01/16"
+__version__ = "2.43 2006/12/30"
__bpydoc__ = """\
This script saves the current Theme in Blender as a Blender Python script.
@@ -76,6 +76,7 @@ default_fname = Blender.Get("scriptsdir")
default_fname = Blender.sys.join(default_fname, theme.name + '_theme.py')
default_fname = default_fname.replace(' ','_')
type_str = type('')
+
def write_theme(filename):
"Write the current theme as a bpython script"
@@ -87,13 +88,13 @@ def write_theme(filename):
# \"\"\"
# Name: '%s'
-# Blender: 243
+# Blender: 242
# Group: 'Themes'
# Tooltip: 'Change current theme'
# \"\"\"
__%s__ = "????"
-__%s__ = "2.41"
+__%s__ = "2.43"
__%s__ = ["blender"]
__%s__ = \"\"\"\\
You can edit this section to write something about your script that can