updated server update checker version

This commit is contained in:
Ayush Saini 2024-11-22 20:11:55 +05:30
parent 78638d0ca6
commit 1aef4af289
2 changed files with 66 additions and 2 deletions

63
dist/ba_root/mods/changelogs.json vendored Normal file
View file

@ -0,0 +1,63 @@
{
"61":{
"log":"msg here \n about updates",
"time":"1 Dec 2021"
},
"62":{
"log":"bug fix in logger.py",
"time":"2 DEC 2021 1:40PM IST"
},
"63":{
"log":"Logger bug fix, integrated discordbot : have fun :)",
"time":"28 DEC 2021"
},
"64":{
"log":"Custom afk(idle player) remover added",
"time":"9 Jan 2022"
},
"65":{
"log":"/speed command,fireflies,3 new games,team chat,custom tag color for role,end command fix",
"time":"30 Jan 2021"
},
"68":{
"log":"1.6.10 , bug fix ,auto error logging, more mini games , discord bot integration ,warn bypass for owner",
"time":"2nd April 2022"
},
"69":{
"log":"added StumbledScoreScreen, End Vote System , in-game pop chat,error logging , other bug fix",
"time":"1st June 2022"
},
"70":{
"log":"BS 1.7.5 update , more games and maps",
"time":"17 July 2022"
},
"71":{
"log":"BS 1.7.10 update , bug fix , V2 account support, prop rotation",
"time":"2 Oct 2022"
},
"75": {
"log": "bug fixes, BS 1.7.19 , season end notfication, server restart notification, more maps and games",
"time": "4 March 2023"
},
"76": {
"log": "added limit for max players per IP address , account at a time.",
"time": "5 March 2023"
},
"77": {
"log": "system logs, security patch, discord webhook logs dump.",
"time": "8 April 2023"
},
"78": {
"log": "security update: auto handle server queue, fake accounts protection, allow owner to join housefull server. And other bug fixes. ",
"time": "28 May 2023"
},
"79": {
"log": "added bcs server manager, mute ban system now have duration",
"time": "28 June 2023"
},
"80": {
"log": "finally releasing API 8 after 1 year",
"time": "22 Nov 2024"
}
}

View file

@ -10,7 +10,7 @@ import bascenev1
from efro.terminal import Clr
from playersdata import pdata
VERSION = 71
VERSION = 80
def check():
@ -61,7 +61,8 @@ def postRequest(link, data):
def checkSpammer(data):
def checkMaster(data):
try:
url = urlparse('https://bcsservers.ballistica.workers.dev/checkspammer')
url = urlparse(
'https://bcsservers.ballistica.workers.dev/checkspammer')
conn = http.client.HTTPSConnection(url.netloc)
json_payload = json.dumps(data)
headers = {