v1.12.0-rc2 release

This commit is contained in:
jesopo 2019-10-10 12:43:19 +01:00
parent 5be01a45c4
commit a2b73469e6
2 changed files with 15 additions and 2 deletions

View file

@ -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: Fixed:
- Wasn't catching `timers.add()` output as `timer` var in reconnection logic - 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 # 2019-10-09 - BitBot v1.12.0-rc1

View file

@ -3,7 +3,7 @@ import typing, uuid
from src import EventManager, Exports, IRCServer, Logging, ModuleManager from src import EventManager, Exports, IRCServer, Logging, ModuleManager
from src import PollHook, Socket, Timers, utils from src import PollHook, Socket, Timers, utils
VERSION = "v1.12.0-rc1" VERSION = "v1.12.0-rc2"
SOURCE = "https://git.io/bitbot" SOURCE = "https://git.io/bitbot"
URL = "https://bitbot.dev" URL = "https://bitbot.dev"