Skip to content

Commit 500cfc3

Browse files
authored
add ida-plugin.json, bump version (#2)
1 parent 939952d commit 500cfc3

File tree

2 files changed

+30
-1
lines changed

2 files changed

+30
-1
lines changed

ida-plugin.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"IDAMetadataDescriptorVersion": 1,
3+
"plugin": {
4+
"name": "idapcode",
5+
"entryPoint": "idapcode.py",
6+
"version": "1.0.0",
7+
"idaVersions": ">=9.0",
8+
"urls": {
9+
"repository": "https://github.com/binarly-io/idapcode"
10+
},
11+
"authors": [
12+
{
13+
"name": "yeggor",
14+
"email": "[email protected]"
15+
}
16+
],
17+
"description": "IDA plugin that displays the P-code for the current function",
18+
"platforms": [
19+
"windows-x86_64",
20+
"linux-x86_64",
21+
"macos-x86_64",
22+
"macos-aarch64"
23+
],
24+
"license": "MIT OR Apache-2.0",
25+
"categories": ["ui-ux-and-visualization"],
26+
"keywords": ["ghidra", "p-code", "pypcode", "angr"],
27+
"pythonDependencies": ["pypcode~=3.3.3"]
28+
}
29+
}

idapcode.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
NAME = "idapcode"
1414

15-
__version__ = "0.0.2"
15+
__version__ = "1.0.0"
1616

1717
HELP_MESSAGE = "Display P-Code for current function"
1818
COMMENT_MESSAGE = HELP_MESSAGE

0 commit comments

Comments
 (0)