-- adding help_browser.py to show help for installed scripts;
-- updated scripts to include basic doc info to be shown with above script:
    script authors can / will / should update with more info, of course;
-- updated some scripts to newer versions: disp_paint, fixfromarmature, hotkeys, etc.
This commit is contained in:
2004-11-07 16:31:13 +00:00
parent 23e8b98228
commit c702b237d5
59 changed files with 2475 additions and 368 deletions

View File

@@ -6,6 +6,16 @@ Group: 'Help'
Tooltip: 'Help for new users'
"""
__author__ = "Matt Ebb"
__url__ = ("blender", "elysiun")
__version__ = "1.0"
__bpydoc__ = """\
This script opens the user's default web browser at www.blender3d.org's
"Getting Started" page.
"""
# $Id$
#
# --------------------------------------------------------------------------
# Getting Started Help Menu Item
# --------------------------------------------------------------------------
@@ -30,4 +40,4 @@ Tooltip: 'Help for new users'
import Blender, webbrowser
version = str(Blender.Get('version'))
webbrowser.open('http://www.blender3d.org/Help/?pg=GettingStarted&ver=' + version)
webbrowser.open('http://www.blender3d.org/Help/?pg=GettingStarted&ver=' + version)