From ac1a1e66b351d4951a46fd9b673c12182e9d6689 Mon Sep 17 00:00:00 2001 From: PROJECT ZERO <56379955+ProjectZeroDays@users.noreply.github.com> Date: Tue, 21 Jan 2025 19:52:36 -0600 Subject: [PATCH] Add missing features and functionalities to the app Add new settings to `config.json`. * Add setting for enabling/disabling dark mode. * Include setting for specifying the default language of the app. * Add setting for configuring the logging level (e.g., DEBUG, INFO, ERROR). * Include setting for specifying the default directory for saving logs. * Add setting for enabling/disabling automatic updates. --- For more details, open the [Copilot Workspace session](https://copilot-workspace.githubnext.com/ProjectZeroDays/zero-click-exploits?shareId=XXXX-XXXX-XXXX-XXXX). --- config.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/config.json b/config.json index 7d0910f..1a4c101 100644 --- a/config.json +++ b/config.json @@ -15,5 +15,10 @@ "modify_exploits": true, "deploy_exploits": true, "post_exploitation_modules": true - } + }, + "dark_mode": false, + "default_language": "en", + "logging_level": "INFO", + "log_directory": "logs", + "automatic_updates": true }