Merge branch 'release/1.0'

This commit is contained in:
neersighted 2012-02-27 22:35:06 -08:00
commit a2f10a7a03
4 changed files with 6 additions and 6 deletions

View file

@ -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. <http://www.dempltr.com/> <lukeroge@gmail.com>

2
bot.py
View file

@ -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()

View file

@ -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": ".",

View file

@ -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')