about summary refs log tree commit diff
path: root/src/engine/shared
AgeCommit message (Collapse)Author
2011-03-20made it possible to just show the number of player slots of a server ↵oy
(instead of client ones). Closes #68
2011-03-18improved server browser list resorting and made search work on IP addresses. ↵oy
Closes #482
2011-03-17fixed a bug that messes up demos recorded by the serveroy
2011-03-15made network support clan name and country code for playersoy
2011-03-15made clients sending startinfo a requirement to prevent empty player infosoy
2011-03-13fixed demo length info and let the demo recorder search within sub folders ↵oy
for maps
2011-03-13added extended demo infos in the demo browseroy
2011-03-12added info about the actual recorded demo length in the notification boxoy
2011-03-12fixed several problems with spectator view in game and demo player. Closes #83oy
2011-03-05made dbg_dumpmem and dbg_lognetwork work againoy
2011-02-27made cl_threadsoundloading work againoy
2011-02-27made engine an interfaceoy
2011-02-21made the client's map search work with sub folders. Closes #254oy
2011-02-13added saving of the banreason.heinrich5991
2011-02-12Refactoring & fixed WEAPONSPEC_GUN in content.pyGreYFoXGTi
2011-01-23Add banning to mastersrv: any packet from a banned IP (and optionally a ↵m!nus
fixed port) will be dropped (also affects clients. Put your bans into master.cfg: "ban 127.0.0.1" or "ban 127.0.0.1:8303". It's reloaded every 5 minutes. This change also adds IStorage, IConsole and IKernel to mastersrv.
2011-01-20increased default value for br_max_requests. Closes #446oy
2011-01-20fixed possible CRLF line ending problem in the linereaderoy
2011-01-18fixed that the server crashes on too many snap items (Closes #317), ↵oy
optimised snapshot hashing
2011-01-11fixed a compiler warningoy
2011-01-07fixed console parsing when using the exec command. Closes #381oy
2010-12-12made it possible to automatically take game over screenshots. Closes #339oy
2010-12-11show the path of $CURRENTDIR. Closes #323oy
2010-12-11fixed wrong $DATADIR path. Closes #316oy
2010-12-11made it possible to "recycle" auto recorded demosoy
2010-12-08added auto recording support by Batchyxoy
2010-12-08added CDemoRecorder::TickCount() to get demo length by Batchyxoy
2010-12-08moved function to remove filesoy
2010-12-08added Storage function to move/rename files by Batchyxoy
2010-11-24Storage: fix RemoveFile and CreateFolder ret valueBatchyx
Removefile returns remove() and CreateFolder returns fs_makedir(), but they returns 0 on success and non-zero on error. Fix that, RemoveFile and CreateFolder should return true on success. (they return false when the type argument is invalid). note: bug has remained unoticed because noone uses CreateFolder, and the user of RemoveFile (the demo browser's remove button) doesn't check the return value.
2010-11-20Updated copyrightsSworddragon
2010-11-17clients are now dropped if they don't act as normal clients (fixes #235)Choupom
2010-11-17decreased the default value for maximum players with same IP a bitoy
2010-11-17fixed some compiler warningsoy
2010-11-17removed no longer needed data-dir override param - mods system should be ↵oy
used instead. Closes #267
2010-11-14fixed demo.h header guardChoupom
2010-11-13show real $USERDIR and $DATADIR path on startupoy
2010-10-31fixed infinite loop when playing empty demo. Closes #248oy
2010-10-31skip start params when parsing argv in consoleoy
2010-10-29added a null pointer check in huffman decompression code. it was possible to ↵m!nus
crash a masterserver by sending it a packet that had the compression flag (but not the connection-less flag) set because the huffman look up table is not initialized in the masterserver and thus resulted in a null-pointer-node. clients and servers (with initialized look up tables were not affected. it was also not possible to use this to inject code.
2010-10-28fixed mac compiling. Closes #238oy
2010-10-25moved str_skip_to_whitespace functionoy
2010-10-25parse line on addvote and skip invalid onesoy
2010-10-16added the possibility to create a new folder within the editor's save file ↵oy
dialog
2010-10-14fixed bug in the console when executing a line that holds more than one commandoy
2010-10-11made so we can add the reason for a kick/ban (fixes #123)Choupom
2010-10-09added info in the demo browser by Choupomoy
2010-10-06added mod system. Closes #34oy
2010-10-01made linereader work with window line endings. Closes #196oy
2010-10-01when setting a config string variable check if it's a utf8 string and encode ↵oy
it if the check fails. Closes #10