Skip to content

Commit 59b51a6

Browse files
author
Josh Watson
committed
Adding plugin.json and README.md updates for Plugin Manager
1 parent 8dbf9e1 commit 59b51a6

File tree

2 files changed

+29
-19
lines changed

2 files changed

+29
-19
lines changed

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# MSP430 Architecture Plugin (v0.3)
1+
# MSP430 Architecture Plugin (v0.4)
22
Author: **Josh Watson**
33

44
_A disassembler and lifter for the MSP430 architecture._
@@ -11,11 +11,15 @@ To install this plugin, navigate to your Binary Ninja plugins directory, and run
1111

1212
```git clone https://github.com/joshwatson/binaryninja-msp430.git msp430```
1313

14+
Alternatively, clone the repo whereever you want, and add a symbolic link in your plugins directory.
15+
16+
Alternatively-Alternatively, use Binary Ninja's [Plugin Manager](https://binary.ninja/2019/07/04/plugin-manager-2.0.html) to install it.
17+
1418
## Minimum Version
1519

1620
This plugin requires the following minimum version of Binary Ninja:
1721

18-
* release - 1.1.776
22+
* release - 1.1.1689
1923

2024
## License
2125

plugin.json

Lines changed: 23 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,24 @@
11
{
2-
"plugin": {
3-
"name": "MSP430 Architecture Plugin",
4-
"type": ["architecture"],
5-
"api": "python2",
6-
"description": "A disassembler and lifter for the MSP430 architecture.",
7-
"longdescription": "This plugin disassembles MSP430 assembly code and generates LLIL.\n\nTo install this plugin, navigate to your Binary Ninja plugins directory, and run\n\n```git clone https://github.com/joshwatson/binaryninja-msp430.git msp430```\n\nThen create a python file called `msp430.py` with the contents\n\n```import msp430```",
8-
"license": {
9-
"name": "MIT",
10-
"text": "Copyright (c) 2016 Josh Watson.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE."
11-
},
12-
"version": "0.3",
13-
"author": "Josh Watson",
14-
"minimumBinaryNinjaVersion": {
15-
"release": "1.1.922"
16-
}
17-
}
18-
}
2+
"pluginmetadataversion": 2,
3+
"name": "msp430 Architecture",
4+
"type": ["architecture" ],
5+
"api": ["python2", "python3"],
6+
"description": "MSP430 Architecture Plugin for Binary Ninja",
7+
"longdescription": "This plugin implements the MSP430 architecture disassembler and lifter for Binary Ninja.",
8+
"license": {
9+
"name": "MIT",
10+
"text": "Copyright (c) 2017 Josh Watson\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE."
11+
12+
},
13+
"platforms": ["Windows", "Linux", "Darwin"],
14+
"installinstructions" : {
15+
"Windows":"",
16+
"Linux":"",
17+
"Darwin":""
18+
},
19+
"dependencies": {
20+
},
21+
"version": "0.4",
22+
"author": "Josh Watson",
23+
"minimumbinaryninjaversion": 1689
24+
}

0 commit comments

Comments
 (0)