b724229f06
* make the beginning height optional, defaulting to the trees current heigt * improved workflow * fix * new fix * Install modules * remove unnecessary call to build the tables * testing * f * f * oops * undev * fix const * new ci * versioning * Classes, Collections, and new Notification Relay * Fix CI for new env vars * Update to read contents of embeds * Update filter to check for embeds * Update to add includes check * Begin implementing role menu * Role menu ready for testing * Add missing emojis * Fixes, ready for testing * Tentative deploy * Documentation update * I think this fixes unchanging notifications * Update README.md * Make reminders visually distinct * Set Permissions * Added import for PermissionFlagsBits * Add ability to manually send ping from watch chan * CI update * Confusion * Make dev dockerization manual only * Dev Logging * Update reset command * Implement updating of notifications piecemeal * Unified error handling * Change to refresh commands not blindly update * Change to manual run only * Restructured file to allow async use * Move role menu setup and allow everyone to send it * Consolidate setupinfo into setup * Improved error handling * Update opt out method * Cleaning up junk * Added seconds parser and optout detection * Add opt out method * Consolidated to setup command * Add privacy setting and use new parser
28 lines
1.1 KiB
Markdown
Executable File
28 lines
1.1 KiB
Markdown
Executable File
## In Progress
|
|
☑ Switch `/setup` to ask for the tree and leaderboard channels
|
|
* Switch `/compare` to check for newer trees and leaderboards when run **and** on every refresh
|
|
|
|
## Future Ideas
|
|
* Go through and comment the code
|
|
|
|
## Variable Structures
|
|
|
|
guildInfo = {
|
|
guildId: "",
|
|
treeName: "name",
|
|
treeHeight: 0,
|
|
treeMessageId: "",
|
|
treeChannelId: "",
|
|
leaderboardMessageId: "",
|
|
leaderboardChannelId: "",
|
|
reminderMessage: "",
|
|
reminderChannelId: "",
|
|
remindedStatus: 0,
|
|
reminderOptIn: 0,
|
|
}
|
|
|
|
## Expected Behaviors
|
|
|
|
* Run `/compare` before `/setup`: `/compare` will search the current channel for tree and leaderboard messages, then create a comparison embed. If it can't find `/tree` or `/top trees` messages, it'll return an error saying as much.
|
|
* Run `/compare` after `/setup`: ``/compare` will search the current channel for tree and leaderboard messages, then create a comparison embed. If it can't find `/tree` or `/top trees` messages, it'll just use old data silently (odds are `/compare` is being run from another channel, that's fine)
|