Commit Graph

3421 Commits

Author SHA1 Message Date
Pragmatic Software c17c885600 Plugins/Connect4: use event queue for game loop 2020-03-06 20:24:31 -08:00
Pragmatic Software 857021f25f Interpreter: $self is no longer passed through event queue 2020-03-06 20:23:44 -08:00
Pragmatic Software 5624d2d166 Timer: intelligently wait for next tick; `eventqueue` command can now filter 2020-03-06 20:23:17 -08:00
Pragmatic Software bc79f3a69d Plugins/RemindMe: use event queue for reminders 2020-03-06 17:09:29 -08:00
Pragmatic Software 471422a4f8 Update version 2020-03-06 13:31:27 -08:00
Pragmatic Software c815ccbc0d Use event queue for unban/unmute timeouts 2020-03-06 13:31:22 -08:00
Pragmatic Software f5927c8761 Interpreter: use event queue for output queue and command queue 2020-03-06 13:30:09 -08:00
Pragmatic Software 74b3f35d3e ProcessManager: properly add "can-kill" cap without triggering saving 2020-03-06 13:29:37 -08:00
Pragmatic Software 16ac6d95fb Give sensible names to various existing timers 2020-03-06 13:28:06 -08:00
Pragmatic Software e98072f98d IgnoreList: use event queue for ignore timeouts 2020-03-06 13:23:40 -08:00
Pragmatic Software 25623ac80e Timer: refactor to use event queue 2020-03-06 13:21:44 -08:00
Pragmatic Software 41728783ed AntiFlood: fix private message ignorelist 2020-03-04 18:26:39 -08:00
Pragmatic Software ffdebc3f2d Plugins/UrlTitles: fix typo 2020-03-04 15:38:53 -08:00
Pragmatic Software 326fac5a6e Update version 2020-03-04 13:25:48 -08:00
Pragmatic Software c467f92904 DualIndexHashObject: get_keys: ensure index actually exists 2020-03-04 13:25:41 -08:00
Pragmatic Software 6c4f56f9df IgnoreList: refactored to use DualIndexHashObject 2020-03-04 13:24:40 -08:00
Pragmatic Software c46783eca1 Update version 2020-03-04 09:56:29 -08:00
Pragmatic Software e28d664cd5 Factoids: /msg caller for unknown command instead of silently disregarding 2020-03-04 09:56:22 -08:00
Pragmatic Software 48361191bd DualIndexSQLiteObject: Add comment about compatibility with DualIndexHashObject 2020-03-04 05:54:20 -08:00
Pragmatic Software dc0c00e847 Update version 2020-03-03 12:51:04 -08:00
Pragmatic Software c5f137e853 FactoidCommands: optimize histogram, top20 and count 2020-03-03 12:51:00 -08:00
Pragmatic Software 82b4e51f09 DualIndexSQLiteObject: get_each(): put parentheses around related OR clauses 2020-03-03 10:10:20 -08:00
Pragmatic Software b7240d3bdc DualIndexSQLiteObject: make _sort prefix more consistent 2020-03-03 08:55:34 -08:00
Pragmatic Software 0a034814ad FactoidCommands: reinstate `regex` command 2020-03-03 07:41:07 -08:00
Pragmatic Software 3ff232decd DualIndexSQLiteObject: refactor get_each() to use array instead of hash 2020-03-03 07:40:23 -08:00
Pragmatic Software 786dfc8c6c Update version 2020-02-29 01:46:34 -08:00
Pragmatic Software 941b3327c6 Factoids: Optimize export_factoids() with get_each() and get_next() 2020-02-29 01:46:29 -08:00
Pragmatic Software 178c02de72 DualIndexSQLiteObject: replace get() with get_all(), get_each() and get_next() 2020-02-29 01:45:17 -08:00
Pragmatic Software 3ca3917891 MessageHistory: minor improvements to `recall` 2020-02-27 21:06:52 -08:00
Pragmatic Software d327d24c1c Update version 2020-02-27 20:42:22 -08:00
Pragmatic Software 2ef640de19 Plugins/TypoSub: limit length of s//g replacements 2020-02-27 14:20:42 -08:00
Pragmatic Software cb80857927 Update version 2020-02-27 11:14:50 -08:00
Pragmatic Software b178b718f0 Factoids: DualIndexSQLiteObject->get() is now powerful enough to replace FactoidsSQLite 2020-02-27 11:14:43 -08:00
Pragmatic Software 97b2394166 Update version 2020-02-26 17:51:29 -08:00
Pragmatic Software b7fcb909dc DualIndexSQLiteObject: minor improvements 2020-02-26 17:49:59 -08:00
Pragmatic Software c489b6eac7 Factoids: replace get_all_by_trigger() with DualIndexSQLiteObject->get() 2020-02-26 17:48:34 -08:00
Pragmatic Software bd805f558b doc/Commands.md: `my` command creates a new user account if one does not exist 2020-02-26 11:11:56 -08:00
Pragmatic Software 978fa255b2 Update version 2020-02-26 02:33:14 -08:00
Pragmatic Software 4c7b7551e2 FactoidCommands: Optimize factfind() 2020-02-26 02:32:52 -08:00
Pragmatic Software 5d3dca94b9 Factoids: Optimize find_factoid() 2020-02-26 02:32:22 -08:00
Pragmatic Software 91b2b1e7c7 MessageHistory_SQLite: move extension loading to inside eval block 2020-02-26 02:31:08 -08:00
Pragmatic Software 999ee4a33c Interpreter: Fix potential undefined variable 2020-02-26 02:30:26 -08:00
Pragmatic Software e24835ea95 Switch over to SQLite backend for Factoids 2020-02-26 02:29:02 -08:00
Pragmatic Software fb1eda51ee DualIndexHashObject needs create_metadata() for compatibility with DualIndexSQLiteObject 2020-02-26 02:24:15 -08:00
Pragmatic Software e73d890246 Add FactoidsSQLite
This is a subclass of DualIndexSQLiteObject with additional methods
specific to Factoid-related functionality.
2020-02-26 02:22:43 -08:00
Pragmatic Software c93602a34e Add DualIndexSQLiteObject
DualIndexSQLiteObject is a class that provides an interface for SQLite objects.
This interface is compatible with DualIndexHashObject.

SQLite objects are loaded on-demand when needed, unlike Hash objects which
are stored in working memory. The SQLite objects are temporarily cached in
working memory, for optimal performance.
2020-02-26 02:20:11 -08:00
Pragmatic Software d74fb24c96 PBot: cancel alarm timeout when exiting 2020-02-26 02:11:42 -08:00
Pragmatic Software fef6137c59 misc/tidy: remove -kgb 2020-02-24 19:22:30 -08:00
Pragmatic Software 1be0c9cd0a Update version 2020-02-22 07:33:40 -08:00
Pragmatic Software e7209a9146 Whoops, the || were drunk 2020-02-22 07:26:23 -08:00