1
0
mirror of https://github.com/elisspace/autopsy.git synced 2026-09-06 02:24:30 +00:00

Added 'Beta' to both the timeline window title and the 'Make Timeline' menu

entry.
This commit is contained in:
Tim McIver
2013-02-04 14:54:13 -05:00
parent 22e20cf006
commit 189adaad50
2 changed files with 3 additions and 4 deletions

View File

@@ -1,3 +1,2 @@
OpenIDE-Module-Name=Timeline
CTL_MakeTimeline=Make Timeline
CTL_MakeTimeline2=Make Timeline2
CTL_MakeTimeline="Make Timeline (Beta)"

View File

@@ -158,7 +158,7 @@ public class Simile2 extends CallableSystemAction implements Presenter.Toolbar,
private void customize() {
//Making the main frame *
jf = new JFrame(Case.getCurrentCase().getName() + " - Autopsy Timeline");
jf = new JFrame(Case.getCurrentCase().getName() + " - Autopsy Timeline (Beta)");
jf.setSize(Width_Frame, Height_Frame); //(Width, Height)
//JPanels are used as the cohesive glue that binds everything together.*/
@@ -998,7 +998,7 @@ public class Simile2 extends CallableSystemAction implements Presenter.Toolbar,
@Override
public String getName() {
return "Make Timeline";
return "Make Timeline (Beta)";
}
@Override