Skip to content

Commit a10abb0

Browse files
committed
version update
1 parent 4bedb9c commit a10abb0

File tree

9 files changed

+9
-17
lines changed

9 files changed

+9
-17
lines changed

CLScript/CLMain.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ def __init__(self):
55
self.path = '/usr/local/CyberCP/version.txt'
66
#versionInfo = json.loads(open(self.path, 'r').read())
77
self.version = '2.4'
8-
self.build = '4'
8+
self.build = '5'
99

1010
ipFile = "/etc/cyberpanel/machineIP"
1111
f = open(ipFile)

baseTemplate/templates/baseTemplate/index.html

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{% load i18n %}
22
{% get_current_language as LANGUAGE_CODE %}
3-
{% with CP_VERSION="2.4.4.1" %}
3+
{% with CP_VERSION="2.4.5.1" %}
44
<!DOCTYPE html>
55
<html lang="en" ng-app="CyberCP">
66
<head>
@@ -1716,9 +1716,6 @@
17161716
<a href="{% url 'aiScannerHome' %}" class="menu-item">
17171717
<span>AI Scanner</span>
17181718
</a>
1719-
<a href="#" class="menu-item" onclick="loadSecurityManagement(); return false;">
1720-
<span>Security Management</span>
1721-
</a>
17221719
</div>
17231720

17241721
<a href="#" class="menu-item" onclick="toggleSubmenu('mail-settings-submenu', this); return false;">
@@ -2161,11 +2158,6 @@
21612158
}
21622159
});
21632160
}
2164-
2165-
function loadSecurityManagement() {
2166-
// Load security management interface
2167-
window.open('/websiteFunctions/securityManagement.html', '_blank');
2168-
}
21692161
</script>
21702162

21712163
{% block footer_scripts %}{% endblock %}

baseTemplate/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
# Create your views here.
3030

3131
VERSION = '2.4'
32-
BUILD = 4
32+
BUILD = 5
3333

3434

3535
@ensure_csrf_cookie

install/install.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
import install_utils
1919

2020
VERSION = '2.4'
21-
BUILD = 4
21+
BUILD = 5
2222

2323
# Using shared char_set from install_utils
2424
char_set = install_utils.char_set

loginSystem/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# Create your views here.
1818

1919
VERSION = '2.4'
20-
BUILD = 4
20+
BUILD = 5
2121

2222

2323
def verifyLogin(request):

plogical/adminPass.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
from baseTemplate.models import version
1414

1515
VERSION = '2.4'
16-
BUILD = 4
16+
BUILD = 5
1717

1818
if not os.geteuid() == 0:
1919
sys.exit("\nOnly root can run this script\n")

plogical/backupUtilities.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
pass
5555

5656
VERSION = '2.4'
57-
BUILD = 4
57+
BUILD = 5
5858

5959

6060
## I am not the monster that you think I am..

plogical/upgrade.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ class MinimalSettings:
292292
print("Recovery complete. Continuing with upgrade...")
293293

294294
VERSION = '2.4'
295-
BUILD = 4
295+
BUILD = 5
296296

297297
CENTOS7 = 0
298298
CENTOS8 = 1

serverStatus/views.py

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

2828
VERSION = '2.4'
29-
BUILD = 4
29+
BUILD = 5
3030

3131

3232
def serverStatusHome(request):

0 commit comments

Comments
 (0)