Skip to content

Commit

Permalink
Release version 0.5.0.
Browse files Browse the repository at this point in the history
NOTE: The previous 1.0.0 was a typo.
  • Loading branch information
meadori-cs committed Jun 30, 2020
1 parent 8548f49 commit 9f17b2f
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 2 deletions.
30 changes: 29 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,35 @@ This is a plugin for disassembling and lifting WASM images.

This plugin requires the following minimum version of Binary Ninja:

* dev - 1.1.1344
* 2170

## Installation

First install the necessary Python dependencies:

```
$ pip install -r requirements.txt
```

Then clone the plugin:

```
git clone https://github.com/CarveSystems/binjawa.git
```

and link the plugin into your Binary Ninja plugin directory:

### OS X

```
ln -s <clone_path>/binjawa ~/Library/Application\ Support/Binary\ Ninja/plugins/binjawa
```

### Linux

```
ln -s <clone_path>/binjawa ~/.binaryninja/plugins/binjawa
```

## License

Expand Down
2 changes: 1 addition & 1 deletion plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"name": "MIT",
"text": "Copyright (c) 2019 Meador Inge\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."
},
"version": "1.0.0",
"version": "0.5.0",
"author": "Meador Inge",
"minimumBinaryNinjaVersion": 2170
}
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
wasamole==0.5.0

0 comments on commit 9f17b2f

Please sign in to comment.