diff --git a/Ingest/src/org/sleuthkit/autopsy/ingest/Bundle.properties b/Ingest/src/org/sleuthkit/autopsy/ingest/Bundle.properties
index 3c858798ba..222d33631d 100644
--- a/Ingest/src/org/sleuthkit/autopsy/ingest/Bundle.properties
+++ b/Ingest/src/org/sleuthkit/autopsy/ingest/Bundle.properties
@@ -20,8 +20,8 @@ IngestDialogPanel.freqSliderLabel.text=Refresh interval (minutes)
IngestDialogPanel.freqSliderLabel.toolTipText=null
IngestDialogPanel.freqSlider.toolTipText=Maximum time in minutes for ingest modules to refresh and report data to user.
Lower value presents data more frequently but may impact performance and lenghten the overall ingest run.
Higher value is improves performance, but data will be refreshed less frequently (recommended for an unattended run).
The value can be adjusted only when no ingest module is currently running
IngestMessageDetailsPanel.backButton.text=
-IngestMessageDetailsPanel.viewArtifactButton.text=View Artifact
-IngestMessageDetailsPanel.viewContentButton.text=View Content
+IngestMessageDetailsPanel.viewArtifactButton.text=Go to Result
+IngestMessageDetailsPanel.viewContentButton.text=Go to Directory
IngestMessagePanel.sortByLabel.text=Sort by:
IngestMessagePanel.sortByComboBox.toolTipText=Sort messages by time (chronological order) or message priority
IngestDialogPanel.advancedButton.text=Advanced
diff --git a/Ingest/src/org/sleuthkit/autopsy/ingest/IngestMessageDetailsPanel.form b/Ingest/src/org/sleuthkit/autopsy/ingest/IngestMessageDetailsPanel.form
index be1bc1e202..e6a0f06036 100644
--- a/Ingest/src/org/sleuthkit/autopsy/ingest/IngestMessageDetailsPanel.form
+++ b/Ingest/src/org/sleuthkit/autopsy/ingest/IngestMessageDetailsPanel.form
@@ -42,7 +42,7 @@
-
+
@@ -70,7 +70,7 @@
-
+
diff --git a/Ingest/src/org/sleuthkit/autopsy/ingest/IngestMessageDetailsPanel.java b/Ingest/src/org/sleuthkit/autopsy/ingest/IngestMessageDetailsPanel.java
index 6dcfdea207..ed2fca3f79 100644
--- a/Ingest/src/org/sleuthkit/autopsy/ingest/IngestMessageDetailsPanel.java
+++ b/Ingest/src/org/sleuthkit/autopsy/ingest/IngestMessageDetailsPanel.java
@@ -107,7 +107,7 @@ class IngestMessageDetailsPanel extends javax.swing.JPanel {
selectAllMenuItem.setText(org.openide.util.NbBundle.getMessage(IngestMessageDetailsPanel.class, "IngestMessageDetailsPanel.selectAllMenuItem.text")); // NOI18N
rightClickMenu.add(selectAllMenuItem);
- backButton.setIcon(new javax.swing.ImageIcon(getClass().getResource("/org/sleuthkit/autopsy/ingest/arrow_left.gif"))); // NOI18N
+ backButton.setIcon(new javax.swing.ImageIcon(getClass().getResource("/org/sleuthkit/autopsy/ingest/btn_step_back.png"))); // NOI18N
backButton.setText(org.openide.util.NbBundle.getMessage(IngestMessageDetailsPanel.class, "IngestMessageDetailsPanel.backButton.text")); // NOI18N
backButton.setAlignmentY(0.0F);
backButton.setHorizontalTextPosition(javax.swing.SwingConstants.CENTER);
@@ -152,7 +152,7 @@ class IngestMessageDetailsPanel extends javax.swing.JPanel {
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addComponent(backButton, javax.swing.GroupLayout.PREFERRED_SIZE, 23, javax.swing.GroupLayout.PREFERRED_SIZE)
- .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 153, Short.MAX_VALUE)
+ .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 147, Short.MAX_VALUE)
.addComponent(viewArtifactButton)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
.addComponent(viewContentButton))
diff --git a/Ingest/src/org/sleuthkit/autopsy/ingest/arrow_left.gif b/Ingest/src/org/sleuthkit/autopsy/ingest/arrow_left.gif
deleted file mode 100644
index d0d85dba4b..0000000000
Binary files a/Ingest/src/org/sleuthkit/autopsy/ingest/arrow_left.gif and /dev/null differ
diff --git a/Ingest/src/org/sleuthkit/autopsy/ingest/back-button.png b/Ingest/src/org/sleuthkit/autopsy/ingest/back-button.png
deleted file mode 100644
index b6c02aa3dd..0000000000
Binary files a/Ingest/src/org/sleuthkit/autopsy/ingest/back-button.png and /dev/null differ
diff --git a/Ingest/src/org/sleuthkit/autopsy/ingest/btn_step_back.png b/Ingest/src/org/sleuthkit/autopsy/ingest/btn_step_back.png
new file mode 100644
index 0000000000..b9d9ffe622
Binary files /dev/null and b/Ingest/src/org/sleuthkit/autopsy/ingest/btn_step_back.png differ
diff --git a/KNOWN_ISSUES.txt b/KNOWN_ISSUES.txt
index a7f2d71804..5ef40541e8 100644
--- a/KNOWN_ISSUES.txt
+++ b/KNOWN_ISSUES.txt
@@ -2,10 +2,19 @@ Known issues and limitations
We plan to address the following issues in future releases.
+General:
+- Only a single instance of the application can be executed at once. There is no check if another instance is already running. Running a second instance will cause issues.
+
+Case:
+- Closing a Case in certain situations when ingest is running or processing is done in the background may cause stability issues. If case cannot be cleanly closed, close the application.
+
Ingest:
-- Ingest can fail and cause unexpected behavior if "Add image" action is performed while ingest is running.
+- Ingest may fail and cause unexpected behavior if "Add image" action is performed while ingest is running.
+
+Hash DB:
+- Hash DB module does not currently search unallocated space and unallocated/deleted files,
Keyword search module:
-- Keyword search module does not currently search unallocated space,
-- Keyword search maximum size of files to be indexed and searched is 200MB,
-- Keyword search maximum size of unknown files to be searched is 10MB.
+- Keyword search module does not currently search unallocated space and unallocated/deleted files,
+- Keyword search maximum size of files to be indexed and searched is 100MB,
+- Keyword search maximum size of unknown files to be searched is 1MB.