Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

5.6.0 release #545

Open
wants to merge 43 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
36ae370
pass user.id instead of user
rhaym-tech Aug 12, 2023
b96bf90
fix messages to delete for each type
rhaym-tech Aug 12, 2023
5cf08fc
Remove test console.log
rhaym-tech Aug 13, 2023
fda37da
Update package.json
rhaym-tech Aug 19, 2023
5f0bad5
add custom status examples
rhaym-tech Aug 19, 2023
326bab3
Handle custom presence type
rhaym-tech Aug 19, 2023
cd1a64c
Fix dublicated code
rhaym-tech Dec 4, 2023
c80ecc4
remove old files from cache
rhaym-tech Jan 12, 2024
585ac44
Fix /info user bug
rhaym-tech Jan 25, 2024
880ed4b
Fix userinfo bug
rhaym-tech Jan 25, 2024
7647683
Update purge.js
rhaym-tech Mar 1, 2024
268ea4e
Fixed meme command
aikoonee Mar 21, 2024
d9af5d6
minor changes
aikoonee Mar 24, 2024
d5b2d7c
Remove cache thing
rhaym-tech Aug 2, 2024
32ee964
Fix broken reputation leaderboard
rhaym-tech Aug 2, 2024
e0fc237
Update search.js
NavIshanOp Sep 14, 2024
ff3c4ab
fix: package.json & package-lock.json to reduce vulnerabilities
snyk-bot Oct 12, 2024
44878ce
Merge pull request #543 from saiteja-madha/snyk-fix-ac1f865a5d3325f31…
saiteja-madha Oct 27, 2024
cf3d723
bump up dependencies
saiteja-madha Oct 27, 2024
cd49aab
Merge pull request #535 from rhaym-tech/patch-10
saiteja-madha Oct 29, 2024
bcd72e9
Merge pull request #538 from NavIshanOp/patch-1
saiteja-madha Oct 29, 2024
ecb0556
Merge branch '5.6.0-release' of ssh://github.com/saiteja-madha/discor…
saiteja-madha Oct 29, 2024
edd6d6d
Bump up discord.js
saiteja-madha Oct 29, 2024
50dc1f4
Revert "Bump up discord.js"
saiteja-madha Oct 29, 2024
3462b9b
bump discord.js
saiteja-madha Oct 29, 2024
551b097
Merge pull request #499 from AikooNee/main
saiteja-madha Oct 29, 2024
b3fe3fd
fix: prettier
saiteja-madha Oct 29, 2024
10fe826
Merge branch '5.6.0-release' into pr-415
saiteja-madha Oct 29, 2024
3ee9cb7
Merge pull request #544 from saiteja-madha/pr-415
saiteja-madha Oct 29, 2024
00730ef
Merge pull request #467 from rhaym-tech/patch-7
saiteja-madha Nov 5, 2024
90c19d7
fix: userinfo command
saiteja-madha Nov 5, 2024
e3f2f78
Merge pull request #463 from rhaym-tech/patch-6
saiteja-madha Nov 5, 2024
c493cf4
Merge branch '5.6.0-release' of ssh://github.com/saiteja-madha/discor…
saiteja-madha Nov 5, 2024
4ef5fd2
fix: flip text argument
saiteja-madha Nov 5, 2024
26bd3f8
Support for multiple presence messages #363
saiteja-madha Nov 5, 2024
ecbe46c
bump up dependencies
saiteja-madha Nov 5, 2024
ce18113
drop support for heroku
saiteja-madha Nov 5, 2024
c173bc8
add support for replit
saiteja-madha Nov 5, 2024
4e9bdb5
run: prettier
saiteja-madha Nov 23, 2024
cf4f3d1
Merge pull request #486 from rhaym-tech/patch-8
saiteja-madha Nov 23, 2024
86650fc
Merge branch '5.6.0-release' of ssh://github.com/saiteja-madha/discor…
saiteja-madha Nov 23, 2024
e0ae8b0
Merge pull request #416 from rhaym-tech/rhaym-tech-patch-1-3
saiteja-madha Nov 23, 2024
76d6986
Merge branch '5.6.0-release' of ssh://github.com/saiteja-madha/discor…
saiteja-madha Nov 23, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .prettierrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
"printWidth": 120,
"bracketSpacing": true,
"arrowParens": "always",
"endOfLine": "lf"
"endOfLine": "auto"
}

86 changes: 1 addition & 85 deletions .replit
Original file line number Diff line number Diff line change
@@ -1,89 +1,5 @@
entrypoint = "bot.js"

hidden = [".config", "package-lock.json"]

[interpreter]
command = [
"prybar-nodejs",
"-q",
"--ps1",
"\u0001\u001b[33m\u0002\u0001\u001b[00m\u0002 ",
"-i"
]

[[hints]]
regex = "Error \\[ERR_REQUIRE_ESM\\]"
message = "We see that you are using require(...) inside your code. We currently do not support this syntax. Please use 'import' instead when using external modules. (https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import)"
run = ["sh", "-c", "npm install && node bot.js"]

[nix]
channel = "stable-22_11"

[env]
XDG_CONFIG_HOME = "/home/runner/$REPL_SLUG/.config"
PATH = "/home/runner/$REPL_SLUG/.config/npm/node_global/bin:/home/runner/$REPL_SLUG/node_modules/.bin"
npm_config_prefix = "/home/runner/$REPL_SLUG/.config/npm/node_global"

[gitHubImport]
requiredFiles = [".replit", "replit.nix", ".config", "package.json", "package-lock.json"]

[packager]
language = "nodejs"

[packager.features]
packageSearch = true
guessImports = true
enabledForHosting = false

[unitTest]
language = "nodejs"

[debugger]
support = true

[debugger.interactive]
transport = "localhost:0"
startCommand = [ "dap-node" ]

[debugger.interactive.initializeMessage]
command = "initialize"
type = "request"

[debugger.interactive.initializeMessage.arguments]
clientID = "replit"
clientName = "replit.com"
columnsStartAt1 = true
linesStartAt1 = true
locale = "en-us"
pathFormat = "path"
supportsInvalidatedEvent = true
supportsProgressReporting = true
supportsRunInTerminalRequest = true
supportsVariablePaging = true
supportsVariableType = true

[debugger.interactive.launchMessage]
command = "launch"
type = "request"

[debugger.interactive.launchMessage.arguments]
args = []
console = "externalTerminal"
cwd = "."
environment = []
pauseForSourceMap = false
program = "./index.js"
request = "launch"
sourceMaps = true
stopOnEntry = false
type = "pwa-node"

[languages]

[languages.javascript]
pattern = "**/{*.js,*.jsx,*.ts,*.tsx}"

[languages.javascript.languageServer]
start = "typescript-language-server --stdio"

[deployment]
run = ["sh", "-c", "node index.js"]
1 change: 0 additions & 1 deletion Procfile

This file was deleted.

5 changes: 3 additions & 2 deletions config.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,9 @@ module.exports = {
PRESENCE: {
ENABLED: false, // Whether or not the bot should update its status
STATUS: "online", // The bot's status [online, idle, dnd, invisible]
TYPE: "WATCHING", // Status type for the bot [PLAYING | LISTENING | WATCHING | COMPETING]
MESSAGE: "{members} members in {servers} servers", // Your bot status message
TYPE: "WATCHING", // Status type for the bot [ CUSTOM | PLAYING | LISTENING | WATCHING | COMPETING ]
// Your bot status message (note: in custom status type you won't have "Playing", "Listening", "Competing" prefix)
MESSAGE: ["{members} members in {servers} servers"],
},

STATS: {
Expand Down
Loading