From e3ebef81a8fb268afa7624b15bc1951095005d53 Mon Sep 17 00:00:00 2001 From: Nikhil Badyal Date: Thu, 27 Oct 2022 20:04:42 +0530 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Added=20option.toml=20support?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apks/options.toml | 6 ++++++ src/parser.py | 2 ++ 2 files changed, 8 insertions(+) create mode 100644 apks/options.toml diff --git a/apks/options.toml b/apks/options.toml new file mode 100644 index 0000000..a2b41da --- /dev/null +++ b/apks/options.toml @@ -0,0 +1,6 @@ +['website'] +websiteURL = 'https://t.me/revanced_apkss' +websiteSummary = 'Visit Revanced Builder Channel' +['website-music'] +websiteURL = 'https://t.me/revanced_apkss' +websiteSummary = 'Visit Revanced Builder Channel' diff --git a/src/parser.py b/src/parser.py index b98cdb8..aaeb7d9 100644 --- a/src/parser.py +++ b/src/parser.py @@ -96,6 +96,8 @@ class Parser(object): f"Re-{app}-{version}{output_prefix}output.apk", "--keystore", self.config.keystore_name, + "--options", + "options.toml", ] if is_experimental: logger.debug("Using experimental features")