Commit Graph

1001 Commits

Author SHA1 Message Date
murm e67c0d96ca stuff and things 2023-03-16 20:23:01 -04:00
murm 3957b17645 allow imagedetect to pull from room history 2023-03-16 11:32:14 -04:00
murm eee2239364 oopsie poopsie 2023-03-15 11:03:59 -04:00
murm 0c1cbf8a84 massively stripped down help command 2023-03-15 11:03:09 -04:00
murm 0fe3a9ddac fix exec formatting 2023-03-15 10:57:57 -04:00
murm 52ba089e43 me when discord 2023-03-15 10:55:29 -04:00
murm 46bcb947e9 tweak sync limit 2023-03-15 10:53:18 -04:00
murm 69f3f34bde a 2023-03-15 10:50:25 -04:00
murm c8f6f33481 testing in prod moment 2023-03-15 10:48:58 -04:00
murm 5f233246e9 fix restart for realsies 2023-03-15 10:47:39 -04:00
murm a350cfbdc6 fix reload and formatting on exec 2023-03-15 10:46:45 -04:00
murm d6cb0e3c78 fixed restart cmd 2023-03-15 10:45:14 -04:00
murm 492cdba631 fix error logging 2023-03-15 10:42:13 -04:00
murm c841b53bdd fix owner checks 2023-03-15 10:12:35 -04:00
murm db9b70bf66 initial update 2023-03-15 10:09:09 -04:00
Essem 3272429cf6
Fix eval on large outputs 2023-03-14 18:12:29 -05:00
Essem d236179639
Port explode/implode, add new playing messages 2023-03-11 15:35:11 -06:00
Essem a77dc5acf9
Port scott, update packages 2023-03-10 13:05:21 -06:00
Essem d36ff74326
why did it take me 3 goddamn months to realize this was missing 2023-03-09 10:10:52 -06:00
Essem 10b80f2fd0
Add togif parameter 2023-03-08 19:36:39 -06:00
Essem cc7ea2762c
Refactor and prepare for future CLI implementation 2023-03-08 14:41:13 -06:00
Essem de308ca795
Dependency updates and stuff 2023-03-08 14:27:31 -06:00
Essem 2bd00d7845
Fix restart, slightly stabilize voice leave event 2023-01-28 22:58:51 -06:00
Essem 21e0914268
Fix typo in custom commands docs 2023-01-07 18:40:10 -06:00
Essem c6dd21addd
Fix pagination jump setting a NaN page number 2023-01-07 17:01:23 -06:00
Essem 5ba0336837
Simplify flag, fix togif crash, update license 2023-01-03 22:03:51 -06:00
Essem 3c16599126
Deduplicate vips shutdown, reformat natives, remove soos alias 2022-12-28 17:01:50 -06:00
Essem 5d8974d177
Added bounce 2022-12-28 14:24:22 -06:00
Essem 89caa43068
how the hell did I manage to miss squish 2022-12-28 00:49:38 -06:00
Essem 47b2d9fcff
Finish converting natives 2022-12-28 00:20:17 -06:00
Essem e1a31d6ddc
Portablized more natives 2022-12-26 00:28:56 -06:00
Essem a01e2ae77b
Fix sepia 2022-12-21 22:40:17 -06:00
Essem 94f34fa40f
setting the bird on fire 2022-12-19 11:34:52 -06:00
Essem 5a4553e17c
Fix comma escape 2022-12-18 19:19:53 -06:00
Essem 60cac58043
Convert freeze and speed 2022-12-12 12:13:03 -06:00
Essem 14d5965caa
god dammit 2022-12-12 11:36:08 -06:00
samhza ed25116851
Assorted db changes (#333)
* postgres: use transaction-scoped sql for upgrade

* database: combine fixGuild and addGuild into getGuild

* postgres, sqlite: simplify upgrade()

* allow running commands in DMs without prefix

this functionality was broken in
16095c0256 but is now fixed

* allow running esmBot without a database

Before this change, the only way to run esmBot without a database is to use the
dummy database driver which is broken but fails silently. THis can lead to a
confusing user experience. For instance, using `&command disable` with the
dummy database driver will tell you that the command has been disabled even
though it has not been.

This change adds support for running esmBot with no database driver by leaving
the DB= config option empty, and explicitly telling the user that some
functionality is now unavailable rather than failing silently like the dummy
driver.

* remove dummy database driver
2022-12-12 11:15:10 -06:00
Essem 345b525188
Properly ack Select Image requests, add client key to Tenor request, update packages 2022-12-12 11:07:58 -06:00
schizowitagun b9d38bc2bb
Updated lavasrc-plugin to 3.1.7 (#334)
This prevents LavaLink from instantly crashing during startup due to it not being able to retrieve version 3.0.3 successfully anymore.
2022-12-03 13:49:44 -06:00
bjcscat 1037e8a9a0
use new typing and functions for more "safety" (#332) 2022-12-03 13:49:28 -06:00
Essem 9ddc32193f
Swap std::any for std::variant 2022-11-27 17:23:57 -06:00
Essem 7ee571dd2b
Some fixes and whatnot 2022-11-27 14:52:40 -06:00
bjcscat 330dd67063
Partial natives rework (#325)
* natve code reworking

* Whoops

* remove old code

* Make gc callback instead of do thing that causes segfault
2022-11-27 13:03:07 -06:00
Essem a6823e7724
Swap out diffuse image for brighter version 2022-11-26 17:45:32 -06:00
samhza c00d518f6e
simplify postgres and sqlite database initialization, remove psqlinit.sh (#331)
Before this change, uninitialized databases would be initialized with the old
schema and then migrated to the latest version. After this change, unintialized
databases are initizialized with the latest database schema immediately, without
having to run any of the migrations. This change has no effect on existing
databases.

Before this change, Postgres database initialization was done manually using
utils/psqlinit.sh. This is inconsistent with SQLite, which the bot initializes
itself. It also requires shell access to the server running the Postgres
instance, which means it cannot be used on managed Postgres instances. After
this change, the bot initializes Postgres databases as it does with SQLite, and
utils/psqlinit.sh has been removed as it is now unecessary.
2022-11-26 15:31:00 -06:00
Essem 1830db6282
Remove Top.gg integration 2022-11-26 15:27:59 -06:00
Essem 3ed65c3c86
Update readme, attempt some things, update packages 2022-11-26 13:31:40 -06:00
teo0781 ed8ec36136
Fix speechbubble (#326) 2022-11-11 16:48:39 -06:00
Essem ca2ad80a33
Update packages 2022-11-11 15:08:32 -06:00
Essem 90e2ee1e9f
this should *actually* work 2022-11-11 12:31:21 -06:00