snakeia-server 1.1.3-3 → 1.1.3-4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -8,7 +8,7 @@ A server for my [SnakeIA](https://github.com/Eliastik/snakeia) game, written in
8
8
 
9
9
  ## About this server
10
10
 
11
- * Version 1.1.3.3 (3/30/2024)
11
+ * Version 1.1.3.4 (6/3/2024)
12
12
  * Made in France by Eliastik - [eliastiksofts.com](http://eliastiksofts.com) - Contact : [eliastiksofts.com/contact](http://eliastiksofts.com/contact)
13
13
  * License: GNU GPLv3 (see LICENCE.txt file)
14
14
 
@@ -74,7 +74,7 @@ You can create another configuration file in the **config** directory named **lo
74
74
  ````
75
75
  {
76
76
  "ServerConfig": {
77
- "version": "1.1.3.3", // The server version
77
+ "version": "1.1.3.4", // The server version
78
78
  "port": 3000, // The port where the server runs
79
79
  "proxyMode": false, // Set this value to true if your server is behind a proxy - defaults to false
80
80
  "enableMultithreading": true, // Enabling the use of different threads for the game engine, improves performance / requires a version of Nodejs that supports Worker Threads
@@ -119,6 +119,9 @@ You can create another configuration file in the **config** directory named **lo
119
119
 
120
120
  ## Changelog
121
121
 
122
+ * Version 1.1.3.4 (6/3/2024) :
123
+ - Updated dependencies
124
+
122
125
  * Version 1.1.3.3 (3/30/2024) :
123
126
  - Updated dependencies
124
127
 
@@ -158,7 +161,7 @@ Un serveur pour mon jeu [SnakeIA](https://github.com/Eliastik/snakeia), écrit e
158
161
 
159
162
  ## À propos de ce serveur
160
163
 
161
- * Version 1.1.3.3 (30/03/2024)
164
+ * Version 1.1.3.4 (03/06/2024)
162
165
  * Made in France by Eliastik - [eliastiksofts.com](http://eliastiksofts.com) - Contact : [eliastiksofts.com/contact](http://eliastiksofts.com/contact)
163
166
  * Licence : GNU GPLv3 (voir le fichier LICENCE.txt)
164
167
 
@@ -224,7 +227,7 @@ Vous pouvez créer un fichier de configuration **local.json** dans le dossier **
224
227
  ````
225
228
  {
226
229
  "ServerConfig": {
227
- "version": "1.1.3.3", // La version du serveur
230
+ "version": "1.1.3.4", // La version du serveur
228
231
  "port": 3000, // Le port sur lequel lancer le server
229
232
  "proxyMode": false, // Mettez à true si votre serveur est derrière un proxy - par défaut false
230
233
  "enableMultithreading": true, // Activer l'utilisation de threads différents pour le moteur de jeu, améliore les performances / nécessite une version de Nodejs qui supporte les Worker Threads
@@ -269,6 +272,9 @@ Vous pouvez créer un fichier de configuration **local.json** dans le dossier **
269
272
 
270
273
  ## Journal des changements
271
274
 
275
+ * Version 1.1.3.4 (03/06/2024) :
276
+ - Mise à jour des dépendences
277
+
272
278
  * Version 1.1.3.3 (30/03/2024) :
273
279
  - Mise à jour des dépendences
274
280
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "ServerConfig": {
3
- "version": "1.1.3.3",
3
+ "version": "1.1.3.4",
4
4
  "port": 3000,
5
5
  "proxyMode": false,
6
6
  "enableMultithreading": true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "snakeia-server",
3
- "version": "1.1.3-3",
3
+ "version": "1.1.3-4",
4
4
  "description": "Server for multiplaying in SnakeIA (https://github.com/Eliastik/snakeia)",
5
5
  "main": "server.js",
6
6
  "scripts": {
@@ -24,7 +24,7 @@
24
24
  "csurf": "^1.11.0",
25
25
  "ejs": "^3.1.9",
26
26
  "express": "^4.19.2",
27
- "express-rate-limit": "^7.2.0",
27
+ "express-rate-limit": "^7.3.0",
28
28
  "html-entities": "^2.5.2",
29
29
  "i18n": "^0.15.1",
30
30
  "jsonwebtoken": "^9.0.2",