add counts to ByFileNode and ByBINNode

This commit is contained in:
jmillman 2016-07-19 15:02:39 -04:00
commit ba308fb5da
6 changed files with 24 additions and 10 deletions

View File

@ -185,6 +185,9 @@ public final class OpenTimelineAction extends CallableSystemAction implements Pr
*/
@Override
public Component getToolbarPresenter() {
ImageIcon icon = new ImageIcon(getClass().getResource("images/btn_icon_timeline_colorized_26.png")); //NON-NLS
toolbarButton.setIcon(icon);
toolbarButton.setText(this.getName());
return toolbarButton;
}
}

View File

@ -1207,6 +1207,15 @@ public class Server {
}
/**
* Get the name of the core
*
* @return the String name of the core
*/
String getName() {
return name;
}
private QueryResponse query(SolrQuery sq) throws SolrServerException {
return solrCore.query(sq);
}

View File

@ -1,18 +1,18 @@
---------------- VERSION 4.1.0 --------------
Improvements:
- New list view in Timeline tool
- VMWare virtual machine files (vmdk) and Microsoft Virtual Hard Drives (vhd) can be added as data sources.
- New core ingest module detects vmdk and vhd files embedded in other data sources and adds them as data sources.
- Text associated with artifacts posted to the blackboard is indexed and searched for keywords.
- Custom (user-defined) blackboard artifact and attribute types displayed in UI and included in reports.
- File size and MIME type conditions can be specified for interesting files rules.
- File size and MIME type conditions can be specified for file search by attributes.
- Custom (user-defined) blackboard artifact and attribute types are displayed in the UI and included in reports.
- Additional Autopsy-defined custom file type definitions for assorted media file types have been added.
- The File Metadata content viewer displays MIME type.
- File size and MIME type conditions can be specified for interesting files set membership rules.
- File size and MIME type conditions can be specified for file searches by attributes.
- Local/GMT time preference is used in reports.
- User has option to choose display name for logical/local file set data sources.
- Global settings panel behavior is more consistent and the panels handle resizing better.
- Additional Autopsy-defined custom file type definitions for assorted media file types have been added.
- The precedence of user-defined custom file type definitions has been restored.
- The File Metadata content viewer displays MIME type.
- Virtual directories can be tagged.
- Improved KML reports that include all geospatial artifacts posted to the blackboard.
- Assorted bug fixes and minor enhancements.
---------------- VERSION 4.0.0 --------------

View File

@ -1,5 +1,5 @@
#Updated by build script
#Mon, 22 Feb 2016 16:37:47 -0500
#Mon, 18 Jul 2016 17:58:06 -0400
LBL_splash_window_title=Starting Autopsy
SPLASH_HEIGHT=314
SPLASH_WIDTH=538

View File

@ -1,4 +1,4 @@
#Updated by build script
#Mon, 22 Feb 2016 16:37:47 -0500
#Mon, 18 Jul 2016 17:58:06 -0400
CTL_MainWindow_Title=Autopsy 4.1.0
CTL_MainWindow_Title_No_Project=Autopsy 4.1.0

View File

@ -21,7 +21,9 @@ The keyword search configuration dialog has three tabs, each with it's own purpo
\li The String Extraction tab is used to enable language scripts and extraction type.
\li The General tab is used to configure the ingest timings and display information.
To create a list, select the 'New List' button and choose a name for the new Keyword List. Once the list has been created, keywords can be added to it. Regular expressions are supported using Java Regex Syntax. Lists can be added to the keyword search ingest process; searches will happen at regular intervals as content is added to the index.
To create a list, select the 'New List' button and choose a name for the new Keyword List. Once the list has been created, keywords can be added to it. Lists can be added to the keyword search ingest process; searches will happen at regular intervals as content is added to the index.
Regular expressions are supported using Java Regex Syntax, with one caveat: Solr treats regular expressions as if they begin and end with the anchoring tags "^" and "$", which match the start and the end of a string respectively. If you do not want this behavior, you can put .* at the start and/or end of the regex.
<b>List Import and Export</b> \n
Autopsy supports importing Encase tab-delimited lists as well as lists created previously with Autopsy. For Encase lists, folder structure and hierarchy is currently ignored. This will be fixed in a future version. There is currently no way to export lists for use with Encase. This will also be added in future releases.