-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
38 lines (33 loc) · 2.07 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
Release 03 - 24/Jun/2023
- Added a message to linux terminal when you run the server.
- Changed compile shell script to use bash instead of sh.
- Fixed issue CVE-1999-1060 Buffer overflow in Tetrix TetriNet daemon 1.13.16
allows remote attackers to cause a denial of service
- Added information to README how to compile the server using Visual Studio Code
and WSL (linux) for Windows.
- Added Tetrinet 1.13 for Windows (game client) original from St0rmCat.
- Added .gitignore file to skip some files
_________________________________________________________________________________
Release 02 - 20/Jan/2021
- Fixed a bug that crashes the server while reading the motd file, that was
optional. It has been created two new functions in "main.c" file to handle it:
read_motd() and write_motd(). Now there is always a "message of the day" file.
When you use the command "/motd", this info is shown again. Also added this to
/help command.
- Fixed a bug in the function lprintf(), that was preventing some info to be
wrote correctly to the LOG file.
- Changed the header message of the log file when you start the server.
- Changed the option "game.maxchannels" to "10" in "game.conf". The old parameter
was "1", that did not allow to create more game channels by default.
_________________________________________________________________________________
RELEASE 01 - 18/Jan/2020
- Finished the review of the code and replaced the old library varargs.h
by stdarg.h. The functions lvprintf(), tprintf() and lprintf() was rewritten.
No more errors, now the code can be compilled with modern GCC versions.
- All returns of the functions fscanf() has been treated as it should be, and
there is no more warnings about it in the compilation.
- Fixed some bugs with variable formats and type conversions everywhere, that
was giving warnings in the compilation. Now it's compiling like a charm!
- The code is now full functional and can be used! It is the original version
of the tetrinetx, but working in 2020!
_________________________________________________________________________________