snakeia-server 1.2.1 → 1.2.2
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 +5 -5
- package/config/default.json +1 -1
- package/package.json +2 -2
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.2 (10/7/2025)
|
|
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.2", // 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,7 +123,7 @@ You can create another configuration file in the **config** directory named **lo
|
|
|
123
123
|
|
|
124
124
|
## Changelog
|
|
125
125
|
|
|
126
|
-
* Version 1.2.1 (10/7/2025):
|
|
126
|
+
* Version 1.2.1/1.2.2 (10/7/2025):
|
|
127
127
|
- Fixed a bug where the game could get stuck on the "Loading..." screen when restarting.
|
|
128
128
|
|
|
129
129
|
* Version 1.2.0 (10/5/2025):
|
|
@@ -272,7 +272,7 @@ Vous pouvez créer un fichier de configuration **local.json** dans le dossier **
|
|
|
272
272
|
````
|
|
273
273
|
{
|
|
274
274
|
"ServerConfig": {
|
|
275
|
-
"version": "1.2.
|
|
275
|
+
"version": "1.2.2", // La version du serveur
|
|
276
276
|
"port": 3000, // Le port sur lequel lancer le server
|
|
277
277
|
"proxyMode": false, // Mettez à true si votre serveur est derrière un proxy - par défaut false
|
|
278
278
|
"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
|
|
@@ -321,7 +321,7 @@ Vous pouvez créer un fichier de configuration **local.json** dans le dossier **
|
|
|
321
321
|
|
|
322
322
|
## Journal des changements
|
|
323
323
|
|
|
324
|
-
* Version 1.2.1 (07/10/2025):
|
|
324
|
+
* Version 1.2.1/1.2.2 (07/10/2025):
|
|
325
325
|
- Correction d'un bug où le jeu restait bloqué sur le message "Chargement..." lorsque la partie était recommencée
|
|
326
326
|
|
|
327
327
|
* Version 1.2.0 (05/10/2025) :
|
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.2",
|
|
4
4
|
"description": "Server for multiplaying in SnakeIA (https://github.com/Eliastik/snakeia)",
|
|
5
5
|
"main": "server.js",
|
|
6
6
|
"scripts": {
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"jsonwebtoken": "^9.0.2",
|
|
31
31
|
"node-fetch": "^3.3.2",
|
|
32
32
|
"seedrandom": "^3.0.5",
|
|
33
|
-
"snakeia": "^3.0.
|
|
33
|
+
"snakeia": "^3.0.1",
|
|
34
34
|
"socket.io": "^4.8.1",
|
|
35
35
|
"socket.io-cookie-parser": "^1.0.0",
|
|
36
36
|
"winston": "^3.18.3"
|