Added "Environments" tab to Ghidra run configuration in GhidraDev.

This commit is contained in:
Ryan Kurtz 2019-08-05 11:46:33 -04:00
parent 34bf3b6585
commit 649e573a0d
3 changed files with 165 additions and 160 deletions

File diff suppressed because one or more lines are too long

View file

@ -62,6 +62,10 @@ change with future releases.</p>
<li> <li>
Prevented Ghidra projects from being created inside of a Ghidra installation directory. Prevented Ghidra projects from being created inside of a Ghidra installation directory.
</li> </li>
<li>
Added an <i>Environments</i> tab to the Ghidra run configuration for setting environment
variables when launching Ghidra.
</li>
</ul> </ul>
<p><u><b>2.0.1</b>:</u> Fixed exception that occurred when performing certain actions on a Ghidra <p><u><b>2.0.1</b>:</u> Fixed exception that occurred when performing certain actions on a Ghidra
project that was imported from a previously exported Archive File.</p> project that was imported from a previously exported Archive File.</p>

View file

@ -48,6 +48,7 @@ public class GhidraLaunchTabGroup extends AbstractLaunchConfigurationTabGroup {
tabs.add(getJavaMainTab()); tabs.add(getJavaMainTab());
tabs.add(getUserDefinedArgumentsTab()); tabs.add(getUserDefinedArgumentsTab());
tabs.add(new JavaClasspathTab()); tabs.add(new JavaClasspathTab());
tabs.add(new EnvironmentTab());
tabs.add(getCommonTab()); tabs.add(getCommonTab());
// Set the tabs // Set the tabs