snakeia-server 1.1.3-4 → 1.1.3-6
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 +16 -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.6 (7/25/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.6", // 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,12 @@ You can create another configuration file in the **config** directory named **lo
|
|
|
119
119
|
|
|
120
120
|
## Changelog
|
|
121
121
|
|
|
122
|
+
* Version 1.1.3.6 (7/25/2024) :
|
|
123
|
+
- Updated dependencies
|
|
124
|
+
|
|
125
|
+
* Version 1.1.3.5 (6/20/2024) :
|
|
126
|
+
- Updated dependencies
|
|
127
|
+
|
|
122
128
|
* Version 1.1.3.4 (6/3/2024) :
|
|
123
129
|
- Updated dependencies
|
|
124
130
|
|
|
@@ -161,7 +167,7 @@ Un serveur pour mon jeu [SnakeIA](https://github.com/Eliastik/snakeia), écrit e
|
|
|
161
167
|
|
|
162
168
|
## À propos de ce serveur
|
|
163
169
|
|
|
164
|
-
* Version 1.1.3.
|
|
170
|
+
* Version 1.1.3.6 (25/07/2024)
|
|
165
171
|
* Made in France by Eliastik - [eliastiksofts.com](http://eliastiksofts.com) - Contact : [eliastiksofts.com/contact](http://eliastiksofts.com/contact)
|
|
166
172
|
* Licence : GNU GPLv3 (voir le fichier LICENCE.txt)
|
|
167
173
|
|
|
@@ -227,7 +233,7 @@ Vous pouvez créer un fichier de configuration **local.json** dans le dossier **
|
|
|
227
233
|
````
|
|
228
234
|
{
|
|
229
235
|
"ServerConfig": {
|
|
230
|
-
"version": "1.1.3.
|
|
236
|
+
"version": "1.1.3.6", // La version du serveur
|
|
231
237
|
"port": 3000, // Le port sur lequel lancer le server
|
|
232
238
|
"proxyMode": false, // Mettez à true si votre serveur est derrière un proxy - par défaut false
|
|
233
239
|
"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
|
|
@@ -272,6 +278,12 @@ Vous pouvez créer un fichier de configuration **local.json** dans le dossier **
|
|
|
272
278
|
|
|
273
279
|
## Journal des changements
|
|
274
280
|
|
|
281
|
+
* Version 1.1.3.6 (25/07/2024) :
|
|
282
|
+
- Mise à jour des dépendences
|
|
283
|
+
|
|
284
|
+
* Version 1.1.3.5 (20/06/2024) :
|
|
285
|
+
- Mise à jour des dépendences
|
|
286
|
+
|
|
275
287
|
* Version 1.1.3.4 (03/06/2024) :
|
|
276
288
|
- Mise à jour des dépendences
|
|
277
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-6",
|
|
4
4
|
"description": "Server for multiplaying in SnakeIA (https://github.com/Eliastik/snakeia)",
|
|
5
5
|
"main": "server.js",
|
|
6
6
|
"scripts": {
|
|
@@ -19,12 +19,12 @@
|
|
|
19
19
|
"homepage": "https://github.com/Eliastik/snakeia-server#readme",
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"body-parser": "^1.20.2",
|
|
22
|
-
"config": "^3.3.
|
|
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
26
|
"express": "^4.19.2",
|
|
27
|
-
"express-rate-limit": "^7.
|
|
27
|
+
"express-rate-limit": "^7.4.0",
|
|
28
28
|
"html-entities": "^2.5.2",
|
|
29
29
|
"i18n": "^0.15.1",
|
|
30
30
|
"jsonwebtoken": "^9.0.2",
|
|
@@ -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.13.
|
|
36
|
+
"winston": "^3.13.1"
|
|
37
37
|
}
|
|
38
38
|
}
|