From aca233a5874b5d193b285fae5e0b2f8f0c88cfc6 Mon Sep 17 00:00:00 2001 From: Richard Cordovano Date: Mon, 25 Jun 2018 17:18:01 -0400 Subject: [PATCH 1/6] Add dummy GSTVideoPanel class for VT backwards compatibility --- .../autopsy/corecomponents/GSTVideoPanel.java | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100755 Core/src/org/sleuthkit/autopsy/corecomponents/GSTVideoPanel.java diff --git a/Core/src/org/sleuthkit/autopsy/corecomponents/GSTVideoPanel.java b/Core/src/org/sleuthkit/autopsy/corecomponents/GSTVideoPanel.java new file mode 100755 index 0000000000..117ab3ae87 --- /dev/null +++ b/Core/src/org/sleuthkit/autopsy/corecomponents/GSTVideoPanel.java @@ -0,0 +1,32 @@ +/* + * Autopsy Forensic Browser + * + * Copyright 2018 Basis Technology Corp. + * Contact: carrier sleuthkit org + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.sleuthkit.autopsy.corecomponents; + +/** + * This class exists to support backwards compatibility of an erroneous call to + * Logger.getLogger(OpenCVFrameCapture.class.getName()) in + * OpenCVFrameCapture.java in an older version of the Video Triage Net Beans + * Module. It should be removed when the Video Triage NBM changes its dependency + * on the Autopsy-Core to a major rlease version greater than 10 and a + * specification version greater than 10. + */ +@Deprecated +public class GSTVideoPanel { + +} From 9e7a2739315a2997852051fc7e48f2a13d9c5c82 Mon Sep 17 00:00:00 2001 From: Richard Cordovano Date: Mon, 25 Jun 2018 17:19:39 -0400 Subject: [PATCH 2/6] Add dummy GSTVideoPanel class for VT backwards compatibility --- .../org/sleuthkit/autopsy/corecomponents/GSTVideoPanel.java | 2 +- .../core.jar/org/netbeans/core/startup/Bundle.properties | 4 ++-- .../org/netbeans/core/windows/view/ui/Bundle.properties | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/corecomponents/GSTVideoPanel.java b/Core/src/org/sleuthkit/autopsy/corecomponents/GSTVideoPanel.java index 117ab3ae87..00822c77a3 100755 --- a/Core/src/org/sleuthkit/autopsy/corecomponents/GSTVideoPanel.java +++ b/Core/src/org/sleuthkit/autopsy/corecomponents/GSTVideoPanel.java @@ -23,7 +23,7 @@ package org.sleuthkit.autopsy.corecomponents; * Logger.getLogger(OpenCVFrameCapture.class.getName()) in * OpenCVFrameCapture.java in an older version of the Video Triage Net Beans * Module. It should be removed when the Video Triage NBM changes its dependency - * on the Autopsy-Core to a major rlease version greater than 10 and a + * on the Autopsy-Core NBM to a major rlease version greater than 10 and a * specification version greater than 10. */ @Deprecated 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 741247d8d3..693f4b9f89 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 -#Fri, 15 Jun 2018 12:30:02 -0600 +#Mon, 25 Jun 2018 17:19:36 -0400 LBL_splash_window_title=Starting Autopsy SPLASH_HEIGHT=314 SPLASH_WIDTH=538 @@ -8,4 +8,4 @@ SplashRunningTextBounds=0,289,538,18 SplashRunningTextColor=0x0 SplashRunningTextFontSize=19 -currentVersion=Autopsy 4.7.0 +currentVersion=Autopsy 4.8.0 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 5e6893f50b..3de464ea54 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 -#Fri, 15 Jun 2018 12:30:02 -0600 -CTL_MainWindow_Title=Autopsy 4.7.0 -CTL_MainWindow_Title_No_Project=Autopsy 4.7.0 +#Mon, 25 Jun 2018 17:19:36 -0400 +CTL_MainWindow_Title=Autopsy 4.8.0 +CTL_MainWindow_Title_No_Project=Autopsy 4.8.0 From 404f6f76a9dd8866bda325151f4fb3ecb2ffbf13 Mon Sep 17 00:00:00 2001 From: Richard Cordovano Date: Mon, 25 Jun 2018 17:20:18 -0400 Subject: [PATCH 3/6] Add dummy GSTVideoPanel class for VT backwards compatibility --- .../org/sleuthkit/autopsy/corecomponents/GSTVideoPanel.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/corecomponents/GSTVideoPanel.java b/Core/src/org/sleuthkit/autopsy/corecomponents/GSTVideoPanel.java index 00822c77a3..2acde988c0 100755 --- a/Core/src/org/sleuthkit/autopsy/corecomponents/GSTVideoPanel.java +++ b/Core/src/org/sleuthkit/autopsy/corecomponents/GSTVideoPanel.java @@ -22,9 +22,9 @@ package org.sleuthkit.autopsy.corecomponents; * This class exists to support backwards compatibility of an erroneous call to * Logger.getLogger(OpenCVFrameCapture.class.getName()) in * OpenCVFrameCapture.java in an older version of the Video Triage Net Beans - * Module. It should be removed when the Video Triage NBM changes its dependency - * on the Autopsy-Core NBM to a major rlease version greater than 10 and a - * specification version greater than 10. + * Module (NBM). It should be removed when the Video Triage NBM changes its + * dependency on the Autopsy-Core NBM to a major rlease version greater than 10 + * and a specification version greater than 10. */ @Deprecated public class GSTVideoPanel { From aaa566b7b2a27a961d08406bc9eef5b0602d97b9 Mon Sep 17 00:00:00 2001 From: Richard Cordovano Date: Mon, 25 Jun 2018 17:21:29 -0400 Subject: [PATCH 4/6] Add dummy GSTVideoPanel class for VT backwards compatibility --- .../autopsy/corecomponents/GSTVideoPanel.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/corecomponents/GSTVideoPanel.java b/Core/src/org/sleuthkit/autopsy/corecomponents/GSTVideoPanel.java index 2acde988c0..97bad0d5fd 100755 --- a/Core/src/org/sleuthkit/autopsy/corecomponents/GSTVideoPanel.java +++ b/Core/src/org/sleuthkit/autopsy/corecomponents/GSTVideoPanel.java @@ -20,11 +20,11 @@ package org.sleuthkit.autopsy.corecomponents; /** * This class exists to support backwards compatibility of an erroneous call to - * Logger.getLogger(OpenCVFrameCapture.class.getName()) in - * OpenCVFrameCapture.java in an older version of the Video Triage Net Beans - * Module (NBM). It should be removed when the Video Triage NBM changes its - * dependency on the Autopsy-Core NBM to a major rlease version greater than 10 - * and a specification version greater than 10. + * Logger.getLogger(GSTVideoPanel.class.getName()) in OpenCVFrameCapture.java in + * an older version of the Video Triage Net Beans Module (NBM). It should be + * removed when the Video Triage NBM changes its dependency on the Autopsy-Core + * NBM to a major rlease version greater than 10 and a specification version + * greater than 10. */ @Deprecated public class GSTVideoPanel { From dc4c538db21514999f9d3f53eefee82bf6032e16 Mon Sep 17 00:00:00 2001 From: Richard Cordovano Date: Mon, 25 Jun 2018 17:41:42 -0400 Subject: [PATCH 5/6] Add dummy GSTVideoPanel class for VT backwards compatibility --- .../org/sleuthkit/autopsy/corecomponents/GSTVideoPanel.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/corecomponents/GSTVideoPanel.java b/Core/src/org/sleuthkit/autopsy/corecomponents/GSTVideoPanel.java index 97bad0d5fd..294e26334c 100755 --- a/Core/src/org/sleuthkit/autopsy/corecomponents/GSTVideoPanel.java +++ b/Core/src/org/sleuthkit/autopsy/corecomponents/GSTVideoPanel.java @@ -22,9 +22,9 @@ package org.sleuthkit.autopsy.corecomponents; * This class exists to support backwards compatibility of an erroneous call to * Logger.getLogger(GSTVideoPanel.class.getName()) in OpenCVFrameCapture.java in * an older version of the Video Triage Net Beans Module (NBM). It should be - * removed when the Video Triage NBM changes its dependency on the Autopsy-Core - * NBM to a major rlease version greater than 10 and a specification version - * greater than 10. + * removed when the Video Triage NBM changes its version dependency on the + * Autopsy-Core NBM, which is currently set to major release version 10 and + * specification version 10. The Video Triage code has already been updated. */ @Deprecated public class GSTVideoPanel { From c875aa1f05b6461be5793422a8b299383b873259 Mon Sep 17 00:00:00 2001 From: Richard Cordovano Date: Mon, 25 Jun 2018 17:51:26 -0400 Subject: [PATCH 6/6] Add dummy GSTVideoPanel class for VT backwards compatibility --- .../org/sleuthkit/autopsy/corecomponents/GSTVideoPanel.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/corecomponents/GSTVideoPanel.java b/Core/src/org/sleuthkit/autopsy/corecomponents/GSTVideoPanel.java index 294e26334c..4c49490373 100755 --- a/Core/src/org/sleuthkit/autopsy/corecomponents/GSTVideoPanel.java +++ b/Core/src/org/sleuthkit/autopsy/corecomponents/GSTVideoPanel.java @@ -22,9 +22,8 @@ package org.sleuthkit.autopsy.corecomponents; * This class exists to support backwards compatibility of an erroneous call to * Logger.getLogger(GSTVideoPanel.class.getName()) in OpenCVFrameCapture.java in * an older version of the Video Triage Net Beans Module (NBM). It should be - * removed when the Video Triage NBM changes its version dependency on the - * Autopsy-Core NBM, which is currently set to major release version 10 and - * specification version 10. The Video Triage code has already been updated. + * removed when we are ready to stop supporting older Video Triage NBMs. The + * current Video Triage code has already been updated. */ @Deprecated public class GSTVideoPanel {