Skip to content

Commit

Permalink
Merge pull request #48 from Thomas-Smyth/beta
Browse files Browse the repository at this point in the history
SquadJS v1.3.1
  • Loading branch information
Thomas-Smyth authored Sep 2, 2020
2 parents 16b54e7 + 63d903f commit 759d7d7
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 37 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ The `mysql-log` plugin will log various server statistics and events to a MySQL
Installation:
* Obtain/Install MySQL. MySQL v8.x.x has been tested with this plugin and is recommended.
* Enable legacy authentication in your database using [this guide](https://stackoverflow.com/questions/50093144/mysql-8-0-client-does-not-support-authentication-protocol-requested-by-server).
* Execute the [schema](mysql-schema.sql) to setup the database.
* Execute the [schema](https://github.com/Thomas-Smyth/SquadJS/blob/master/plugins/mysql-log/mysql-schema.sql) to setup the database.
* Add a server to the database with `INSERT INTO Server (name) VALUES ("Your Server Name");`.
* Find the ID of the server you just inserted with `SELECT * FROM Server;`.
* Replace the server ID in your config with the ID from the inserted record in the database.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "SquadJS",
"version": "1.3.1",
"version": "1.3.2",
"repository": "https://github.com/Thomas-Smyth/SquadJS.git",
"author": "Thomas Smyth <https://github.com/Thomas-Smyth>",
"license": "BSL-1.0",
Expand Down
1 change: 1 addition & 0 deletions plugins/discord-debug/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ export default {

for (const event of options.events) {
server.on(event, (info) => {
info.event = event;
channel.send(`\`\`\`${JSON.stringify(info, null, 2)}\`\`\``);
});
}
Expand Down
34 changes: 0 additions & 34 deletions plugins/mysql-log/README.md

This file was deleted.

2 changes: 1 addition & 1 deletion plugins/mysql-log/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default {
'Installation:\n' +
' * Obtain/Install MySQL. MySQL v8.x.x has been tested with this plugin and is recommended.\n' +
' * Enable legacy authentication in your database using [this guide](https://stackoverflow.com/questions/50093144/mysql-8-0-client-does-not-support-authentication-protocol-requested-by-server).\n' +
' * Execute the [schema](mysql-schema.sql) to setup the database.\n' +
' * Execute the [schema](https://github.com/Thomas-Smyth/SquadJS/blob/master/plugins/mysql-log/mysql-schema.sql) to setup the database.\n' +
' * Add a server to the database with `INSERT INTO Server (name) VALUES ("Your Server Name");`.\n' +
' * Find the ID of the server you just inserted with `SELECT * FROM Server;`.\n' +
' * Replace the server ID in your config with the ID from the inserted record in the database.\n' +
Expand Down

0 comments on commit 759d7d7

Please sign in to comment.