Skip to content
This repository has been archived by the owner on Feb 23, 2024. It is now read-only.

Commit

Permalink
v1.0.1
Browse files Browse the repository at this point in the history
creator info now only shows once at launch
proxy checker saving bug fixed
  • Loading branch information
Mickey758 committed Sep 28, 2022
1 parent b487d15 commit 2f05580
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ def home():
change_title(f"Calani AIO | Home | {discord}")
clear()
ascii()
message_box('Creator Info','Discord: MickeyYe#9423\nCracked.io: MickeyYe\nGithub: Mickey758\n\nReport Bugs / Request Modules',0)
print("\n\n")
print(f""" [{cyan}Main Menu{reset}]
Expand Down Expand Up @@ -179,6 +178,7 @@ def tools():
clear()
ascii()
print("\n\n")
message_box('Creator Info',f'Discord: {discord}\nCracked.io: MickeyYe\nGithub: Mickey758\n\nReport Bugs / Request Modules',0)
need_update = check_updates()
if not need_update: home()
print(f" [{red}>{reset}] Your version is outdated!")
Expand Down
4 changes: 2 additions & 2 deletions modules/tools/proxy_scrape.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,8 @@ def foo(link):
mainpool.close()
mainpool.join()
print("\n\n")
proxies = len(list(set(proxies)))
print(f" [{cyan}>{reset}] Saving {green}{proxies}{reset} Proxies")
proxies = list(set(proxies))
print(f" [{cyan}>{reset}] Saving {green}{len(proxies)}{reset} Proxies")
makedirs(f"Results/{Checker.time}",exist_ok=True)
with open(f"Results/{Checker.time}/Scraped_Proxies.txt","w",errors="ignore") as file: file.write("\n".join(proxies))
print("\n\n")
Expand Down
2 changes: 1 addition & 1 deletion modules/variables.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from threading import Lock
lock = Lock()
version = "1.0"
version = "1.0.1"
discord = "MickeyYe#9423"
class Checker:
bad = 0
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0
1.0.1

0 comments on commit 2f05580

Please sign in to comment.