From 8c36966d89ecf0f8d48e251ef295a1eb207697d6 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Sat, 21 Jun 2008 08:20:31 +0000 Subject: [PATCH] added changelog to branch --HG-- branch : sourcemod-1.0.x extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/branches/sourcemod-1.0.x%402267 --- changelog.txt | 75 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 changelog.txt diff --git a/changelog.txt b/changelog.txt new file mode 100644 index 00000000..7c48dee8 --- /dev/null +++ b/changelog.txt @@ -0,0 +1,75 @@ +SourceMod Changelog + +---------------------------- + +SourceMod 1.0.3 [2008-06-21] + +Changes: + + - Fixed SDKTools compatibility for latest TF2 update. + - Fixed amb1750: OnAutoConfigsBuffered() inserted before "exec server.cfg". + - Fixed a logic bug where OnConfigsExecuted() could be executed before "exec server.cfg" finished. + - Fixed a rare crash in the event manager that manifested on Zombie Panic! Source. + +---------------------------- + +SourceMod 1.0.2 [2008-05-31] + +Changes: + + - The admin menu is now user-modifiable (the "Dynamic Admin Menu"). + - Added a TF2 extension with Team Fortress functions. + - Added a RegEx extension with regular expression functions. + - Added functions to SDKTools for hooking entity outputs. + - Added preliminary support for the DoD:S Orange Box beta. + - Added a forward for map config plugins for preventing race conditions. + - Added a %b format specifier for binary printing. + - Added sm_dump_datamaps command (SDKTools) for enumerating datamap properties. + - Added sm_dump_admcache command for debugging the admin cache. + - Added amb1715 - TraceHull functions to SDKTools (complementing TraceRay). + - Added amb1694 - FindCharInString() function. + - Added amb1685 - GetTickInterval() function. + - Added amb1620 - ActivateEntity() function to SDKTools (for Orange Box particle system). + - Added amb1610 - StripQuotes() function. + - Added amb1558 - Compiler now has __BINARY_PATH__ and __BINARY_FILE__ macros. + - Fixed amb1686 - ReplaceString* with an empty search string crashed; it now throws an error. + - Fixed amb1684 - Blank passwords required an empty but set password. + - Fixed amb1595 - Extension load failures did not show a platform error message. + - Fixed amb1583 - MySQL string fetch from prepared queries returned corrupted data. + - Fixed amb1358 - Timeleft did not reset on TF2 restarts. + - Fixed cases where the JIT was too cautious in space optimizations. + - Fixed TF2/Cstrike extensions being loadable on incompatible games. + - Fixed various documentation inconsistencies and typos. + - Fixed internal bugs with file extension handling. + +Notes: + + There is a possible compatibility regression from amb1684. SetAdminPassword() + has been modified to remove any set password when given an empty string. Previously, + a blank password ("") would force an admin to use "setinfo" to set an empty password, + but this functionality was deemed unuseful and unintended. Blank passwords now + remove any set password. + +---------------------------- + +SourceMod 1.0.1 [2008-05-20] + +Changes: + + - Fixed SDKTools compatibility for latest TF2 update. + - Removed GivePlayerItem from TF2 (TF2 update broke functionality). + - Fixed amb1688: GivePlayerItem offset was wrong for DoD:S Linux. + - Fixed amb1657: Server console did not see admin version of sm_who. + - Fixed amb1648: Stack corruption from GetClientEyeAngles() on Windows. + - Fixed amb1646: NetFlow_Both did not work for client network statistics. + - Fixed amb1601: Vote FF menu reading from sv_alltalk cvar instead of mp_friendlyfire. + - Fixed amb1591: Fixed listen server crashes on mods like IOS:S which pre-add more than one bot. + - Fixed amb1586: GetTeamName() could crash the server if called on load. + - Fixed mapchooser's round counting for TF2. + - Fixed a bug where an RTE on plugin load would throw a message referring to the plugin as "-1". + - Symbols are no longer stripped on Linux. + - Minor SourceMod SDK fixes. + +Notes: + + The extension interface version has been bumped. Any extensions compiled against 1.0.1 will require 1.0.1 or higher to run. Extensions against 1.0.0 will continue to run normally.