mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-06-02 03:17:47 +08:00
GP-3490: Fixing GhidraDev required versions
This commit is contained in:
@@ -57,8 +57,9 @@ change with future releases.</p>
|
||||
<p><u><b>4.0.0</b>:</u>
|
||||
<ul>
|
||||
<li>
|
||||
GhidraDev has been upgraded to be compatible with Ghidra 11.2 and later. Older versions of
|
||||
GhidraDev will report an error when trying to link against Ghidra 11.2 or later.
|
||||
GhidraDev has been upgraded to be compatible with Ghidra 11.2 and later. It is not backwards
|
||||
compatible with versions of Ghidra prior to 11.2. Older versions of GhidraDev will report an
|
||||
error when trying to link against Ghidra 11.2 or later.
|
||||
</li>
|
||||
<li>
|
||||
GhidraDev now requires Eclipse 2023-12 4.30 or later.
|
||||
|
||||
+2
-2
@@ -43,7 +43,7 @@ import utility.application.ApplicationLayout;
|
||||
public class GhidraProjectCreatorPreferencePage extends PreferencePage
|
||||
implements IWorkbenchPreferencePage {
|
||||
|
||||
private static ApplicationVersion MIN_GHIDRA_VERSION = new ApplicationVersion("9.1");
|
||||
private static ApplicationVersion MIN_GHIDRA_VERSION = new ApplicationVersion("11.2");
|
||||
|
||||
private Table table;
|
||||
private Button addButton;
|
||||
@@ -232,7 +232,7 @@ implements IWorkbenchPreferencePage {
|
||||
boolean layoutVersionError = false;
|
||||
try {
|
||||
int ver = Integer.parseInt(layoutVersion);
|
||||
if (ver < 1 || ver > 2) {
|
||||
if (ver < 1 || ver > 3) {
|
||||
layoutVersionError = true;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user