File tree 4 files changed +3
-4
lines changed
4 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 6
6
package :
7
7
runs-on : ubuntu-latest
8
8
steps :
9
- - uses : actions/checkout@v2
9
+ - uses : actions/checkout@v4
10
10
11
11
- name : Download workflow artifact
12
12
uses : dawidd6/action-download-artifact@v6
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ Special thanks to [Hex-Rays](https://hex-rays.com/) for supporting the developme
12
12
13
13
## Releases
14
14
15
+ * v0.2 -- Important bugfixes, IDA 9 compatibility
15
16
* v0.1 -- Initial release
16
17
17
18
# Installation
Original file line number Diff line number Diff line change 37
37
class PatchingCore (object ):
38
38
39
39
PLUGIN_NAME = 'Patching'
40
- PLUGIN_VERSION = '0.2.0-DEV '
40
+ PLUGIN_VERSION = '0.2.0'
41
41
PLUGIN_AUTHORS = 'Markus Gaasedelen'
42
42
PLUGIN_DATE = '2024'
43
43
Original file line number Diff line number Diff line change 1
- import ida_nalt
2
1
import ida_name
3
2
import ida_bytes
4
3
import ida_lines
@@ -228,7 +227,6 @@ def _refresh_lines(self):
228
227
"""
229
228
instructions , current_address = [], self ._address_origin
230
229
231
- IMAGEBASE = ida_nalt .get_imagebase ()
232
230
PREV_INSTRUCTIONS = 50
233
231
NEXT_INSTRUCTIONS = 50
234
232
MAX_PREVIEW_BYTES = self .core .assembler .MAX_PREVIEW_BYTES
You can’t perform that action at this time.
0 commit comments