Skip to content

Commit 57f3253

Browse files
committed
support for qt6, thumb2 support, improved attaching and small error handling improvements
1 parent 5e69846 commit 57f3253

File tree

2 files changed

+35
-31
lines changed

2 files changed

+35
-31
lines changed

README.md

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Debugger (1.1)
1+
# Debugger (v1.3.3)
22
Author: **Vector35**
33

44
_Native debugger support_
@@ -12,6 +12,9 @@ Debug Windows, Linux, and MacOS targets from within Binary Ninja.
1212
![](https://github.com/Vector35/debugger/blob/master/media/gui.png?raw=true)
1313
![](https://github.com/Vector35/debugger/blob/master/media/cli.png?raw=true)
1414

15+
16+
17+
1518
## Installation Instructions
1619

1720
### Darwin
@@ -30,12 +33,12 @@ To install this manually, please see the "Using Plugins" section of the [Getting
3033

3134
This plugin requires the following minimum version of Binary Ninja:
3235

33-
* 1.3.2085
36+
* 2085
37+
3438

3539
## License
3640

3741
This plugin is released under a MIT license.
38-
3942
## Metadata Version
4043

4144
2

plugin.json

+29-28
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,30 @@
11
{
2-
"pluginmetadataversion": 2,
3-
"name": "Debugger",
4-
"author": "Vector35",
5-
"type": [
6-
"ui","helper"
7-
],
8-
"api": [
9-
"python3"
10-
],
11-
"description": "Native debugger support",
12-
"longdescription": "Debug Windows, Linux, and MacOS targets from within Binary Ninja.\n\n### Screenshots\n\n![](https://github.com/Vector35/debugger/blob/master/media/gui.png?raw=true)\n![](https://github.com/Vector35/debugger/blob/master/media/cli.png?raw=true)\n\n",
13-
"license": {
14-
"name": "MIT",
15-
"text": "Copyright 2020 Vector35\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."
16-
},
17-
"platforms": [
18-
"Darwin",
19-
"Windows",
20-
"Linux"
21-
],
22-
"installinstructions": {
23-
"Darwin": "To install this manually, please see the \"Using Plugins\" section of the [Getting Started Guide](https://docs.binary.ninja/getting-started.html#using-plugins). Or use Binary Ninja's built in plugin manager.",
24-
"Windows": "To install this manually, please see the \"Using Plugins\" section of the [Getting Started Guide](https://docs.binary.ninja/getting-started.html#using-plugins). Or use Binary Ninja's built in plugin manager.",
25-
"Linux": "To install this manually, please see the \"Using Plugins\" section of the [Getting Started Guide](https://docs.binary.ninja/getting-started.html#using-plugins). Or use Binary Ninja's built in plugin manager."
26-
},
27-
"version": "1.3.2",
28-
"minimumbinaryninjaversion": 2085
29-
}
2+
"pluginmetadataversion": 2,
3+
"name": "Debugger",
4+
"author": "Vector35",
5+
"type": [
6+
"ui",
7+
"helper"
8+
],
9+
"api": [
10+
"python3"
11+
],
12+
"description": "Native debugger support",
13+
"longdescription": "Debug Windows, Linux, and MacOS targets from within Binary Ninja.\n\n### Screenshots\n\n![](https://github.com/Vector35/debugger/blob/master/media/gui.png?raw=true)\n![](https://github.com/Vector35/debugger/blob/master/media/cli.png?raw=true)\n\n",
14+
"license": {
15+
"name": "MIT",
16+
"text": "Copyright 2020 Vector35\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."
17+
},
18+
"platforms": [
19+
"Darwin",
20+
"Windows",
21+
"Linux"
22+
],
23+
"installinstructions": {
24+
"Darwin": "To install this manually, please see the \"Using Plugins\" section of the [Getting Started Guide](https://docs.binary.ninja/getting-started.html#using-plugins). Or use Binary Ninja's built in plugin manager.",
25+
"Windows": "To install this manually, please see the \"Using Plugins\" section of the [Getting Started Guide](https://docs.binary.ninja/getting-started.html#using-plugins). Or use Binary Ninja's built in plugin manager.",
26+
"Linux": "To install this manually, please see the \"Using Plugins\" section of the [Getting Started Guide](https://docs.binary.ninja/getting-started.html#using-plugins). Or use Binary Ninja's built in plugin manager."
27+
},
28+
"version": "1.3.3",
29+
"minimumbinaryninjaversion": 2085
30+
}

0 commit comments

Comments
 (0)