From 5517ffcb1412e550a72460b563cceec8ef5f2c0f Mon Sep 17 00:00:00 2001 From: "Gerardo Fdez." <49400257+gerardofn@users.noreply.github.com> Date: Tue, 3 Feb 2026 10:33:42 +0000 Subject: [PATCH] Added support for configuration via the IDA Pro plugin manager (kevimuoz). --- README.md | 2 ++ VERSION | 2 +- ida-plugin.json | 2 +- plugin/virustotal/vt_ida/plugin_loader.py | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5129167..c389c06 100644 --- a/README.md +++ b/README.md @@ -116,6 +116,8 @@ While other architectures may work, they have not been officially tested. Raw by Check IDA Pro's output window for any message that may need your attention. ## Changelog + +- v1.08 : Added support for configuration via the IDA Pro plugin manager (kevimuoz). - v1.07 : Improved error handling, now CodeInsight works with other CPU architectures identified by IDA Pro. - v1.06 : Updated plugin metadata to support HCLI Plugin Manager ecosystem. - v1.05 : Fixes crash when Code Insight returns an invalid response. diff --git a/VERSION b/VERSION index a2a169c..6fa1e5f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.07 \ No newline at end of file +1.08 \ No newline at end of file diff --git a/ida-plugin.json b/ida-plugin.json index bbc0030..719a4eb 100644 --- a/ida-plugin.json +++ b/ida-plugin.json @@ -3,7 +3,7 @@ "plugin": { "name": "vt-ida-plugin", "entryPoint": "plugin/vt.py", - "version": "1.0.7", + "version": "1.0.8", "idaVersions": ">=8", "description": "Integrates VirusTotal's powerful analysis capabilities directly into your reverse engineering workflow.", "license": "Apache 2.0", diff --git a/plugin/virustotal/vt_ida/plugin_loader.py b/plugin/virustotal/vt_ida/plugin_loader.py index 65cde13..071bf76 100644 --- a/plugin/virustotal/vt_ida/plugin_loader.py +++ b/plugin/virustotal/vt_ida/plugin_loader.py @@ -38,7 +38,7 @@ except ImportError: import configparser -VT_IDA_PLUGIN_VERSION = '1.07' +VT_IDA_PLUGIN_VERSION = '1.08' widget_panel = VTPanel() if config.DEBUG: