From 3d3b7a7af83792e2add54527c0ff38f1332e4fc4 Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Fri, 1 Nov 2024 19:09:01 +0100 Subject: [PATCH] chore: Use tables in configuration for readability --- configuration.example.toml | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/configuration.example.toml b/configuration.example.toml index 5314b96..3b849db 100644 --- a/configuration.example.toml +++ b/configuration.example.toml @@ -1,6 +1,3 @@ -organization = "revanced" -patches = { repository = "revanced-patches", asset-regex = "jar$", signature-asset-regex = "asc$", public-key-file = "patches-public-key.asc", public-key-id = 0 } -manager = { repository = "revanced-manager", asset-regex = "apk$" } api-version = 1 cors-allowed-hosts = [ "revanced.app", @@ -10,8 +7,21 @@ endpoint = "https://api.revanced.app" old-api-endpoint = "https://old-api.revanced.app" static-files-path = "static/root" versioned-static-files-path = "static/versioned" -about-json-file-path = "about.json" backend-service-name = "GitHub" +about-json-file-path = "about.json" +organization = "revanced" + +[patches] +repository = "revanced-patches" +asset-regex = "jar$" +signature-asset-regex = "asc$" +public-key-file = "static/root/keys.asc" +public-key-id = 3897925568445097277 + +[manager] +repository = "revanced-manager" +asset-regex = "apk$" + [contributors-repositories] revanced-patcher = "ReVanced Patcher" revanced-patches = "ReVanced Patches"