| Commit message (Expand) | Author | Age | Files | Lines |
| * | Refactor ModuleManager | jesopo | 2019-05-25 | 1 | -46/+83 |
| * | Don't store hashflags as a dict before returning them - allow duplicate keys | jesopo | 2019-05-25 | 1 | -3/+3 |
| * | Store IRCSocket connect_time, show bytes read/write per second in stats.py | jesopo | 2019-05-24 | 1 | -1/+3 |
| * | Bump version to v1.7.1 | jesopo | 2019-05-24 | 1 | -1/+1 |
| * | Bump version to v1.7.0 | jesopo | 2019-05-23 | 1 | -1/+1 |
| * | Remove column from server.add SQL (leftover from removing 'ipv4' column) | jesopo | 2019-05-21 | 1 | -1/+1 |
| * | Remove mention of `ipv4` - detect address family automatically | jesopo | 2019-05-21 | 5 | -22/+16 |
| * | Remove Capability.enabled() - it's unused | jesopo | 2019-05-20 | 1 | -2/+0 |
| * | `typing.List` -> `typing.Sequence` | jesopo | 2019-05-20 | 1 | -1/+1 |
| * | `has_capability` -> `has_capability_str`, add new `has_capability` | jesopo | 2019-05-20 | 1 | -1/+3 |
| * | ParsedLine already deals with preventing newlines | jesopo | 2019-05-20 | 1 | -1/+0 |
| * | use fnmatchcase( so the strings are not case-"normalised" | jesopo | 2019-05-19 | 1 | -1/+1 |
| * | Implement utils.irc.hostmask_match for glob-like hostmask matching | jesopo | 2019-05-19 | 2 | -1/+8 |
| * | Remove _name and _draft_name (unused) and add Capability.copy() | jesopo | 2019-05-19 | 1 | -2/+3 |
| * | Switch back to events.name defaulting to None, use typing.cast to fix linting•••error
| jesopo | 2019-05-18 | 1 | -2/+3 |
| * | Add a timestamp to recent_sends for EACH line sent | jesopo | 2019-05-18 | 1 | -1/+1 |
| * | give EventCallbacks their event name | jesopo | 2019-05-18 | 1 | -4/+6 |
| * | Add a way to not put spaces between docstring lines when stripping \n | jesopo | 2019-05-18 | 1 | -5/+10 |
| * | Bump version to v1.6.0 | jesopo | 2019-05-17 | 1 | -1/+1 |
| * | Catch server version string, from RPL_MYINFO | jesopo | 2019-05-15 | 1 | -0/+1 |
| * | Add IRCBot.SOURCE, use it in ctcp.py | jesopo | 2019-05-15 | 1 | -0/+1 |
| * | Add type hints to utils.irc.MessageTag | jesopo | 2019-05-14 | 1 | -2/+2 |
| * | Add utils.irc.MessageTag and use it for both draft and ratified msgid | jesopo | 2019-05-14 | 1 | -0/+7 |
| * | Move module black/white list to IRCBot, allow "safe" loading of all modules | jesopo | 2019-05-12 | 2 | -2/+21 |
| * | Revamp how CAPs are tracked through REQ and ACK/NAK etc | jesopo | 2019-05-11 | 2 | -15/+15 |
| * | Refactor CAPs in to objects | jesopo | 2019-05-11 | 1 | -0/+11 |
| * | Hold context in EventCallback objects, add name<->context translation in•••ModuleManager
| jesopo | 2019-05-10 | 2 | -2/+15 |
| * | Tokenize IRC data as soon as it comes out of IRCServer | jesopo | 2019-05-09 | 1 | -1/+2 |
| * | Add IRCServer.has_user_id, to check if we've seen a user before | jesopo | 2019-05-05 | 1 | -0/+3 |
| * | forgot the beautiful % | Patrick Nappa | 2019-05-03 | 1 | -1/+1 |
| * | ensure that non-url characters not separated by whitespace aren't consumed | Patrick Nappa | 2019-05-03 | 1 | -1/+1 |
| * | Fix reconnect() type hint issues | jesopo | 2019-05-01 | 1 | -1/+6 |
| * | Change TRIGGER_RETURN and TRIGGER_EXCEPTION to an enum | jesopo | 2019-05-01 | 1 | -7/+8 |
| * | Bump version to v1.5.0 | jesopo | 2019-04-30 | 1 | -1/+1 |
| * | Only pass through `args` from connection params when reconnecting | jesopo | 2019-04-30 | 1 | -6/+6 |
| * | Support parsing iso8601 with microseconds | jesopo | 2019-04-28 | 1 | -2/+4 |
| * | Actually respect default return in Exports.get_one | jesopo | 2019-04-27 | 1 | -1/+1 |
| * | Add missing ":" | jesopo | 2019-04-25 | 1 | -1/+1 |
| * | Support interfaces that don't have AF_INET and/or AF_INET6 | jesopo | 2019-04-25 | 1 | -1/+4 |
| * | Refuse to get the title for any url that points locall | jesopo | 2019-04-25 | 1 | -2/+30 |
| * | Move REGEX_URL out of isgd.py and title.py in to utils.http | jesopo | 2019-04-24 | 1 | -1/+2 |
| * | Record and show when a !to was created | jesopo | 2019-04-24 | 1 | -0/+4 |
| * | Add Database.servers.get_by_alias, move IRCBot.get_server to•••IRCBot.get_server_by_id, add IRCBot.get_server_by_alias and change
!connect/!disconnect to take aliases instead of IDs
| jesopo | 2019-04-24 | 2 | -3/+16 |
| * | Add UNIQUE constraint for `alias` on `servers` table | jesopo | 2019-04-24 | 1 | -1/+2 |
| * | IRCServer.alias is no longer optional | jesopo | 2019-04-24 | 2 | -7/+3 |
| * | change utils.iso8601_format to default to no milliseconds, switch to using•••utils.iso8601 functions in badges.py
| jesopo | 2019-04-23 | 3 | -4/+13 |
| * | Add IRCServer.send_raw so modules don't have to parse messages before sending•••them
| jesopo | 2019-04-16 | 1 | -0/+2 |
| * | Bump version to v1.4.0 | jesopo | 2019-04-16 | 1 | -1/+1 |
| * | 'IRCChannels._get_id' -> 'IRCChannels.get_id' | jesopo | 2019-04-07 | 1 | -2/+2 |
| * | Put spaces between units in output from utils.to_pretty_time | jesopo | 2019-03-21 | 1 | -7/+7 |