snakeia-server 1.2.4 → 1.2.5
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/.drone.yml +1 -1
- package/README.md +12 -6
- package/config/default.json +1 -1
- package/package.json +3 -3
package/.drone.yml
CHANGED
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.2.
|
|
11
|
+
* Version 1.2.5 (1/4/2026)
|
|
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.2.
|
|
77
|
+
"version": "1.2.5", // The server version
|
|
78
78
|
"port": 3000, // The port where the server runs
|
|
79
79
|
"proxyMode": false, // Sets this value to true if your server is behind a proxy - defaults to false
|
|
80
80
|
"numberOfProxies": 1, // Sets the number of reverse proxies in front of the server. Default to 1. See: https://expressjs.com/en/guide/behind-proxies.html / https://express-rate-limit.mintlify.app/guides/troubleshooting-proxy-issues
|
|
@@ -123,6 +123,9 @@ You can create another configuration file in the **config** directory named **lo
|
|
|
123
123
|
|
|
124
124
|
## Changelog
|
|
125
125
|
|
|
126
|
+
* Version 1.2.5 (1/4/2026):
|
|
127
|
+
- Update dependencies
|
|
128
|
+
|
|
126
129
|
* Version 1.2.4 (12/6/2025):
|
|
127
130
|
- Update dependencies
|
|
128
131
|
|
|
@@ -216,7 +219,7 @@ Un serveur pour mon jeu [SnakeIA](https://github.com/Eliastik/snakeia), écrit e
|
|
|
216
219
|
|
|
217
220
|
## À propos de ce serveur
|
|
218
221
|
|
|
219
|
-
* Version 1.2.
|
|
222
|
+
* Version 1.2.5 (04/01/2026)
|
|
220
223
|
* Made in France by Eliastik - [eliastiksofts.com](http://eliastiksofts.com) - Contact : [eliastiksofts.com/contact](http://eliastiksofts.com/contact)
|
|
221
224
|
* Licence : GNU GPLv3 (voir le fichier LICENCE.txt)
|
|
222
225
|
|
|
@@ -282,7 +285,7 @@ Vous pouvez créer un fichier de configuration **local.json** dans le dossier **
|
|
|
282
285
|
````
|
|
283
286
|
{
|
|
284
287
|
"ServerConfig": {
|
|
285
|
-
"version": "1.2.
|
|
288
|
+
"version": "1.2.5", // La version du serveur
|
|
286
289
|
"port": 3000, // Le port sur lequel lancer le server
|
|
287
290
|
"proxyMode": false, // Mettez à true si votre serveur est derrière un proxy - par défaut false
|
|
288
291
|
"numberOfProxies": 1, // Configure le nombre de proxies devant votre serveur. Par défaut 1. Voir : https://expressjs.com/en/guide/behind-proxies.html / https://express-rate-limit.mintlify.app/guides/troubleshooting-proxy-issues
|
|
@@ -331,6 +334,9 @@ Vous pouvez créer un fichier de configuration **local.json** dans le dossier **
|
|
|
331
334
|
|
|
332
335
|
## Journal des changements
|
|
333
336
|
|
|
337
|
+
* Version 1.2.5 (04/01/2026) :
|
|
338
|
+
- Mise à jour des dépendences
|
|
339
|
+
|
|
334
340
|
* Version 1.2.4 (06/12/2025) :
|
|
335
341
|
- Mise à jour des dépendances
|
|
336
342
|
|
|
@@ -427,7 +433,7 @@ Vous pouvez créer un fichier de configuration **local.json** dans le dossier **
|
|
|
427
433
|
|
|
428
434
|
## Déclaration de licence
|
|
429
435
|
|
|
430
|
-
Copyright (C) 2020-
|
|
436
|
+
Copyright (C) 2020-2026 Eliastik (eliastiksofts.com)
|
|
431
437
|
|
|
432
438
|
Ce programme est un logiciel libre ; vous pouvez le redistribuer ou le modifier suivant les termes de la GNU General Public License telle que publiée par la Free Software Foundation ; soit la version 3 de la licence, soit (à votre gré) toute version ultérieure.
|
|
433
439
|
|
|
@@ -437,7 +443,7 @@ Vous devez avoir reçu une copie de la GNU General Public License en même temps
|
|
|
437
443
|
|
|
438
444
|
----
|
|
439
445
|
|
|
440
|
-
Copyright (C) 2020-
|
|
446
|
+
Copyright (C) 2020-2026 Eliastik (eliastiksofts.com)
|
|
441
447
|
|
|
442
448
|
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
|
|
443
449
|
|
package/config/default.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "snakeia-server",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.5",
|
|
4
4
|
"description": "Server for multiplaying in SnakeIA (https://github.com/Eliastik/snakeia)",
|
|
5
5
|
"main": "server.js",
|
|
6
6
|
"scripts": {
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
"node-fetch": "^3.3.2",
|
|
32
32
|
"seedrandom": "^3.0.5",
|
|
33
33
|
"snakeia": "^3.0.1",
|
|
34
|
-
"socket.io": "^4.8.
|
|
34
|
+
"socket.io": "^4.8.3",
|
|
35
35
|
"socket.io-cookie-parser": "^1.0.0",
|
|
36
|
-
"winston": "^3.
|
|
36
|
+
"winston": "^3.19.0"
|
|
37
37
|
}
|
|
38
38
|
}
|