Skip to content

Commit 894b1bf

Browse files
committed
Renamed project from discord-queue-bot to just queue-bot due to NPM naming conflict
1 parent a7c23ed commit 894b1bf

6 files changed

Lines changed: 33 additions & 33 deletions

File tree

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,4 +105,4 @@ dist
105105

106106
# Development
107107
images/
108-
discord-queue-bot.code-workspace
108+
*.code-workspace

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Discord Queue Bot
2-
A Bot for managing queues of users in Discord.
1+
# Queue Bot
2+
A simple bot for managing a queue of users in Discord.
33

44
## Installation
55
These instructions assume you have already created an application from within the [Discord Developer Portal](https://discord.com/developers/applications), registered it as a bot, and invited it to your Discord server.

config.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
"queueTitle": "User Queue",
66
"useEmbeds": true,
77
"embedAccentColor": "#7ec699",
8-
"embedAuthorName": "Discord Queue Name",
8+
"embedAuthorName": "Queue Bot",
99
"embedAuthorImage": "https://i.imgur.com/yAoS21k.png",
10-
"embedAuthorLink": "https://github.com/binlabs/discord-queue-bot",
11-
"embedFooterText": "Visit https://github.com/binlabs/discord-queue-bot for more information.\nRunning Discord Queue Bot v",
10+
"embedAuthorLink": "https://github.com/binlabs/queue-bot",
11+
"embedFooterText": "Visit https://github.com/binlabs/queue-bot for more information.\nRunning Queue Bot v",
1212
"embedHelpTitle": "Queue Commands",
1313
"embedHelpDescription": "A list of available commands is available below. Please note that some commands are reserved for queue administators that requre specific roles."
1414
}

index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ function assembleQueueMessage () {
178178
// Listen for the ready state
179179
client.on('ready', () => {
180180
// Bot is running and ready
181-
console.log('Discord Queue Bot is Running...');
181+
console.log('Queue Bot is Running on Discord...');
182182
});
183183

184184
// Listen for messages
@@ -208,13 +208,13 @@ client.on('message', message => {
208208
}
209209
if (Config.useEmbeds) {
210210
message.channel.send(embedQueue).then(queueMessage => {
211-
console.log('Queue Created using an embed');
211+
console.log('Queue created using an embed');
212212
// Set the queueMessageId to the ID of the message the bot just created
213213
queueMessageId = queueMessage.id;
214214
});
215215
} else {
216216
message.channel.send(Config.queueTitle).then(queueMessage => {
217-
console.log('Queue Created using a plain-text message');
217+
console.log('Queue created using a plain-text message');
218218
// Set the queueMessageId to the ID of the message the bot just created
219219
queueMessageId = queueMessage.id;
220220
});

package-lock.json

Lines changed: 19 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "discord-queue-bot",
3-
"version": "1.1.3",
2+
"name": "queue-bot",
3+
"version": "1.1.4",
44
"description": "A Discord bot that provides a basic user queue.",
55
"main": "index.js",
66
"scripts": {
@@ -10,7 +10,7 @@
1010
},
1111
"repository": {
1212
"type": "git",
13-
"url": "git+https://github.com/binlabs/discord-queue-bot.git"
13+
"url": "git+https://github.com/binlabs/queue-bot.git"
1414
},
1515
"keywords": [
1616
"discord",
@@ -20,9 +20,9 @@
2020
"author": "Kurt Maine <develohost@gmail.com>",
2121
"license": "MIT",
2222
"bugs": {
23-
"url": "https://github.com/binlabs/discord-queue-bot/issues"
23+
"url": "https://github.com/binlabs/queue-bot/issues"
2424
},
25-
"homepage": "https://github.com/binlabs/discord-queue-bot#readme",
25+
"homepage": "https://github.com/binlabs/queue-bot#readme",
2626
"dependencies": {
2727
"discord.js": "^12.2.0",
2828
"lodash": "^4.17.15"

0 commit comments

Comments
 (0)