Skip to content

Commit bd26c36

Browse files
committed
1.5.4.4 - Fix Memory Leak in SourceSleuth
1 parent e9e6213 commit bd26c36

File tree

13 files changed

+2396
-535
lines changed

13 files changed

+2396
-535
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,25 @@ Legend:
1010
? = Other stuff
1111
```
1212

13+
(07/04/16): Version 1.5.4.4
14+
-----------------------
15+
01. ! Fix Memory Leak in SourceSleuth Plugin
16+
02. ? Optimized and updated IpToCountry.csv
17+
18+
(24/03/16): Version 1.5.4.3
19+
-----------------------
20+
01. ! Downgrade plugin to 1.5.3
21+
02. + Add ULX Module for GMOD (Not Maintained by Me)
22+
23+
(09/03/16): Version 1.5.4.2
24+
-----------------------
25+
01. ! Fix XSS Vulnerability in SourceComms Page
26+
27+
(01/03/16): Version 1.5.4.1
28+
-----------------------
29+
01. ! Fix Ban/Comm Reason Issue in Plugin
30+
02. ? CC-BY-NC-SA-3.0
31+
1332
(14/02/16): Version 1.5.4
1433
-----------------------
1534
01. * Added Steam3 ID to Ban and Comm list
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

game_upload/addons/sourcemod/scripting/SourceSleuth.sp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
#undef REQUIRE_PLUGIN
3030
#include <sourcebans>
3131

32-
#define PLUGIN_VERSION "(SB++) 1.5.4.3"
32+
#define PLUGIN_VERSION "(SB++) 1.5.4.4"
3333

3434
#define LENGTH_ORIGINAL 1
3535
#define LENGTH_CUSTOM 2

game_upload/addons/sourcemod/scripting/sb_admcfg.sp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public Plugin:myinfo =
3333
name = "SourceBans: Admin Config Loader",
3434
author = "AlliedModders LLC, Sarabveer(VEER™)",
3535
description = "Reads admin files",
36-
version = "(SB++) 1.5.4.3",
36+
version = "(SB++) 1.5.4.4",
3737
url = "https://github.com/Sarabveer/SourceBans-Fork"
3838
};
3939

game_upload/addons/sourcemod/scripting/sbchecker.sp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
// *************************************************************************
2626
#include <sourcemod>
2727

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

game_upload/addons/sourcemod/scripting/sourcebans.sp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@
3232
#include <adminmenu>
3333
#tryinclude <updater>
3434

35-
#define SB_VERSION "1.5.4.3F"
36-
#define SBR_VERSION "1.5.4.3"
35+
#define SB_VERSION "1.5.4.4F"
36+
#define SBR_VERSION "1.5.4.4"
3737

3838
#if defined _updater_included
3939
#define UPDATE_URL "https://sarabveer.github.io/SourceBans-Fork/updater/updatefile.txt"

0 commit comments

Comments
 (0)