diff options
| author | 2019-10-10 12:43:19 +0100 | |
|---|---|---|
| committer | 2019-10-10 12:43:19 +0100 | |
| commit | a2b73469e6b32e600e352a41485fea046bf06733 (patch) | |
| tree | 109203e2feb536cda442fe97c2f5a176e983c5a2 | |
| parent | 'server.conncect_time' -> 'server.connect_time' (diff) | |
| signature | ||
v1.12.0-rc2 release
| -rw-r--r-- | CHANGELOG.md | 15 | ||||
| -rw-r--r-- | src/IRCBot.py | 2 |
2 files changed, 15 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index d9a6462f..0bfd5f93 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,20 @@ -# TBD - BitBot v1.12.0-rc2 +# 2019-10-10 - BitBot v1.12.0-rc2 + +Added: +- Basic lock file mechanics (`src/LockFile.py`) +- Single-line normalisation of fediverse Notes by vaguely parsing HTML +- Single-line normalisation of RSS titles +- Single-line normalisation of tweets + +Changed: +- `!editserver` should work for currently-disconnected servers +- Also count `"/"` as a word split for checking how different a `<title>` is from a URL (`title.py`) +- `INFO` logging should go to a file - stdout should only be `WARN` Fixed: - Wasn't catching `timers.add()` output as `timer` var in reconnection logic +- Multi-word markov seeds should have failed if no new data was found +- `masterlogin` should only allow you to bypass `permission` checks, not e.g. `require_access` or `require_mode` # 2019-10-09 - BitBot v1.12.0-rc1 diff --git a/src/IRCBot.py b/src/IRCBot.py index f9493367..101d3d7b 100644 --- a/src/IRCBot.py +++ b/src/IRCBot.py @@ -3,7 +3,7 @@ import typing, uuid from src import EventManager, Exports, IRCServer, Logging, ModuleManager from src import PollHook, Socket, Timers, utils -VERSION = "v1.12.0-rc1" +VERSION = "v1.12.0-rc2" SOURCE = "https://git.io/bitbot" URL = "https://bitbot.dev" |
