| Commit message (Expand) | Author | Age | Files | Lines |
| * | `source` should have ':' appended | jesopo | 2019-07-28 | 1 | -1/+1 |
| * | don't silently truncate at newline in IRCLine.ParsedLine.truncate() | jesopo | 2019-07-15 | 1 | -2/+9 |
| * | Refactor EventManager to only hold hooks on a root object | jesopo | 2019-06-26 | 1 | -1/+1 |
| * | give every ParsedLine a uuid4 .id for tracking purposes | jesopo | 2019-06-21 | 1 | -1/+2 |
| * | add `margin` arg to ParsedLine.truncate so commands/outs.py doesn't do it•••manually and cause potential issues with multi-byte chars
| jesopo | 2019-06-19 | 1 | -4/+4 |
| * | `line_formatted` -> `valid` so tags don't cause us to subvert truncation | jesopo | 2019-06-18 | 1 | -1/+1 |
| * | Tags should not be appended to `pieces` now that they're counted separately | jesopo | 2019-06-18 | 1 | -1/+0 |
| * | add has_tag() and get_tag() to IRCLine.ParsedLine | jesopo | 2019-06-18 | 1 | -0/+4 |
| * | message-tags count for a different character limit than the rest of the line | jesopo | 2019-06-18 | 1 | -5/+18 |
| * | Simplify SentLine by shifting truncation to ParsedLine (and commands.outs) | jesopo | 2019-06-18 | 1 | -39/+25 |
| * | Type annotate ParsedLine.tags, add ParsedLine.add_tag() | jesopo | 2019-06-16 | 1 | -1/+4 |
| * | Add `.assure()` to ParsedLine, to make it immune from `.valid()` | jesopo | 2019-06-10 | 1 | -0/+6 |
| * | Allow preprocess.send callbacks to request a line not be sent at all | jesopo | 2019-06-10 | 1 | -0/+6 |
| * | message-tags are joined by ";", not "," | jesopo | 2019-06-06 | 1 | -1/+1 |
| * | message_tag_escape() message-tag values when .format()ing IRCLine | jesopo | 2019-06-06 | 1 | -2/+3 |
| * | Give SentLine (and preproc.send events) a new event object, to track events•••related to a line after it is sent
| jesopo | 2019-06-04 | 1 | -9/+3 |
| * | Only return definitely-writen lines from IRCSocket._send, refactor in prep for•••lines that request to be sent 'immediately'
| jesopo | 2019-06-04 | 1 | -4/+5 |
| * | v1.8.0 release | jesopo | 2019-06-03 | 1 | -4/+4 |
| * | add __str__ and __repr__ defs to IRCLine.ParsedLine | jesopo | 2019-06-01 | 1 | -0/+5 |
| * | Immutable arg default values leads to weird data persistence | jesopo | 2019-05-30 | 1 | -1/+1 |
| * | Handle negative (end-relative) indexes being given to IRCArgs.get | jesopo | 2019-03-08 | 1 | -1/+4 |
| * | Handle IRCArgs being empty strings (e.g. 'PRIVMSG #test :') | jesopo | 2019-03-08 | 1 | -1/+2 |
| * | Need to str() Hostmask objects in ParsedLine.format() | jesopo | 2019-02-28 | 1 | -1/+1 |
| * | Simplify ParsedLine._tag_str and ParsedLine.format() | jesopo | 2019-02-27 | 1 | -21/+18 |
| * | Critical security fix: truncate IRCLine.ParsedLine.format() at newline | jesopo | 2019-02-25 | 1 | -1/+1 |
| * | Rename IRCLine.Line to IRCLine.SentLine, for clarity | jesopo | 2019-02-24 | 1 | -2/+2 |
| * | Make IRCArgs mutable | jesopo | 2019-02-23 | 1 | -1/+3 |
| * | Move utils.irc.IRCParsedLine to IRCLine.ParsedLine, improve truncation•••mechanism, don't convert sent line from ParsedLine to text to ParsedLine for
line_handler handling
| jesopo | 2019-02-23 | 1 | -24/+109 |
| * | Actually return `str` object from IRCLine.__str__ | jesopo | 2019-02-10 | 1 | -1/+1 |
| * | Add _char_limit return type hint, fix decoded_data return type hint•••(src/IRCLine.py)
| jesopo | 2019-02-10 | 1 | -2/+2 |
| * | Import IRCServer in IRCLine so type hint comment is valid (src/IRCLine.py) | jesopo | 2019-02-10 | 1 | -1/+1 |
| * | Add a comment as to why IRCLine's LINE_CUTOFF is 470, not 510 | jesopo | 2019-02-10 | 1 | -0/+1 |
| * | Change LINE_CUTOFF to 470, now that we compute max char counts (src/IRCLine.py) | jesopo | 2019-02-10 | 1 | -1/+1 |
| * | Let IRCLine.Line handle truncating command output | jesopo | 2019-02-10 | 1 | -4/+22 |
| * | Shift encoding/truncating IRC lines to src/IRCLine.py | jesopo | 2019-02-10 | 1 | -6/+14 |
| * | Return truncted data from encode_truncate and hold it in IRCLine.Line | jesopo | 2019-02-10 | 1 | -1/+3 |
| * | IRCLine's `data` should be bytes | jesopo | 2019-02-10 | 1 | -1/+1 |
| * | Add missing src/IRCLine.py file | jesopo | 2019-02-10 | 1 | -0/+20 |