forked from Firepup650/FireBot
Add backupbox, bump version
This commit is contained in:
parent
c18027ca9e
commit
3098bc8ccf
2 changed files with 7 additions and 1 deletions
|
@ -5,7 +5,7 @@ import re, codecs
|
||||||
from typing import Union, Any
|
from typing import Union, Any
|
||||||
|
|
||||||
load_dotenv()
|
load_dotenv()
|
||||||
__version__ = "v2.0.3"
|
__version__ = "v2.0.4"
|
||||||
npbase: str = "\[\x0303last\.fm\x03\] [A-Za-z0-9_[\]{}\\|^]{1,$MAX} (is listening|last listened) to: \x02.+ - .*\x02( \([0-9]+ plays\)( \[.*\])?)?"
|
npbase: str = "\[\x0303last\.fm\x03\] [A-Za-z0-9_[\]{}\\|^]{1,$MAX} (is listening|last listened) to: \x02.+ - .*\x02( \([0-9]+ plays\)( \[.*\])?)?"
|
||||||
su = "^(su|sudo|(su .*|sudo .*))$"
|
su = "^(su|sudo|(su .*|sudo .*))$"
|
||||||
servers: dict[str, dict[str, Any]] = {
|
servers: dict[str, dict[str, Any]] = {
|
||||||
|
@ -28,6 +28,11 @@ servers: dict[str, dict[str, Any]] = {
|
||||||
"channels": {"#random": 0, "#dice": 0, "#main": 0, "#bots": 0, "#firebot": 0},
|
"channels": {"#random": 0, "#dice": 0, "#main": 0, "#bots": 0, "#firebot": 0},
|
||||||
"admins": ["firepup", "firepup|lounge", "h|tl"],
|
"admins": ["firepup", "firepup|lounge", "h|tl"],
|
||||||
},
|
},
|
||||||
|
"backupbox": {
|
||||||
|
"address": "172.23.11.5",
|
||||||
|
"channels": {"#default": 0},
|
||||||
|
"admins": ["firepup650", "thelounge87"]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
ESCAPE_SEQUENCE_RE = re.compile(
|
ESCAPE_SEQUENCE_RE = re.compile(
|
||||||
r"""
|
r"""
|
||||||
|
|
1
core.py
1
core.py
|
@ -14,6 +14,7 @@ servers = [
|
||||||
"ircnow",
|
"ircnow",
|
||||||
"replirc",
|
"replirc",
|
||||||
"efnet",
|
"efnet",
|
||||||
|
"backupbox",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue