Skip to content

Commit

Permalink
1.5.4.4 - Fix Memory Leak in SourceSleuth
Browse files Browse the repository at this point in the history
  • Loading branch information
sarabveer committed Apr 7, 2016
1 parent e9e6213 commit bd26c36
Show file tree
Hide file tree
Showing 13 changed files with 2,396 additions and 535 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,25 @@ Legend:
? = Other stuff
```

(07/04/16): Version 1.5.4.4
-----------------------
01. ! Fix Memory Leak in SourceSleuth Plugin
02. ? Optimized and updated IpToCountry.csv

(24/03/16): Version 1.5.4.3
-----------------------
01. ! Downgrade plugin to 1.5.3
02. + Add ULX Module for GMOD (Not Maintained by Me)

(09/03/16): Version 1.5.4.2
-----------------------
01. ! Fix XSS Vulnerability in SourceComms Page

(01/03/16): Version 1.5.4.1
-----------------------
01. ! Fix Ban/Comm Reason Issue in Plugin
02. ? CC-BY-NC-SA-3.0

(14/02/16): Version 1.5.4
-----------------------
01. * Added Steam3 ID to Ban and Comm list
Expand Down
Binary file modified game_upload/addons/sourcemod/plugins/SourceSleuth.smx
Binary file not shown.
Binary file modified game_upload/addons/sourcemod/plugins/sb_admcfg.smx
Binary file not shown.
Binary file modified game_upload/addons/sourcemod/plugins/sbchecker.smx
Binary file not shown.
Binary file modified game_upload/addons/sourcemod/plugins/sourcebans.smx
Binary file not shown.
Binary file modified game_upload/addons/sourcemod/plugins/sourcecomms.smx
Binary file not shown.
2 changes: 1 addition & 1 deletion game_upload/addons/sourcemod/scripting/SourceSleuth.sp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#undef REQUIRE_PLUGIN
#include <sourcebans>

#define PLUGIN_VERSION "(SB++) 1.5.4.3"
#define PLUGIN_VERSION "(SB++) 1.5.4.4"

#define LENGTH_ORIGINAL 1
#define LENGTH_CUSTOM 2
Expand Down
2 changes: 1 addition & 1 deletion game_upload/addons/sourcemod/scripting/sb_admcfg.sp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public Plugin:myinfo =
name = "SourceBans: Admin Config Loader",
author = "AlliedModders LLC, Sarabveer(VEER™)",
description = "Reads admin files",
version = "(SB++) 1.5.4.3",
version = "(SB++) 1.5.4.4",
url = "https://github.com/Sarabveer/SourceBans-Fork"
};

Expand Down
2 changes: 1 addition & 1 deletion game_upload/addons/sourcemod/scripting/sbchecker.sp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
// *************************************************************************
#include <sourcemod>

#define VERSION "(SB++) 1.5.4.3"
#define VERSION "(SB++) 1.5.4.4"
#define LISTBANS_USAGE "sm_listsbbans <#userid|name> - Lists a user's prior bans from Sourcebans"
#define INVALID_TARGET -1

Expand Down
4 changes: 2 additions & 2 deletions game_upload/addons/sourcemod/scripting/sourcebans.sp
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
#include <adminmenu>
#tryinclude <updater>

#define SB_VERSION "1.5.4.3F"
#define SBR_VERSION "1.5.4.3"
#define SB_VERSION "1.5.4.4F"
#define SBR_VERSION "1.5.4.4"

#if defined _updater_included
#define UPDATE_URL "https://sarabveer.github.io/SourceBans-Fork/updater/updatefile.txt"
Expand Down
2 changes: 1 addition & 1 deletion game_upload/addons/sourcemod/scripting/sourcecomms.sp
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
// Do not edit below this line //
//-----------------------------//

#define PLUGIN_VERSION "(SB++) 1.5.4.3"
#define PLUGIN_VERSION "(SB++) 1.5.4.4"
#define PREFIX "\x04[SourceComms]\x01 "

#define MAX_TIME_MULTI 30 // maximum mass-target punishment length
Expand Down
2,896 changes: 2,369 additions & 527 deletions web_upload/includes/IpToCountry.csv

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions web_upload/init.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@
// ---------------------------------------------------
#define('SB_GIT', true);
if(!defined('SB_VERSION')){
define('SB_VERSION', '1.5.4.2');
define('SB_GITRev', '$Git: 339 $');
define('SB_VERSION', '1.5.4.4');
define('SB_GITRev', '$Git: 345 $');
}
define('LOGIN_COOKIE_LIFETIME', (60*60*24*7)*2);
define('COOKIE_PATH', '/');
Expand Down

0 comments on commit bd26c36

Please sign in to comment.