GP-3490: Fixing GhidraDev required versions

This commit is contained in:
Ryan Kurtz 2024-07-29 09:07:07 -04:00
parent 80fb47dda8
commit dfe5fb992d
2 changed files with 7 additions and 6 deletions

View file

@ -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.

View file

@ -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;
}
}