aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* default events on IRCLineHandler should use original_line, not lineGravatar jesopo2018-08-301-4/+4
* Refactor handling MODE in IRCLineHandlerGravatar jesopo2018-08-303-43/+34
* Only show 2 biggest units in !seenGravatar jesopo2018-08-292-9/+21
* Give EventHooks their event name .lower()Gravatar jesopo2018-08-291-1/+1
* Report actual topic setter (use 333, not 332)Gravatar jesopo2018-08-292-10/+14
* Print topics in print_activity.pyGravatar jesopo2018-08-292-4/+30
* Delete "permissions" setting when it's emptyGravatar jesopo2018-08-291-1/+4
* Factor ping interval and ping timeout in to the main loop's minimum intervalGravatar jesopo2018-08-292-21/+41
* Forgot to add IRCBuffer.py when I renamed it from IRCLog.py. oops.Gravatar jesopo2018-08-291-0/+43
* Add missing comments in IRCLineHandler.LineHandlerGravatar jesopo2018-08-291-0/+3
* Fix CAP logic that was broken by recent IRCLineHandler refactorGravatar jesopo2018-08-291-4/+2
* Do a default event for received data if there's no hooks for itGravatar jesopo2018-08-291-1/+1
* Refactor IRCLineHandler in to an object that uses .on("raw") eventsGravatar jesopo2018-08-293-360/+380
* Change throttling mechanics to be "x lines per y seconds"Gravatar jesopo2018-08-291-10/+30
* Add the ability to only require authentication if your nickname is registeredGravatar jesopo2018-08-282-5/+15
* Change verbose logging to use propper logging systemGravatar jesopo2018-08-282-2/+2
* Do throttling based on line count, not byte countGravatar jesopo2018-08-281-3/+9
* Add !givepermission and !removepermission to permissions.pyGravatar jesopo2018-08-281-5/+50
* Log event path along with timing in EventHook.callGravatar jesopo2018-08-281-2/+4
* Change command.py to use call_limitedGravatar jesopo2018-08-281-3/+4
* change IRCServer.Server.__str__ to return hostname:port instead of full __repr__Gravatar jesopo2018-08-281-3/+3
* Added .call_limited() to EventHook to avoid having a kwarg outside of **kwargs•••in .call() Gravatar jesopo2018-08-281-7/+20
* Allow users to see their internal IDs and channel IDsGravatar jesopo2018-08-281-0/+18
* Save when a user sends their "first" words (won't be correct for old users)Gravatar jesopo2018-08-281-0/+5
* Seperate .waiting_send() and throttle logicGravatar jesopo2018-08-282-7/+9
* 80 cols!Gravatar jesopo2018-08-281-3/+2
* Improve IRCServer.Server's __repr__Gravatar jesopo2018-08-281-2/+3
* Send a PONG event, use the right arg when sending a WHOGravatar jesopo2018-08-281-2/+6
* expand kwargs in assure_call when we've got a hookGravatar jesopo2018-08-281-1/+1
* Added !channelsetoverride in set.pyGravatar jesopo2018-08-281-0/+6
* .log -> .buffer, i missed this one!Gravatar jesopo2018-08-281-1/+1
* Change how specific events assure their hooks gets the event independant of•••loading order Gravatar jesopo2018-08-287-20/+26
* Switch to time.monotonic for comparisons, only send data at most once every .5•••seconds and only send max 512 bytes at a time Gravatar jesopo2018-08-283-7/+37
* Made "you need to be authenticated" message more helpfulGravatar jesopo2018-08-281-1/+3
* Only allow users to send coins to users that have had coins beforeGravatar jesopo2018-08-281-2/+7
* Require authentication to use or potentially lose coinsGravatar jesopo2018-08-281-4/+3
* Add !resetcoins in coins.pyGravatar jesopo2018-08-281-0/+17
* Fix typo in database.user_settings.deleteGravatar jesopo2018-08-281-1/+1
* Check if event objects should be purged after an event is calledGravatar jesopo2018-08-281-0/+13
* modules/logging.py -> IRCLogging.py; IRCLog.py -> IRCBuffer.py; change logging•••to be an object on the server object instead of an event call Gravatar jesopo2018-08-2818-95/+66
* Prevent users sending coins to themselvesGravatar jesopo2018-08-251-0/+3
* Use a zero-width joiner in Utils.prevent_highlight instead of zero width spaceGravatar jesopo2018-08-201-1/+1
* upate IRCUser.id when a user changes their nicknameGravatar jesopo2018-08-191-1/+3
* .add -> .append typo in channel_save.pyGravatar jesopo2018-08-191-1/+1
* Change the database to give channels and users ids and use those in the settings•••tables Gravatar jesopo2018-08-196-131/+172
* show uptime in 1w1d1h1m1s formatGravatar jesopo2018-08-181-18/+3
* check if a table exists before making it instead of catching the sqlite•••exception Gravatar jesopo2018-08-181-29/+23
* .wrote -> .write typo in words.pyGravatar jesopo2018-08-181-1/+1
* Added code to preprocess check a command that only requires authentication, not•••a permission Gravatar jesopo2018-08-181-0/+4
* Added !resetkarma in karma.pyGravatar jesopo2018-08-181-0/+15