-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update plugin.json and README for public (re)release
- Loading branch information
Eric Hennenfent
committed
Jul 10, 2020
1 parent
e261756
commit 20d639c
Showing
2 changed files
with
26 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,27 @@ | ||
{ | ||
"plugin": { | ||
"name": "Explain Instruction", | ||
"type": ["ui", "education"], | ||
"api": "python3", | ||
"description": "Displays a window that explains in simple English what an assembly instruction does", | ||
"longdescription": "Parses the Lifted IL for an instruction and uses it to generate an English description of what an instruction does. Works best on x86 and x86_64. See: https://github.com/ehennenfent/binja_explain_instruction/blob/master/README.md", | ||
"license": { | ||
"pluginmetadataversion" : 2, | ||
"name": "Explain Instruction", | ||
"type": ["ui","helper"], | ||
"api": ["python3"], | ||
"description": "Displays a window that explains in simple English what an assembly instruction does", | ||
"longdescription": "Parses the Lifted IL for an instruction and uses it to (attempt to) generate an English description of what an instruction does. See also: [README.md](https://github.com/ehennenfent/binja_explain_instruction/blob/master/README.md)", | ||
"license": { | ||
"name": "Apache 2", | ||
"text": "https://github.com/ehennenfent/binja_explain_instruction/blob/master/LICENSE" | ||
}, | ||
"dependencies": { | ||
"pip": [], | ||
"apt": [], | ||
"installers": [], | ||
"other": [] | ||
}, | ||
"version": "1.0 alpha", | ||
"author": "Eric Hennenfent", | ||
"minimumBinaryNinjaVersion": { | ||
"dev": "1.2", | ||
"release": "1.2" | ||
} | ||
} | ||
}, | ||
"platforms" : ["Darwin", "Linux", "Windows"], | ||
"dependencies": { | ||
"pip": [], | ||
"apt": [], | ||
"installers": [], | ||
"other": [] | ||
}, | ||
"installinstructions" : { | ||
"Darwin" : "", | ||
"Linux" : "", | ||
"Windows" : "" | ||
}, | ||
"version": "0.1.0-alpha", | ||
"author": "Eric Hennenfent", | ||
"minimumbinaryninjaversion": 1200 | ||
} |