diff --git a/src/ReVancedBuilder/JAVABuilder.py b/src/ReVancedBuilder/JAVABuilder.py index a6021ad..f9a18bc 100644 --- a/src/ReVancedBuilder/JAVABuilder.py +++ b/src/ReVancedBuilder/JAVABuilder.py @@ -85,7 +85,7 @@ def build_apps(appstate): clean_exit(f"There was an error while building {pretty_name}!\n{e}", appstate) try: - os.rename(output_name+'.apk', output_name+'.apk') # TODO: Add timestamp here + os.rename(output_name+'.apk', output_name+'.apk') except FileNotFoundError: clean_exit(f"There was an error while building {pretty_name}!", appstate) \ No newline at end of file diff --git a/src/ReVancedBuilder/Notifications.py b/src/ReVancedBuilder/Notifications.py index 5c26370..8d577f2 100644 --- a/src/ReVancedBuilder/Notifications.py +++ b/src/ReVancedBuilder/Notifications.py @@ -75,7 +75,6 @@ def send_notif(appstate, error=False): print('Failed!' + str(e)) case 'telegram': - # TODO: Finish this! print('Sending notification through Telegram...') try: chat = config[entry]['chat'] diff --git a/src/ReVancedBuilder/ReVancedBuilder.py b/src/ReVancedBuilder/ReVancedBuilder.py index 311bf98..868f1c2 100755 --- a/src/ReVancedBuilder/ReVancedBuilder.py +++ b/src/ReVancedBuilder/ReVancedBuilder.py @@ -19,9 +19,6 @@ from ReVancedBuilder.JAVABuilder import build_apps from ReVancedBuilder.Notifications import send_notif from ReVancedBuilder.Cleanup import move_apps, clean_exit -# TODO: README -# TODO: PATCHES_GUIDE.md (maybe delete it?) - # Update the ReVanced tools, if needed def update_tools(appstate): for item in ['revanced-cli', 'revanced-integrations', 'revanced-patches']: @@ -191,4 +188,4 @@ elif flag != ['checkonly']: # Delete the lockfile os.remove('lockfile') -sys.exit(0) \ No newline at end of file +sys.exit(0)