snakeia-server 1.1.3-6 → 1.1.3-7
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 +10 -4
- package/config/default.json +1 -1
- package/package.json +4 -4
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.
|
|
11
|
+
* Version 1.1.3.7 (9/19/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.
|
|
77
|
+
"version": "1.1.3.7", // 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.7 (9/19/2024) :
|
|
123
|
+
- Updated dependencies
|
|
124
|
+
|
|
122
125
|
* Version 1.1.3.6 (7/25/2024) :
|
|
123
126
|
- Updated dependencies
|
|
124
127
|
|
|
@@ -167,7 +170,7 @@ Un serveur pour mon jeu [SnakeIA](https://github.com/Eliastik/snakeia), écrit e
|
|
|
167
170
|
|
|
168
171
|
## À propos de ce serveur
|
|
169
172
|
|
|
170
|
-
* Version 1.1.3.
|
|
173
|
+
* Version 1.1.3.7 (19/09/2024)
|
|
171
174
|
* Made in France by Eliastik - [eliastiksofts.com](http://eliastiksofts.com) - Contact : [eliastiksofts.com/contact](http://eliastiksofts.com/contact)
|
|
172
175
|
* Licence : GNU GPLv3 (voir le fichier LICENCE.txt)
|
|
173
176
|
|
|
@@ -233,7 +236,7 @@ Vous pouvez créer un fichier de configuration **local.json** dans le dossier **
|
|
|
233
236
|
````
|
|
234
237
|
{
|
|
235
238
|
"ServerConfig": {
|
|
236
|
-
"version": "1.1.3.
|
|
239
|
+
"version": "1.1.3.7", // La version du serveur
|
|
237
240
|
"port": 3000, // Le port sur lequel lancer le server
|
|
238
241
|
"proxyMode": false, // Mettez à true si votre serveur est derrière un proxy - par défaut false
|
|
239
242
|
"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
|
|
@@ -278,6 +281,9 @@ Vous pouvez créer un fichier de configuration **local.json** dans le dossier **
|
|
|
278
281
|
|
|
279
282
|
## Journal des changements
|
|
280
283
|
|
|
284
|
+
* Version 1.1.3.7 (19/09/2024) :
|
|
285
|
+
- Mise à jour des dépendences
|
|
286
|
+
|
|
281
287
|
* Version 1.1.3.6 (25/07/2024) :
|
|
282
288
|
- Mise à jour des dépendences
|
|
283
289
|
|
package/config/default.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "snakeia-server",
|
|
3
|
-
"version": "1.1.3-
|
|
3
|
+
"version": "1.1.3-7",
|
|
4
4
|
"description": "Server for multiplaying in SnakeIA (https://github.com/Eliastik/snakeia)",
|
|
5
5
|
"main": "server.js",
|
|
6
6
|
"scripts": {
|
|
@@ -18,12 +18,12 @@
|
|
|
18
18
|
},
|
|
19
19
|
"homepage": "https://github.com/Eliastik/snakeia-server#readme",
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"body-parser": "^1.20.
|
|
21
|
+
"body-parser": "^1.20.3",
|
|
22
22
|
"config": "^3.3.12",
|
|
23
23
|
"cookie-parser": "^1.4.6",
|
|
24
24
|
"csurf": "^1.11.0",
|
|
25
25
|
"ejs": "^3.1.9",
|
|
26
|
-
"express": "^4.
|
|
26
|
+
"express": "^4.21.0",
|
|
27
27
|
"express-rate-limit": "^7.4.0",
|
|
28
28
|
"html-entities": "^2.5.2",
|
|
29
29
|
"i18n": "^0.15.1",
|
|
@@ -33,6 +33,6 @@
|
|
|
33
33
|
"snakeia": "git+https://git@github.com/Eliastik/snakeia.git#2.2",
|
|
34
34
|
"socket.io": "^4.7.5",
|
|
35
35
|
"socket.io-cookie-parser": "^1.0.0",
|
|
36
|
-
"winston": "^3.
|
|
36
|
+
"winston": "^3.14.2"
|
|
37
37
|
}
|
|
38
38
|
}
|