Skip to content

Commit

Permalink
Tagged as 1.5.1F
Browse files Browse the repository at this point in the history
(29/01/15): Version 1.5.1F
-----------------------
01. * We are using GNU GPL v3 only, no later versions.
02. * Added SourceBans Connection Debugger
03. * Added SourceComms Search Box
04. * Re-made SourceBans Logo in Footer
05. ! Fixed getdemo.php spewing errors
06. ! Fixed Invalid Query in SB Plugin
07. ! Fixed parsing rcon status in CS:GO
08. ? Added/Fixed Copyright Headers
09. ? Updated SteamWorks Ext to git90
10. ? Optimized and updated IpToCountry.csv
  • Loading branch information
sarabveer committed Jan 29, 2015
1 parent 424ac88 commit f7f3a36
Show file tree
Hide file tree
Showing 12 changed files with 415 additions and 176 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,19 @@ Legend:
? = Other stuff
```

(29/01/15): Version 1.5.1F
-----------------------
01. * We are using GNU GPL v3 only, no later versions.
02. * Added SourceBans Connection Debugger
03. * Added SourceComms Search Box
04. * Re-made SourceBans Logo in Footer
05. ! Fixed getdemo.php spewing errors
06. ! Fixed Invalid Query in SB Plugin
07. ! Fixed parsing rcon status in CS:GO
08. ? Added/Fixed Copyright Headers
09. ? Updated SteamWorks Ext to git90
10. ? Optimized and updated IpToCountry.csv

(26/12/14): Version 1.5.0F
-----------------------
01. * Integrated SourceComms
Expand Down
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/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.1F-dev"
#define VERSION "SB-1.5.1F"
#define LISTBANS_USAGE "sm_listsbbans <#userid|name> - Lists a user's prior bans from Sourcebans"

new String:g_DatabasePrefix[10] = "sb";
Expand Down
2 changes: 1 addition & 1 deletion game_upload/addons/sourcemod/scripting/sourcebans.sp
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
#undef REQUIRE_PLUGIN
#include <adminmenu>

#define SB_VERSION "1.5.1F-dev"
#define SB_VERSION "1.5.1F"

//GLOBAL DEFINES
#define YELLOW 0x01
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.1F-dev"
#define PLUGIN_VERSION "SB-1.5.1F"
#define PREFIX "\x04[SourceComms]\x01 "

#define MAX_TIME_MULTI 30 // maximum mass-target punishment length
Expand Down
560 changes: 393 additions & 167 deletions web_upload/includes/IpToCountry.csv

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions web_upload/init.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,10 @@
// ---------------------------------------------------
// Initial setup
// ---------------------------------------------------
define('SB_SVN', true);
#define('SB_SVN', true);
if(!defined('SB_VERSION')){
define('SB_VERSION', '1.5.1F-dev');
define('SB_REV', '$Rev: 488 $');
define('SB_VERSION', '1.5.1F');
define('SB_REV', '$Rev: 489 $');
}
define('LOGIN_COOKIE_LIFETIME', (60*60*24*7)*2);
define('COOKIE_PATH', '/');
Expand Down
2 changes: 1 addition & 1 deletion web_upload/install/init.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
// Initial setup
// ---------------------------------------------------
if(!defined('SB_VERSION')){
define('SB_VERSION', '1.5.1F-dev Installer');
define('SB_VERSION', '1.5.1F Installer');
}
define('LOGIN_COOKIE_LIFETIME', (60*60*24*7)*2);
define('COOKIE_PATH', '/');
Expand Down
2 changes: 1 addition & 1 deletion web_upload/themes/sb_default/theme.conf.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
define('theme_author', "SourceBans Development Team, Sarabveer(VEER™)");

// Set the version of the theme here
define('theme_version', "1.5.0F");
define('theme_version', "1.5.1F");

// Set the link of the theme here
define('theme_link', "http://www.sourcebans.net");
Expand Down
2 changes: 1 addition & 1 deletion web_upload/themes/sourcebans_dark/theme.conf.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
define('theme_author', "SourceBans Development Team, Sarabveer(VEER™)");

// Set the version of the theme here
define('theme_version', "1.5.0F");
define('theme_version', "1.5.1F");

// Set the link of the theme here
define('theme_link', "http://www.sourcebans.net");
Expand Down

0 comments on commit f7f3a36

Please sign in to comment.