Added about plugin for version information

This commit is contained in:
bjschuma 2010-02-16 23:52:39 -05:00
parent eacb1de5dc
commit e731c3bc41
3 changed files with 23 additions and 2 deletions

21
src/core/about.py Normal file
View File

@ -0,0 +1,21 @@
# Basic plugin class
__author__="bjschuma"
__date__ ="$Feb 16, 2010 11:50:14 PM$"
from bt import plugin
from bt.message import write
class Plugin(plugin.Plugin):
def __init__(self):
plugin.Plugin.__init__(self)
self.help = "Prints information about scion"
def run(self, args=None):
write("Scion Version 1.3")
write("Created by Bryan Schumaker")
write("2009 - 2010")

View File

@ -6,4 +6,5 @@ Scion 1.3 New Features
- Documentation for signals began
2 / 16 / 2010
- Rename signals
- Rename signals
- About plugin to give scion version information

View File

@ -26,5 +26,4 @@ Scion To-Do List
- Better way to list signals, aliases, and settings
- Command line options for plugins
- Command line optionss to disable signals and/or scripting
- About plugin to give scion version information
- Plugin sub-function help ("help plugins disable")