From 3da17cddf0813d8867621b39141c5f4a7aeda137 Mon Sep 17 00:00:00 2001 From: Dick Fickling Date: Thu, 26 Apr 2012 13:26:47 -0400 Subject: [PATCH] Further build script change --- .../autopsy/keywordsearch/Bundle.properties | 54 +- .../KeywordSearchConfigurationAction.java | 2 +- .../KeywordSearchConfigurationPanel.java | 3 +- .../keywordsearch/KeywordSearchPanel.form | 2 +- .../keywordsearch/KeywordSearchPanel.java | 4 +- build-unix.xml | 4 + build-windows.xml | 27 + build.xml | 17 +- installer_autopsy/installer_autopsy.aip | 5074 +++++++++++++++++ .../i386/0.10.7/gstreamer.zip} | Bin 10 files changed, 5127 insertions(+), 60 deletions(-) create mode 100644 installer_autopsy/installer_autopsy.aip rename thirdparty/gstreamer/{windows.zip => windows/i386/0.10.7/gstreamer.zip} (100%) diff --git a/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/Bundle.properties b/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/Bundle.properties index 2479c5c782..2077c8e872 100755 --- a/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/Bundle.properties +++ b/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/Bundle.properties @@ -1,20 +1,8 @@ -CTL_KeywordSearchHistoryAction=Keyword Search History -CTL_KeywordSearchHistoryTopComponent=Keyword Search History Window -CTL_KeywordSearchListAction=Keyword List -CTL_KeywordSearchListImportExportAction=Keyword Lists -CTL_KeywordSearchListImportExportTopComponent=Keyword Lists Window -CTL_KeywordSearchListTopComponent=Keyword List -CTL_KeywordSearchTabsTopComponentAction=Keyword Search -CTL_KeywordSearchTabsTopComponentTopComponent=Keyword Search -HINT_KeywordSearchHistoryTopComponent=This is a Keyword Search History window -HINT_KeywordSearchListImportExportTopComponent=Keyword Search List Import Export window -HINT_KeywordSearchListTopComponent=Keyword Search List -HINT_KeywordSearchTabsTopComponentTopComponent=Keyword Search window OpenIDE-Module-Name=KeywordSearch +ListBundleName=Keyword Lists +ListBundleConfig=Keyword List Configuration IndexProgressPanel.statusText.text=Status text IndexProgressPanel.cancelButton.text=Cancel -KeywordSearchTopComponent.filesIndexedNameLabel.AccessibleContext.accessibleName=Files indexed: -KeywordSearchTopComponent.filesIndexedValLabel.AccessibleContext.accessibleName=- ExtractedContentPanel.hitLabel.text=Match: ExtractedContentPanel.hitCountLabel.text=- ExtractedContentPanel.hitOfLabel.text=of @@ -22,45 +10,8 @@ ExtractedContentPanel.hitTotalLabel.text=- ExtractedContentPanel.hitButtonsLabel.text=Match ExtractedContentPanel.hitPreviousButton.text= ExtractedContentPanel.hitNextButton.text= -KeywordSearchSimpleTopComponent.filesIndexedValLabel.text=- -KeywordSearchSimpleTopComponent.filesIndexedNameLabel.text=Files indexed: -KeywordSearchSimpleTopComponent.searchButton.text=Search -KeywordSearchListTopComponent.searchButton.text=Search -KeywordSearchListTopComponent.filesIndexedNameLabel.text=Files indexed: -KeywordSearchListTopComponent.filesIndexedValLabel.text=- -KeywordSearchListTopComponent.titleLabel.text=Search for a list of keywords -KeywordSearchListTopComponent.addWordButton.text=Add -KeywordSearchListTopComponent.loadListButton.text=Load List -KeywordSearchListTopComponent.addWordField.text= -KeywordSearchListTopComponent.saveListButton.text=Save List -KeywordSearchListTopComponent.deleteWordButton.text=Remove -KeywordSearchListTopComponent.deleteAllWordsButton.text=Remove All -KeywordSearchSimpleTopComponent.chRegex.text=Regular Expression -KeywordSearchListImportExportTopComponent.topLabel.text=Manage (import, export, delete) lists of keywords -KeywordSearchListImportExportTopComponent.importButton.text=Import -KeywordSearchListImportExportTopComponent.exportButton.text=Export -KeywordSearchListImportExportTopComponent.deleteButton.text=Delete -KeywordSearchListTopComponent.curListNameLabel.text=Loaded list: -KeywordSearchListTopComponent.curListValLabel.text=- -KeywordSearchListTopComponent.importButton.text=Import List -KeywordSearchHistoryTopComponent.topLabel.text=Review keyword search history and saved results -KeywordSearchHistoryTopComponent.filesIndexedNameLabel.text=Files indexed: -KeywordSearchHistoryTopComponent.filesIndexedValLabel.text=- -KeywordSearchHistoryTopComponent.withHitsLabel.text=Keyword searches with hits: -KeywordSearchHistoryTopComponent.noHitsLabel.text=Keyword searches without hits: -KeywordSearchSimpleTopComponent.queryTextField.text= -KeywordSearchListTopComponent.chRegex.text=Regular Expression -KeywordSearchSimpleTopComponent.titleLabel.text=Search for a single keyword ExtractedContentPanel.copyMenuItem.text=Copy ExtractedContentPanel.selectAllMenuItem.text=Select All -KeywordSearchSimpleTopComponent.cutMenuItem.text=Cut -KeywordSearchSimpleTopComponent.copyMenuItem.text=Copy -KeywordSearchSimpleTopComponent.pasteMenuItem.text=Paste -KeywordSearchSimpleTopComponent.selectAllMenuItem.text=Select All -KeywordSearchListTopComponent.cutMenuItem.text=Cut -KeywordSearchListTopComponent.copyMenuItem.text=Copy -KeywordSearchListTopComponent.pasteMenuItem.text=Paste -KeywordSearchListTopComponent.selectAllMenuItem.text=Select All KeywordSearchEditListPanel.saveListButton.text=Save As KeywordSearchEditListPanel.addWordField.text= KeywordSearchEditListPanel.addWordButton.text=Add @@ -78,7 +29,6 @@ KeywordSearchListsManagementPanel.importButton.text=Import List KeywordSearchPanel.searchBox.text=Search... KeywordSearchPanel.regExCheckboxMenuItem.text=Use Regular Expressions KeywordSearchPanel.settingsLabel.text= -KeywordSearchPanel.listsButton.text=Keyword Lists KeywordSearchListsViewerPanel.searchAddButton.text=Search KeywordSearchListsViewerPanel.manageListsButton.text=Manage Lists KeywordSearchIngestSimplePanel.jLabel1.text=Select lists to use during ingest: diff --git a/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/KeywordSearchConfigurationAction.java b/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/KeywordSearchConfigurationAction.java index 9e13aa53c1..e775682af4 100644 --- a/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/KeywordSearchConfigurationAction.java +++ b/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/KeywordSearchConfigurationAction.java @@ -30,7 +30,7 @@ import org.sleuthkit.autopsy.corecomponents.AdvancedConfigurationDialog; */ class KeywordSearchConfigurationAction extends CallableSystemAction{ - private static final String ACTION_NAME = "Keyword List Configuration"; + private static final String ACTION_NAME = org.openide.util.NbBundle.getMessage(KeywordSearchPanel.class, "ListBundleConfig"); @Override public void performAction() { diff --git a/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/KeywordSearchConfigurationPanel.java b/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/KeywordSearchConfigurationPanel.java index cc20c04867..cdf04e46ac 100644 --- a/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/KeywordSearchConfigurationPanel.java +++ b/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/KeywordSearchConfigurationPanel.java @@ -24,7 +24,6 @@ */ package org.sleuthkit.autopsy.keywordsearch; -import java.awt.BorderLayout; import java.util.logging.Logger; import org.sleuthkit.autopsy.ingest.IngestManager; @@ -37,7 +36,7 @@ public class KeywordSearchConfigurationPanel extends javax.swing.JPanel { KeywordSearchListsManagementPanel listsManagementPanel; KeywordSearchEditListPanel editListPanel; private static final Logger logger = Logger.getLogger(KeywordSearchConfigurationPanel.class.getName()); - private static final String KEYWORD_CONFIG_NAME = "Keyword List Configuration"; + private static final String KEYWORD_CONFIG_NAME = org.openide.util.NbBundle.getMessage(KeywordSearchPanel.class, "ListBundleConfig"); private static KeywordSearchConfigurationPanel instance; /** Creates new form KeywordSearchConfigurationPanel */ diff --git a/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/KeywordSearchPanel.form b/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/KeywordSearchPanel.form index 2be6aa3358..c8e7f94462 100644 --- a/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/KeywordSearchPanel.form +++ b/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/KeywordSearchPanel.form @@ -220,7 +220,7 @@ - + diff --git a/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/KeywordSearchPanel.java b/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/KeywordSearchPanel.java index f57cf75ebe..260111b25e 100644 --- a/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/KeywordSearchPanel.java +++ b/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/KeywordSearchPanel.java @@ -194,7 +194,7 @@ public class KeywordSearchPanel extends AbstractKeywordSearchPerformer{ searchBoxPanel.setBorder(new javax.swing.border.LineBorder(java.awt.Color.lightGray, 1, true)); searchBoxPanel.setPreferredSize(new java.awt.Dimension(255, 18)); - searchBox.setFont(new java.awt.Font("Tahoma", 0, 14)); // NOI18N + searchBox.setFont(new java.awt.Font("Tahoma", 0, 14)); searchBox.setForeground(java.awt.Color.lightGray); searchBox.setText(org.openide.util.NbBundle.getMessage(KeywordSearchPanel.class, "KeywordSearchPanel.searchBox.text")); // NOI18N searchBox.setBorder(javax.swing.BorderFactory.createEmptyBorder(1, 3, 4, 1)); @@ -256,7 +256,7 @@ public class KeywordSearchPanel extends AbstractKeywordSearchPerformer{ ); listsButton.setIcon(new javax.swing.ImageIcon(getClass().getResource("/org/sleuthkit/autopsy/keywordsearch/watchbutton-icon.png"))); // NOI18N - listsButton.setText(org.openide.util.NbBundle.getMessage(KeywordSearchPanel.class, "KeywordSearchPanel.listsButton.text")); // NOI18N + listsButton.setText(org.openide.util.NbBundle.getMessage(KeywordSearchPanel.class, "ListBundleName")); // NOI18N listsButton.setBorderPainted(false); listsButton.setContentAreaFilled(false); listsButton.setEnabled(false); diff --git a/build-unix.xml b/build-unix.xml index 620f80d32e..b13b938a3f 100644 --- a/build-unix.xml +++ b/build-unix.xml @@ -7,4 +7,8 @@ + + + Unix installer creation not supported at this time + diff --git a/build-windows.xml b/build-windows.xml index 5b735140b2..fd35d501b4 100755 --- a/build-windows.xml +++ b/build-windows.xml @@ -26,4 +26,31 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/build.xml b/build.xml index 1355785fcb..84c4dd5872 100644 --- a/build.xml +++ b/build.xml @@ -168,13 +168,26 @@ - + + - + + + + + + + + + + + + diff --git a/installer_autopsy/installer_autopsy.aip b/installer_autopsy/installer_autopsy.aip new file mode 100644 index 0000000000..9a123b4a11 --- /dev/null +++ b/installer_autopsy/installer_autopsy.aip @@ -0,0 +1,5074 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/thirdparty/gstreamer/windows.zip b/thirdparty/gstreamer/windows/i386/0.10.7/gstreamer.zip similarity index 100% rename from thirdparty/gstreamer/windows.zip rename to thirdparty/gstreamer/windows/i386/0.10.7/gstreamer.zip