Skip to content

Commit 6ee5917

Browse files
committed
version bump, staging final tweaks for release
1 parent 3691846 commit 6ee5917

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

.github/workflows/package-plugin.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
package:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v2
9+
- uses: actions/checkout@v4
1010

1111
- name: Download workflow artifact
1212
uses: dawidd6/action-download-artifact@v6

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Special thanks to [Hex-Rays](https://hex-rays.com/) for supporting the developme
1212

1313
## Releases
1414

15+
* v0.2 -- Important bugfixes, IDA 9 compatibility
1516
* v0.1 -- Initial release
1617

1718
# Installation

plugins/patching/core.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
class PatchingCore(object):
3838

3939
PLUGIN_NAME = 'Patching'
40-
PLUGIN_VERSION = '0.2.0-DEV'
40+
PLUGIN_VERSION = '0.2.0'
4141
PLUGIN_AUTHORS = 'Markus Gaasedelen'
4242
PLUGIN_DATE = '2024'
4343

plugins/patching/ui/preview.py

-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import ida_nalt
21
import ida_name
32
import ida_bytes
43
import ida_lines
@@ -228,7 +227,6 @@ def _refresh_lines(self):
228227
"""
229228
instructions, current_address = [], self._address_origin
230229

231-
IMAGEBASE = ida_nalt.get_imagebase()
232230
PREV_INSTRUCTIONS = 50
233231
NEXT_INSTRUCTIONS = 50
234232
MAX_PREVIEW_BYTES = self.core.assembler.MAX_PREVIEW_BYTES

0 commit comments

Comments
 (0)