mirror of
https://github.com/SinTan1729/ReVancedBuilder.git
synced 2024-12-26 12:48:36 -06:00
doc: Clean the TODO tags
This commit is contained in:
parent
d760c511ba
commit
086effe1b1
3 changed files with 2 additions and 6 deletions
|
@ -85,7 +85,7 @@ def build_apps(appstate):
|
||||||
clean_exit(f"There was an error while building {pretty_name}!\n{e}", appstate)
|
clean_exit(f"There was an error while building {pretty_name}!\n{e}", appstate)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
os.rename(output_name+'.apk', output_name+'.apk') # TODO: Add timestamp here
|
os.rename(output_name+'.apk', output_name+'.apk')
|
||||||
except FileNotFoundError:
|
except FileNotFoundError:
|
||||||
clean_exit(f"There was an error while building {pretty_name}!", appstate)
|
clean_exit(f"There was an error while building {pretty_name}!", appstate)
|
||||||
|
|
|
@ -75,7 +75,6 @@ def send_notif(appstate, error=False):
|
||||||
print('Failed!' + str(e))
|
print('Failed!' + str(e))
|
||||||
|
|
||||||
case 'telegram':
|
case 'telegram':
|
||||||
# TODO: Finish this!
|
|
||||||
print('Sending notification through Telegram...')
|
print('Sending notification through Telegram...')
|
||||||
try:
|
try:
|
||||||
chat = config[entry]['chat']
|
chat = config[entry]['chat']
|
||||||
|
|
|
@ -19,9 +19,6 @@ from ReVancedBuilder.JAVABuilder import build_apps
|
||||||
from ReVancedBuilder.Notifications import send_notif
|
from ReVancedBuilder.Notifications import send_notif
|
||||||
from ReVancedBuilder.Cleanup import move_apps, clean_exit
|
from ReVancedBuilder.Cleanup import move_apps, clean_exit
|
||||||
|
|
||||||
# TODO: README
|
|
||||||
# TODO: PATCHES_GUIDE.md (maybe delete it?)
|
|
||||||
|
|
||||||
# Update the ReVanced tools, if needed
|
# Update the ReVanced tools, if needed
|
||||||
def update_tools(appstate):
|
def update_tools(appstate):
|
||||||
for item in ['revanced-cli', 'revanced-integrations', 'revanced-patches']:
|
for item in ['revanced-cli', 'revanced-integrations', 'revanced-patches']:
|
||||||
|
@ -191,4 +188,4 @@ elif flag != ['checkonly']:
|
||||||
# Delete the lockfile
|
# Delete the lockfile
|
||||||
os.remove('lockfile')
|
os.remove('lockfile')
|
||||||
|
|
||||||
sys.exit(0)
|
sys.exit(0)
|
||||||
|
|
Loading…
Reference in a new issue