aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* pass from_self arg in formatted.* message eventsGravatar jesopo2019-06-212-6/+9
* use event["from_self"] instead of checking nicknameGravatar jesopo2019-06-201-1/+1
* Remove debug printGravatar jesopo2019-06-201-1/+0
* pass from_self through message/notice/tagmsg ventsGravatar jesopo2019-06-201-1/+1
* Add relay.py - cross-network relayingGravatar jesopo2019-06-201-0/+109
* fix hostmask_match_many type hintingGravatar jesopo2019-06-201-1/+2
* remove extra formatted.notice format paramGravatar jesopo2019-06-201-4/+4
* Change formatted.notice format to have `context`Gravatar jesopo2019-06-201-2/+3
* Add an export for IRCv3 CAPsGravatar jesopo2019-06-206-22/+9
* return unshortened url when shortening failsGravatar jesopo2019-06-201-0/+1
* Implement hostmask_match_any, for more efficient matching of multiple hostmasksGravatar jesopo2019-06-201-3/+9
* Implement utils.irc.hostmask_match() as regexGravatar jesopo2019-06-201-2/+9
* add channel-access key for starting and ending votesGravatar jesopo2019-06-201-1/+3
* Make it configurable whether people need permission to start a voteGravatar jesopo2019-06-201-3/+8
* Set ignore.py --depends-on hashflagsGravatar jesopo2019-06-201-0/+3
* Don't exclude !commands from IRCBuffer objectsGravatar jesopo2019-06-201-2/+0
* Move !ignore logic to it's own fileGravatar jesopo2019-06-202-98/+107
* Update CHANGELOG.mdGravatar jesopo2019-06-191-1/+2
* Catch a module not being "found" in modules.pyGravatar jesopo2019-06-191-3/+7
* Differentiate between module "not found" and "not loaded"Gravatar jesopo2019-06-191-1/+4
* Raise ModuleNotFoundException on failure to find_module()Gravatar jesopo2019-06-191-0/+3
* Give requested module name to ModuleNotFoundExceptionGravatar jesopo2019-06-191-1/+1
* Update CHANGELOG.mdGravatar jesopo2019-06-191-0/+1
* add ircv3_botignore.py, to ignore `inspircd.org/bot` usersGravatar jesopo2019-06-191-0/+10
* Add MessageTag.present, to see if a tag is present (even without value)Gravatar jesopo2019-06-191-0/+2
* use utils.irc.MessageTag in ircv3_multiline.pyGravatar jesopo2019-06-191-1/+2
* module is called 'check_mode', not 'channel_mode'Gravatar jesopo2019-06-191-1/+1
* Update CHANGELOG.mdGravatar jesopo2019-06-192-53/+3
* Add missing --depends-on hashflagsGravatar jesopo2019-06-194-0/+8
* Don't let people vote in closed votesGravatar jesopo2019-06-191-0/+4
* Manually strf birthdays so years are not .strip("0")edGravatar jesopo2019-06-191-2/+11
* add `margin` arg to ParsedLine.truncate so commands/outs.py doesn't do it•••manually and cause potential issues with multi-byte chars Gravatar jesopo2019-06-192-9/+7
* allow short names for config contexts. people mistook "user" as "put your•••nickname here" so having just "u" might prevent this Gravatar jesopo2019-06-191-5/+5
* show nickname in NO_DUCK non-kick messageGravatar jesopo2019-06-191-1/+1
* Update CHANGELOG.mdGravatar jesopo2019-06-181-0/+2
* `line_formatted` -> `valid` so tags don't cause us to subvert truncationGravatar jesopo2019-06-181-1/+1
* Tags should not be appended to `pieces` now that they're counted separatelyGravatar jesopo2019-06-181-1/+0
* Move !help to it's own module and entirely rework its interfaceGravatar jesopo2019-06-182-83/+82
* Add IRCBot.URL (https://bitbot.dev)Gravatar jesopo2019-06-181-0/+1
* Remove "!" from help stringsGravatar jesopo2019-06-183-3/+3
* `location_name` will not be defined when querying a location instead of a userGravatar jesopo2019-06-181-0/+1
* Remove debug printsGravatar jesopo2019-06-181-2/+0
* use "city, state, country" for formatted location name when availableGravatar jesopo2019-06-181-1/+14
* 'location' wasn't the variable i thought it wasGravatar jesopo2019-06-181-4/+5
* Save location name from geocoding, use it for !w when available•••closes #71 Gravatar jesopo2019-06-182-5/+9
* Only try to show !w country when it is available. closes #72Gravatar jesopo2019-06-181-3/+6
* Implement `+bitbot.dev/mulitline-concat` to concat line to previous lineGravatar jesopo2019-06-181-1/+7
* add has_tag() and get_tag() to IRCLine.ParsedLineGravatar jesopo2019-06-181-0/+4
* message-tags count for a different character limit than the rest of the lineGravatar jesopo2019-06-182-5/+19
* Simplify SentLine by shifting truncation to ParsedLine (and commands.outs)Gravatar jesopo2019-06-182-46/+40