diff --git a/README.md b/README.md index 8704af0..7eeac67 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -##CloudBot/DEV +##CloudBot/1.0 ### About CloudBot is very heavily based on Skybot by rmmh. (https://github.com/rmmh/skybot) @@ -25,14 +25,14 @@ If you use another OS or distro you can find source packages on the module(s) we Once installing these packages run the bot once with ```python bot.py``` to generate the config file. Stop the bot, edit the config, and run the bot again with ```python bot.py``` to start it up :) ### Requirements -CloudBot runs on Python 2.7. Many of the plugins require lxml and BeautifulSoup. It is developed on Ubuntu 11.10 with Python 2.7.2. +CloudBot runs on Python 2.7. Many of the plugins require lxml and BeautifulSoup. It is devloped on Ubuntu 11.10 with Python 2.7.2. ### License CloudBot is licenced under the GPL v3 license. The terms are as follows. ``` - CloudBot 3.0/DEV + CloudBot 1.0 Copyright © 2011 Luke Rogers. diff --git a/bot.py b/bot.py index c203c14..b53ed80 100755 --- a/bot.py +++ b/bot.py @@ -13,7 +13,7 @@ os.chdir(sys.path[0] or '.') # do stuff relative to the install directory class Bot(object): pass -print 'Welcome to Cloudbot - Version 3/DEV - https://github.com/lukeroge/CloudBot/' +print 'Welcome to Cloudbot - Version 1.0 - https://github.com/lukeroge/CloudBot/' bot = Bot() diff --git a/core/config.py b/core/config.py index 1ca79d6..50098b4 100644 --- a/core/config.py +++ b/core/config.py @@ -17,7 +17,7 @@ if not os.path.exists('config'): "server": "localhost", "nick": "nickname", "user": "cloudbot", - "realname": "CloudBot/DEV - http://j.mp/uS5Cvx", + "realname": "CloudBot - http://j.mp/uS5Cvx", "nickserv_password": "", "channels": ["#channel"], "command_prefix": ".", diff --git a/plugins/misc.py b/plugins/misc.py index 6de932b..3fabd97 100644 --- a/plugins/misc.py +++ b/plugins/misc.py @@ -60,4 +60,4 @@ def onjoin(paraml, conn=None, bot=None): @hook.regex(r'^\x01VERSION\x01$') def version(inp, notice=None): - notice('\x01VERSION CloudBot/DEV - https://github.com/lukeroge/CloudBot') + notice('\x01VERSION CloudBot - https://github.com/lukeroge/CloudBot')