Skip to content

Commit

Permalink
Merge pull request #11 from 0xB9/3.2.0
Browse files Browse the repository at this point in the history
3.2.0 update
  • Loading branch information
0xB9 authored Dec 9, 2023
2 parents 3ea5aa1 + 71a963f commit 3ad951e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions scan.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/python
from huepy import * #pip install huepy
from plugins import *
from version_check import *
from utils.plugins import *
from utils.version_check import *
import requests
import time

Expand Down Expand Up @@ -32,8 +32,8 @@ def close():
print (run(lightgreen("Scanning-> ") + bold(red(site))))
print ("-"*60)

def connection_status(site, index_file):
response = requests.head(f"{site}/inc/plugins/{index_file}")
def connection_status(site, plugin_file):
response = requests.head(f"{site}/inc/plugins/{plugin_file}")
return response.status_code

def scan(site, upload):
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion version_check.py → utils/version_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import requests
import json

currentVersion = "v3.1.1"
currentVersion = "v3.2.0"
repo = "https://api.github.com/repos/0xB9/MyBBscan/releases/latest"

response = requests.get(repo)
Expand Down

0 comments on commit 3ad951e

Please sign in to comment.