Skip to content

Commit 331e14e

Browse files
authored
Merge pull request #294 from ZerBytes/v1.x
prepare for new release
2 parents b31a050 + a4cc11e commit 331e14e

File tree

7 files changed

+28
-17
lines changed

7 files changed

+28
-17
lines changed

CHANGELOG.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,17 @@ Legend:
99
! = Fixed bug
1010
? = Other stuff
1111
```
12+
(07/05/17): Version 1.6.1
13+
01. ! Fixed an issue while XAJAX initialized
14+
02. ! Fixed the 'dash intro text' not displaying custom HTML elements
15+
03. ! Fixed 'change password' function
16+
04. ! Fixed encoding issues with player names
17+
05. ! Fixed aspect ratio of map image
18+
06. ! Fixed editing groups/override pages
19+
07. ! Fixed display error for 'edit mod' page
20+
08. ! Fixed version numbering displaying 0
21+
09. + Improved sizes and file types of images
22+
1223
(23/04/17): Version 1.6.0
1324
01. ! Fixed some XSS exploits
1425
02. + Improved password hashing / security
@@ -91,7 +102,7 @@ Legend:
91102
06. - SourceMod 1.6.x and below are not supported
92103
07. - Removed FamilySharing Ban Evasion Detection
93104
08. - MariaDB not does not work anymore (Never was supported anyways)
94-
09. ! Fixed Ban List lagging on MySQL 5.6+
105+
09. ! Fixed Ban List lagging on MySQL 5.6+
95106
10. ! Fixed Plugin Showing DataPack error
96107
11. ! Fixed KickId in Webpanel not working when trying to use Steam3
97108
12. ? Optimized and updated IpToCountry.csv
@@ -100,7 +111,7 @@ Legend:
100111
-----------------------
101112
01. * Changed licence to GNU GPL v3
102113
02. * Added SourceBans Connection Debugger
103-
03. * Added SourceComms Search Box
114+
03. * Added SourceComms Search Box
104115
04. + Re-made SourceBans Logo in Footer
105116
05. ! Fixed getdemo.php spewing errors
106117
06. ! Fixed Invalid Query in SB Plugin

game/addons/sourcemod/scripting/sbpp_admcfg.sp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public Plugin myinfo =
3737
name = "SourceBans++: Admin Config Loader",
3838
author = "AlliedModders LLC, SourceBans++ Dev Team",
3939
description = "Reads Admin Files",
40-
version = "1.6.0",
40+
version = "1.6.1",
4141
url = "https://sbpp.sarabveer.me/"
4242
};
4343

game/addons/sourcemod/scripting/sbpp_checker.sp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
#include <sourcemod>
2828

29-
#define VERSION "1.6.0"
29+
#define VERSION "1.6.1"
3030
#define LISTBANS_USAGE "sm_listsbbans <#userid|name> - Lists a user's prior bans from Sourcebans"
3131
#define INVALID_TARGET -1
3232

game/addons/sourcemod/scripting/sbpp_comms.sp

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
// Do not edit below this line //
4343
//-----------------------------//
4444

45-
#define PLUGIN_VERSION "1.6.0"
45+
#define PLUGIN_VERSION "1.6.1"
4646
#define PREFIX "\x04[SourceComms++]\x01 "
4747

4848
#define MAX_TIME_MULTI 30 // maximum mass-target punishment length
@@ -1248,7 +1248,7 @@ public Query_AddBlockInsert(Handle:owner, Handle:hndl, const String:error[], any
12481248
iAdmin = -1;
12491249
}
12501250
}
1251-
1251+
12521252
new iTarget = GetClientOfUserId(ReadPackCell(data));
12531253
if (!iTarget) {
12541254
iTarget = -1;
@@ -1469,13 +1469,13 @@ public Query_UnBlockSelect(Handle:owner, Handle:hndl, const String:error[], any:
14691469
if (type == TYPE_UNSILENCE)
14701470
{
14711471
// check result for possible combination with temp and time punishments (temp was skipped in code above)
1472-
1472+
14731473
#if SOURCEMOD_V_MAJOR >= 1 && SOURCEMOD_V_MINOR >= 8
14741474
SetPackPosition(data, view_as<DataPackPos>(16));
14751475
#else
14761476
SetPackPosition(data, 16);
14771477
#endif
1478-
1478+
14791479
if (g_MuteType[target] > bNot)
14801480
{
14811481
WritePackCell(data, TYPE_UNMUTE);
@@ -3113,10 +3113,10 @@ public Native_SetClientMute(Handle hPlugin, int numParams)
31133113
ThrowNativeError(SP_ERROR_NATIVE, "Client %d is not in game", target);
31143114
return false;
31153115
}
3116-
3116+
31173117
bool muteState = bool:GetNativeCell(2);
31183118
int muteLength = GetNativeCell(3);
3119-
3119+
31203120
if (muteState && muteLength == 0)
31213121
{
31223122
ThrowNativeError(SP_ERROR_NATIVE, "Permanent mute is not allowed!");
@@ -3155,7 +3155,7 @@ public Native_SetClientMute(Handle hPlugin, int numParams)
31553155
}
31563156

31573157
return true;
3158-
}
3158+
}
31593159

31603160
public Native_SetClientGag(Handle:hPlugin, numParams)
31613161
{

game/addons/sourcemod/scripting/sbpp_main.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.6.0++"
36-
#define SBR_VERSION "1.6.0"
35+
#define SB_VERSION "1.6.1++"
36+
#define SBR_VERSION "1.6.1"
3737

3838
#if defined _updater_included
3939
#define UPDATE_URL "https://sbpp.github.io/updater/updatefile.txt"

game/addons/sourcemod/scripting/sbpp_sleuth.sp

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

32-
#define PLUGIN_VERSION "1.6.0"
32+
#define PLUGIN_VERSION "1.6.1"
3333

3434
#define LENGTH_ORIGINAL 1
3535
#define LENGTH_CUSTOM 2
@@ -259,11 +259,11 @@ public LoadWhiteList()
259259
BuildPath(Path_SM, path, PLATFORM_MAX_PATH, "configs/sourcesleuth_whitelist.cfg");
260260

261261
new Handle:fileHandle = OpenFile(path, "r");
262-
262+
263263
if (fileHandle == INVALID_HANDLE)
264264
{
265265
LogError("Could not find the config file (addons/sourcemod/configs/sourcesleuth_whitelist.cfg)");
266-
266+
267267
return;
268268
}
269269

web/version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"version": "1.6.1",
3-
"git": "493"
3+
"git": "495"
44
}

0 commit comments

Comments
 (0)