summaryrefslogtreecommitdiff
path: root/source
AgeCommit message (Collapse)Author
2010-09-15Renamed source tree subdirectory into ‘src’, moved ‘asm’ ↵Andrey Nazarov
subdirectory there and renamed it into ‘i386’.
2010-09-15Moved q2pro.menu into source tree.Andrey Nazarov
2010-09-15Use LIST_SINGLE macro instead of List_Count where possible.Andrey Nazarov
2010-09-15Keep MVD client list sequental.Andrey Nazarov
2010-09-14Placed ‘next’ pointer at the beginning of list_t.Andrey Nazarov
Simplified List_SeqAdd and others. Removed unused list macors. Added LIST_SINGLE macro.
2010-09-12Fixed file handle leak in SV_BeginDownload_f.Andrey Nazarov
2010-09-12Fixed FS_LoadFile to return EMFILE instead of bogus ENOENT when out of handles.Andrey Nazarov
Changed FS_FOpenFile to return EMFILE instead of ENFILE.
2010-09-11Fixed ‘kickban’ command broken in r539.Andrey Nazarov
2010-09-11Reset master ack times on server shutdown.Andrey Nazarov
Report master ack times in milliseconds.
2010-09-10Kill frozen MVD channel if there is no buffered data and GTV connection dies.Andrey Nazarov
2010-09-08Don't notify about missing visibility data in the waiting room channel.Andrey Nazarov
2010-09-08Fixed integer overflow in zone allocation functions.Andrey Nazarov
Removed unused zone reallocation function. Fixed a typo in variable name.
2010-09-08Don't repeat rcon response multiple times in client console.Andrey Nazarov
2010-09-08Avoid extra endianess conversion in SV_MatchAddress.Andrey Nazarov
2010-09-08Pretty-format anticheat reconnect times.Andrey Nazarov
2010-09-08Check for levelstring truncation in SV_Map.Andrey Nazarov
Remove useless local variable from SV_SpawnServer.
2010-09-07Allow extended ‘<limit>[/<period>[sec|min|hour]]’ syntax for ↵Andrey Nazarov
‘sv_status_limit’ (default period is one second). Split ‘sv_badauth_time’ cvar into ‘sv_auth_limit’ and ‘sv_rcon_limit’, with syntax identical to ‘sv_status_limit’. Reset rate limiting counters at server shutdown to make sure rcon rate limiting continues to work.
2010-09-07Don't clamp unsigned time value, wrapping is desired.Andrey Nazarov
2010-09-07Added ‘(add|del|list)blackhole(s)’ commands for ignoring connectionless ↵Andrey Nazarov
packets from IP blocks.
2010-09-07Re-resolve master servers after one day.Andrey Nazarov
Don't spam server console with ping acks from masters. Added ‘listmasters’ command for checking IPs and ack times. Send the first heartbeat soon after server initialization.
2010-09-05Removed duplicated setplayer code.Andrey Nazarov
Added ‘sv_enhanced_setplayer’ cvar. Fixed a rare case when SV_SetPlayer could leave a dangling sv_player pointer.
2010-08-31Wait for HTTP downloads to finish before doing CL_PrepRefresh().Andrey Nazarov
2010-08-31Fixed a crash when ‘map_override_path’ is in use.Andrey Nazarov
Made external entity string loading more verbose.
2010-08-13Support quake2://<address>[/] scheme in CL_Connect_f.Andrey Nazarov
2010-08-10Use if instead of ifdef when testing for compile time feature.Andrey Nazarov
2010-08-10Allocate pack filename at the end of the memory chunk to avoid alignment issues.Andrey Nazarov
2010-08-06Supply mandatory mode argument to open().Andrey Nazarov
2010-08-05Fixed unix builds broken by previous commit.Andrey Nazarov
2010-08-05Enable exclusive file opening even if fopen has no support for it.Andrey Nazarov
2010-08-05Check guessed out_color_space instead jpeg_color_space when loading JPEG images.Andrey Nazarov
2010-08-05Define ‘AL_NO_PROTOTYPES’ to be buildable with OpenAL 1.1 SDK headers.Andrey Nazarov
Allocate AL source names one at a time until error is signaled. Require at least 16 AL sources. Check for required ‘AL_EXT_LINEAR_DISTANCE’ extension. Mark sfx entry as failed if AL upload fails to avoid re-uploading. Default ‘al_driver’ to ‘openal32’ on Win32. Added ‘al_device’ cvar.
2010-08-04Use memchr instead of ad-hoc code in Cmd_Exec_f.Andrey Nazarov
2010-08-03Setting ‘gl_bilerp_pics’ to 2 will enable bilerping of scrap texture as ↵Andrey Nazarov
well, just like it did previously.
2010-08-03Don't bilerp small images stored in scrap, looks ugly more often than not.Andrey Nazarov
Added ‘gl_bilerp_pics’ cvar to make it possible to globally disable bilerping of pics.
2010-08-03Set BASEGAME and new DEFGAME defines through config.h.Andrey Nazarov
2010-08-02Exit the client properly when system console is closed, if started with ↵Andrey Nazarov
‘sys_viewlog’ enabled.
2010-08-02Updated Win32 resource scripts.Andrey Nazarov
2010-08-02Hacked IO sleep code to work properly on Win32.Andrey Nazarov
2010-08-02Made client and server buildable with mingw32 again.Andrey Nazarov
Use uint64_t type for network counters.
2010-08-02Made Q_ClearStr operate in place and renamed it to COM_strclr.Andrey Nazarov
Removed unused Q_HightlightStr function. Changed Q_ prefix on several functions to COM_ for consistency. Clear the message string before passing it to Cmd_ExecTrigger.
2010-08-02Don't incorrectly use cmd_current when executing trigger commands.Andrey Nazarov
2010-08-02Applied patch from Toni Spets implementing ‘m_autosens’ cvar.Andrey Nazarov
2010-08-01Applied patch from Toni Spets re-introducing support for message triggers.Andrey Nazarov
Allow ‘$var$’ syntax when performing macro expansion.
2010-08-01Stop spamming about missing or invalid sounds.Andrey Nazarov
Don't try to reload the sound multiple times after an error. Display sound load failure reasons in the output of ‘soundlist’ command.
2010-08-01Use custom macros for traversing cmd/alias lists.Andrey Nazarov
2010-08-01Applied patch from Toni Spets implementing crosshair coloring via ‘ch_’ ↵Andrey Nazarov
cvars.
2010-08-01Made evdev input driver a bit more windowed mode friendly.Andrey Nazarov
2010-08-01Don't release mouse if playing a demo or spectating in windowed mode.Andrey Nazarov
2010-08-01Applied patch from Toni Spets implementing action mod icon path hack.Andrey Nazarov
2010-08-01Silenly ignore valid sound files with empty data chunk.Andrey Nazarov