Merge pull request #6351 from sleuthkit/release-4.17.0

Merge release-4.17.0 into develop
This commit is contained in:
Richard Cordovano 2020-09-28 16:55:28 -04:00 committed by GitHub
commit 58a0470a80
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 2 deletions

View File

@ -173,7 +173,7 @@ class UnpackagePortableCaseProgressDialog extends javax.swing.JDialog implements
throw new TskCoreException("Error finding 7-Zip executable"); // NON-NLS
}
String outputFolderSwitch = "-o" + String.format("\"%s\"",outputFolder); // NON-NLS
String outputFolderSwitch = String.format("\"-o%s\"",outputFolder); // NON-NLS
ProcessBuilder procBuilder = new ProcessBuilder();
procBuilder.command(
String.format("\"%s\"",sevenZipExe.getAbsolutePath()),

View File

@ -83,6 +83,7 @@ public class PortableCaseReportModuleSettings implements ReportModuleSettings {
this.chunkSize = ChunkSize.NONE;
this.allTagsSelected = true;
this.allSetsSelected = true;
this.shouldIncludeApplication = false;
}
PortableCaseReportModuleSettings(List<String> setNames, List<TagName> tagNames,
@ -93,6 +94,7 @@ public class PortableCaseReportModuleSettings implements ReportModuleSettings {
this.chunkSize = chunkSize;
this.allTagsSelected = allTagsSelected;
this.allSetsSelected = allSetsSelected;
this.shouldIncludeApplication = false;
}
@Override

View File

@ -59,7 +59,7 @@ that exist in a location that Autopsy can understand. To add support for more la
and move them to the right location. The following steps breakdown this process for you:
<ol>
<li>Navigate to https://github.com/tesseract-ocr/tesseract/wiki/Data-Files.
<li>Navigate to https://tesseract-ocr.github.io/tessdoc/Data-Files.
<li>Under the section titled "Data Files for Version 4.00 (November 29, 2016)" you will find a table containing files that represent each language. These files have the extension ".traineddata".
<li>To download the desired language, click on the links in the far right-hand column of the table. You may download as many as you like. Note that you must only choose from this table. Language files under any other sections are not guaranteed to work in Autopsy.
<li>Once you've downloaded your language files, simply drag and drop them into the "AppData\Roaming\autopsy\ocr_language_packs" folder under your user folder.