diff --git a/Core/src/org/sleuthkit/autopsy/timeline/OpenTimelineAction.java b/Core/src/org/sleuthkit/autopsy/timeline/OpenTimelineAction.java index 3c07e5df53..66e98c3567 100644 --- a/Core/src/org/sleuthkit/autopsy/timeline/OpenTimelineAction.java +++ b/Core/src/org/sleuthkit/autopsy/timeline/OpenTimelineAction.java @@ -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; } } diff --git a/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/Server.java b/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/Server.java index bb472a0f2a..cd9d1572c9 100644 --- a/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/Server.java +++ b/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/Server.java @@ -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); } diff --git a/NEWS.txt b/NEWS.txt index 3d7937e656..0d4d29606c 100644 --- a/NEWS.txt +++ b/NEWS.txt @@ -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 -------------- diff --git a/branding/core/core.jar/org/netbeans/core/startup/Bundle.properties b/branding/core/core.jar/org/netbeans/core/startup/Bundle.properties index 387cfb83e3..2eb10546c9 100644 --- a/branding/core/core.jar/org/netbeans/core/startup/Bundle.properties +++ b/branding/core/core.jar/org/netbeans/core/startup/Bundle.properties @@ -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 diff --git a/branding/modules/org-netbeans-core-windows.jar/org/netbeans/core/windows/view/ui/Bundle.properties b/branding/modules/org-netbeans-core-windows.jar/org/netbeans/core/windows/view/ui/Bundle.properties index eac00c4b67..468b249673 100644 --- a/branding/modules/org-netbeans-core-windows.jar/org/netbeans/core/windows/view/ui/Bundle.properties +++ b/branding/modules/org-netbeans-core-windows.jar/org/netbeans/core/windows/view/ui/Bundle.properties @@ -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 diff --git a/docs/doxygen-user/keyword_search.dox b/docs/doxygen-user/keyword_search.dox index ec880cac75..336996b1af 100644 --- a/docs/doxygen-user/keyword_search.dox +++ b/docs/doxygen-user/keyword_search.dox @@ -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. List Import and Export \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.