Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.07
1.08
2 changes: 1 addition & 1 deletion ida-plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion plugin/virustotal/vt_ida/plugin_loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down