From: <fr...@us...> - 2023-05-25 11:16:07
|
Revision: 4960 http://sourceforge.net/p/mp-plugins/code/4960 Author: framug Date: 2023-05-25 11:15:49 +0000 (Thu, 25 May 2023) Log Message: ----------- Added: - Compatibility with Windows 11, Mediaportal 1.31 and after - Dotnet 4.0 - Localize strings : Browse Network Add MPTV-Series Import Path Add MovingPictures Import Path Import path already exists Import path added - Updated about tab in configuration for thanks plugin translators Modified Paths: -------------- trunk/plugins/File Explorer/Constants.cs trunk/plugins/File Explorer/DrivesView.cs trunk/plugins/File Explorer/File Explorer.csproj trunk/plugins/File Explorer/Language/strings_en.xml trunk/plugins/File Explorer/Language/strings_fr.xml trunk/plugins/File Explorer/MpeRelease/update.xml trunk/plugins/File Explorer/Properties/AssemblyInfo.cs trunk/plugins/File Explorer/Setup.Designer.cs trunk/plugins/File Explorer/Setup.cs trunk/plugins/File Explorer/Setup.resx Added Paths: ----------- trunk/plugins/File Explorer/MpeRelease/File Explorer 1.6.2.0.xmp2 trunk/plugins/File Explorer/MpeRelease/File Explorer 1.6.2.mpe1 Modified: trunk/plugins/File Explorer/Constants.cs =================================================================== --- trunk/plugins/File Explorer/Constants.cs 2019-07-10 07:30:19 UTC (rev 4959) +++ trunk/plugins/File Explorer/Constants.cs 2023-05-25 11:15:49 UTC (rev 4960) @@ -174,7 +174,13 @@ Browse = 130, EmptyRecycleBin = 131, Confirm = 132, - UnableToEmptyRecycleBin = 133 + UnableToEmptyRecycleBin = 133, + BrowseNetwork = 134, + TVSImportPath = 135, + MOVPICSImportPath = 136, + ImportPathAlreadyExist = 137, + ImportPathAdded = 138 + } #endregion @@ -341,7 +347,7 @@ public static readonly string REMOVEABLE = LocalizeStrings.Get((int)LocalizedMessages.Removeable); public static readonly string MENU = LocalizeStrings.Get((int)LocalizedMessages.Menu); public static readonly string SELECTDRIVE = LocalizeStrings.Get((int)LocalizedMessages.SelectDrive); - public static readonly string BROWSENETWORK = "Browse Network"; + public static readonly string BROWSENETWORK = LocalizeStrings.Get((int)LocalizedMessages.BrowseNetwork); public static readonly string RENAME = LocalizeStrings.Get((int)LocalizedMessages.Rename); public static readonly string CREATEDIR = LocalizeStrings.Get((int)LocalizedMessages.CreateDir); public static readonly string ENCRYPT2 = LocalizeStrings.Get((int)LocalizedMessages.Encrypt2); @@ -372,6 +378,10 @@ public static readonly string ACCESSED = LocalizeStrings.Get((int)LocalizedMessages.Accessed); public static readonly string WRITTEN = LocalizeStrings.Get((int)LocalizedMessages.Written); public static readonly string SYSTEMDIR = LocalizeStrings.Get((int)LocalizedMessages.SystemDir); + public static readonly string TVSIMPORTPATH = LocalizeStrings.Get((int)LocalizedMessages.TVSImportPath); + public static readonly string MOVPICSIMPORTPATH = LocalizeStrings.Get((int)LocalizedMessages.MOVPICSImportPath); + public static readonly string IMPORTPATHALREADYEXIST = LocalizeStrings.Get((int)LocalizedMessages.ImportPathAlreadyExist); + public static readonly string IMPORTPATHADDED = LocalizeStrings.Get((int)LocalizedMessages.ImportPathAdded); } #endregion Modified: trunk/plugins/File Explorer/DrivesView.cs =================================================================== --- trunk/plugins/File Explorer/DrivesView.cs 2019-07-10 07:30:19 UTC (rev 4959) +++ trunk/plugins/File Explorer/DrivesView.cs 2023-05-25 11:15:49 UTC (rev 4960) @@ -527,22 +527,22 @@ { if (IsMPTVSeriesEnabled()) { - mnu.Add("Add MPTV-Series Import Path"); + mnu.Add(Constants.View.TVSIMPORTPATH); } if (IsMovPicsEnabled()) { - mnu.Add("Add MovingPictures Import Path"); + mnu.Add(Constants.View.MOVPICSIMPORTPATH); } } mnu.DoModal(GUIWindowManager.ActiveWindow); - if (mnu.SelectedLabelText == "Add MPTV-Series Import Path") + if (mnu.SelectedLabelText == Constants.View.TVSIMPORTPATH) { AddToMPTVSeries(); } - if (mnu.SelectedLabelText == "Add MovingPictures Import Path") + if (mnu.SelectedLabelText == Constants.View.MOVPICSIMPORTPATH) { AddToMovPics(); @@ -2678,7 +2678,7 @@ GUIDialogNotify dlg = (GUIDialogNotify)GUIWindowManager.GetWindow((int)GUIWindow.Window.WINDOW_DIALOG_NOTIFY); if (dlg == null) return; dlg.SetHeading("Warning"); - dlg.SetText("Import path already exists"); + dlg.SetText(Constants.View.IMPORTPATHALREADYEXIST); dlg.DoModal(GUIWindowManager.ActiveWindow); } else @@ -2692,7 +2692,7 @@ GUIDialogNotify dialog = (GUIDialogNotify)GUIWindowManager.GetWindow((int)GUIWindow.Window.WINDOW_DIALOG_NOTIFY); if (dialog == null) return; dialog.SetHeading("Success"); - dialog.SetText("Import path added"); + dialog.SetText(Constants.View.IMPORTPATHADDED); dialog.DoModal(GUIWindowManager.ActiveWindow); DeviceManager.StartMonitor(); } @@ -2713,7 +2713,7 @@ GUIDialogNotify dlg = (GUIDialogNotify)GUIWindowManager.GetWindow((int)GUIWindow.Window.WINDOW_DIALOG_NOTIFY); if (dlg == null) return; dlg.SetHeading("Warning"); - dlg.SetText("Import path already exists"); + dlg.SetText(Constants.View.IMPORTPATHALREADYEXIST); dlg.DoModal(GUIWindowManager.ActiveWindow); } else @@ -2724,7 +2724,7 @@ GUIDialogNotify dialog = (GUIDialogNotify)GUIWindowManager.GetWindow((int)GUIWindow.Window.WINDOW_DIALOG_NOTIFY); if (dialog == null) return; dialog.SetHeading("Success"); - dialog.SetText("Import path added"); + dialog.SetText(Constants.View.IMPORTPATHADDED); dialog.DoModal(GUIWindowManager.ActiveWindow); MovingPicturesCore.Importer.RestartScanner(); } Modified: trunk/plugins/File Explorer/File Explorer.csproj =================================================================== --- trunk/plugins/File Explorer/File Explorer.csproj 2019-07-10 07:30:19 UTC (rev 4959) +++ trunk/plugins/File Explorer/File Explorer.csproj 2023-05-25 11:15:49 UTC (rev 4960) @@ -23,7 +23,7 @@ <OldToolsVersion>3.5</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> - <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> + <TargetFrameworkVersion>v4.0</TargetFrameworkVersion> <TargetFrameworkProfile /> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)' == 'Debug' "> @@ -47,24 +47,34 @@ <ItemGroup> <Reference Include="Common.Utils, Version=1.5.100.0, Culture=neutral, processorArchitecture=MSIL"> <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\..\..\Program Files\Team MediaPortal\MediaPortal\Common.Utils.dll</HintPath> + <HintPath>C:\Program Files (x86)\Team MediaPortal\MediaPortal\Common.Utils.dll</HintPath> + <Private>False</Private> </Reference> <Reference Include="Core, Version=1.5.100.0, Culture=neutral, processorArchitecture=x86"> <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\..\..\Program Files\Team MediaPortal\MediaPortal\Core.dll</HintPath> + <HintPath>C:\Program Files (x86)\Team MediaPortal\MediaPortal\Core.dll</HintPath> + <Private>False</Private> </Reference> <Reference Include="Cornerstone, Version=1.5.1.1487, Culture=neutral, processorArchitecture=x86"> <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\..\..\Program Files\Team MediaPortal\MediaPortal\plugins\Windows\Cornerstone.dll</HintPath> + <HintPath>C:\Program Files (x86)\Team MediaPortal\MediaPortal\Plugins\Windows\Cornerstone.dll</HintPath> + <Private>False</Private> </Reference> <Reference Include="Dialogs"> - <HintPath>..\..\..\..\..\..\Program Files\Team MediaPortal\MediaPortal\plugins\Windows\Dialogs.dll</HintPath> + <HintPath>C:\Program Files (x86)\Team MediaPortal\MediaPortal\Plugins\Windows\Dialogs.dll</HintPath> + <Private>False</Private> </Reference> + <Reference Include="GUIPictures"> + <HintPath>C:\Program Files (x86)\Team MediaPortal\MediaPortal\Plugins\Windows\GUIPictures.dll</HintPath> + <Private>False</Private> + </Reference> <Reference Include="MovingPictures"> - <HintPath>..\..\..\..\..\..\Program Files\Team MediaPortal\MediaPortal\plugins\Windows\MovingPictures.dll</HintPath> + <HintPath>C:\Program Files (x86)\Team MediaPortal\MediaPortal\Plugins\Windows\MovingPictures.dll</HintPath> + <Private>False</Private> </Reference> <Reference Include="MP-TVSeries"> - <HintPath>..\..\..\..\..\..\Program Files\Team MediaPortal\MediaPortal\plugins\Windows\MP-TVSeries.dll</HintPath> + <HintPath>C:\Program Files (x86)\Team MediaPortal\MediaPortal\Plugins\Windows\MP-TVSeries.dll</HintPath> + <Private>False</Private> </Reference> <Reference Include="System" /> <Reference Include="System.DirectoryServices" /> @@ -78,11 +88,9 @@ </Reference> <Reference Include="Microsoft.VisualBasic" /> <Reference Include="Utils"> - <HintPath>..\..\..\..\..\..\Program Files\Team MediaPortal\MediaPortal\Utils.dll</HintPath> + <HintPath>C:\Program Files (x86)\Team MediaPortal\MediaPortal\Utils.dll</HintPath> + <Private>False</Private> </Reference> - <Reference Include="WindowPlugins"> - <HintPath>..\..\..\..\..\..\Program Files\Team MediaPortal\MediaPortal\plugins\Windows\WindowPlugins.dll</HintPath> - </Reference> </ItemGroup> <ItemGroup> <Compile Include="LocalizeStrings.cs" /> Modified: trunk/plugins/File Explorer/Language/strings_en.xml =================================================================== --- trunk/plugins/File Explorer/Language/strings_en.xml 2019-07-10 07:30:19 UTC (rev 4959) +++ trunk/plugins/File Explorer/Language/strings_en.xml 2023-05-25 11:15:49 UTC (rev 4960) @@ -135,5 +135,10 @@ <String id="131">Empty Recycle Bin</String> <String id="132">Confirm</String> <String id="133">Unable to empty Recycle Bin</String> + <String id="134">Browse Network</String> + <String id="135">Add MPTV-Series Import Path</String> + <String id="136">Add MovingPictures Import Path</String> + <String id="137">Import path already exists</String> + <String id="138">Import path added</String> </Section> </Language> \ No newline at end of file Modified: trunk/plugins/File Explorer/Language/strings_fr.xml =================================================================== --- trunk/plugins/File Explorer/Language/strings_fr.xml 2019-07-10 07:30:19 UTC (rev 4959) +++ trunk/plugins/File Explorer/Language/strings_fr.xml 2023-05-25 11:15:49 UTC (rev 4960) @@ -135,5 +135,10 @@ <String id="131">Vider la Corbeille</String> <String id="132">Confirmer</String> <String id="133">Impossible de vider la Corbeille</String> + <String id="134">Parcourir le réseau</String> + <String id="135">Ajouter le chemin d'importation de MPTV-Series</String> + <String id="136">Ajouter le chemin d'importation de MovingPictures</String> + <String id="137">Le chemin d'importation existe déjà</String> + <String id="138">Chemin d'importation ajouté</String> </Section> </Language> \ No newline at end of file Added: trunk/plugins/File Explorer/MpeRelease/File Explorer 1.6.2.0.xmp2 =================================================================== --- trunk/plugins/File Explorer/MpeRelease/File Explorer 1.6.2.0.xmp2 (rev 0) +++ trunk/plugins/File Explorer/MpeRelease/File Explorer 1.6.2.0.xmp2 2023-05-25 11:15:49 UTC (rev 4960) @@ -0,0 +1,602 @@ +<?xml version="1.0" encoding="utf-8"?> +<PackageClass xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> + <Version>2.0</Version> + <Groups> + <Items> + <GroupItem Name="Default"> + <ParentGroup /> + <DisplayName>Default</DisplayName> + <DefaulChecked>true</DefaulChecked> + <Description>Default</Description> + <Files> + <Items> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <Param1 /> + <UpdateOption>AlwaysOverwrite</UpdateOption> + <LocalFileName>..\bin\Release\File Explorer.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{fd72c0c4-6e7f-4a36-a7a9-95aec71d8f47}-Compression.dll</ZipFileName> + <DestinationFilename>%Plugins%\Windows\File Explorer.dll</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <Param1 /> + <UpdateOption>AlwaysOverwrite</UpdateOption> + <LocalFileName>..\Compression\Compression.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{07c6550a-ac68-4f49-a150-78efb59de22b}-Compression.dll</ZipFileName> + <DestinationFilename>%Plugins%\Windows\Compression.dll</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <Param1 /> + <UpdateOption>AlwaysOverwrite</UpdateOption> + <LocalFileName>File Explorer.xml</LocalFileName> + <ZipFileName>Installer{CopyFile}\{b613f636-6596-47ad-af93-e7c9f1001eda}-File Explorer.xml</ZipFileName> + <DestinationFilename>%Config%\File Explorer.xml</DestinationFilename> + </FileItem> + </Items> + </Files> + </GroupItem> + <GroupItem Name="Titan Skin"> + <DisplayName>Titan Skin</DisplayName> + <DefaulChecked>true</DefaulChecked> + <Description>Titan Skin</Description> + <Files> + <Items> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>AlwaysOverwrite</UpdateOption> + <LocalFileName>..\Skin\Titan\File Explorer.xml</LocalFileName> + <ZipFileName>Installer{CopyFile}\{957f8ec4-4cf2-4958-974b-3db27b9d4d1c}-File Explorer.xml</ZipFileName> + <DestinationFilename>%Skin%\Titan\File Explorer.xml</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>AlwaysOverwrite</UpdateOption> + <LocalFileName>..\Skin\Titan\File Explorer_dialog.xml</LocalFileName> + <ZipFileName>Installer{CopyFile}\{e566f8ea-6b77-43ba-ae75-ba070c547331}-File Explorer_dialog.xml</ZipFileName> + <DestinationFilename>%Skin%\Titan\File Explorer_dialog.xml</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>AlwaysOverwrite</UpdateOption> + <LocalFileName>..\Skin\Titan\File Explorer_main.xml</LocalFileName> + <ZipFileName>Installer{CopyFile}\{e5dad320-2c9d-45e4-97ee-741c3a848b3d}-File Explorer_main.xml</ZipFileName> + <DestinationFilename>%Skin%\Titan\File Explorer_main.xml</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>AlwaysOverwrite</UpdateOption> + <LocalFileName>..\Skin\Titan\File Explorer_textpreview.xml</LocalFileName> + <ZipFileName>Installer{CopyFile}\{f83dfbd5-c806-4e59-9946-fd78c975f6bf}-File Explorer_textpreview.xml</ZipFileName> + <DestinationFilename>%Skin%\Titan\File Explorer_textpreview.xml</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>AlwaysOverwrite</UpdateOption> + <LocalFileName>..\Skin\Titan\hover_file explorer.png</LocalFileName> + <ZipFileName>Installer{CopyFile}\{f32070a1-e46f-4240-b23d-5fd93afd9879}-hover_file explorer.png</ZipFileName> + <DestinationFilename>%Skin%\Titan\hover_file explorer.png</DestinationFilename> + </FileItem> + </Items> + </Files> + </GroupItem> + <GroupItem Name="Default Skin"> + <ParentGroup /> + <DisplayName>Default Skin</DisplayName> + <DefaulChecked>true</DefaulChecked> + <Description>Default Skin</Description> + <Files> + <Items> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <Param1 /> + <UpdateOption>AlwaysOverwrite</UpdateOption> + <LocalFileName>..\Skin\Default\File Explorer_dialog.xml</LocalFileName> + <ZipFileName>Installer{CopyFile}\{d43bb103-229b-43e7-90d0-8a804086fedd}-File Explorer_dialog.xml</ZipFileName> + <DestinationFilename>%Skin%\Default\File Explorer_dialog.xml</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <Param1 /> + <UpdateOption>AlwaysOverwrite</UpdateOption> + <LocalFileName>..\Skin\Default\File Explorer_main.xml</LocalFileName> + <ZipFileName>Installer{CopyFile}\{d615e35e-f604-4ffc-9730-60d4445f7163}-File Explorer_main.xml</ZipFileName> + <DestinationFilename>%Skin%\Default\File Explorer_main.xml</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <Param1 /> + <UpdateOption>AlwaysOverwrite</UpdateOption> + <LocalFileName>..\Skin\Default\File Explorer_textpreview.xml</LocalFileName> + <ZipFileName>Installer{CopyFile}\{b83f9e4a-2765-4a0f-a906-1a37148d0d6a}-File Explorer_textpreview.xml</ZipFileName> + <DestinationFilename>%Skin%\Default\File Explorer_textpreview.xml</DestinationFilename> + </FileItem> + </Items> + </Files> + </GroupItem> + <GroupItem Name="DefaultWide Skin"> + <DisplayName>DefaultWide Skin</DisplayName> + <DefaulChecked>true</DefaulChecked> + <Description>DefaultWide Skin</Description> + <Files> + <Items> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>AlwaysOverwrite</UpdateOption> + <LocalFileName>..\Skin\DefaultWide\File Explorer_dialog.xml</LocalFileName> + <ZipFileName>Installer{CopyFile}\{d6483223-15b7-4443-880c-10716e629f88}-File Explorer_dialog.xml</ZipFileName> + <DestinationFilename>%Skin%\DefaultWide\File Explorer_dialog.xml</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>AlwaysOverwrite</UpdateOption> + <LocalFileName>..\Skin\DefaultWide\File Explorer_main.xml</LocalFileName> + <ZipFileName>Installer{CopyFile}\{c8193716-1e59-412f-8f31-714999c24ea3}-File Explorer_main.xml</ZipFileName> + <DestinationFilename>%Skin%\DefaultWide\File Explorer_main.xml</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>AlwaysOverwrite</UpdateOption> + <LocalFileName>..\Skin\DefaultWide\File Explorer_textpreview.xml</LocalFileName> + <ZipFileName>Installer{CopyFile}\{7d750b1c-c0cd-4011-9bd2-42a494192ee3}-File Explorer_textpreview.xml</ZipFileName> + <DestinationFilename>%Skin%\DefaultWide\File Explorer_textpreview.xml</DestinationFilename> + </FileItem> + </Items> + </Files> + </GroupItem> + <GroupItem Name="Language Files"> + <DisplayName>Language Files</DisplayName> + <DefaulChecked>true</DefaulChecked> + <Description>Language Files</Description> + <Files> + <Items> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>AlwaysOverwrite</UpdateOption> + <LocalFileName>..\Language\strings_da.xml</LocalFileName> + <ZipFileName>Installer{CopyFile}\{3b74b7a4-980a-4287-aed9-674bca8b0d4b}-strings_da.xml</ZipFileName> + <DestinationFilename>%Language%\File Explorer\strings_da.xml</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>AlwaysOverwrite</UpdateOption> + <LocalFileName>..\Language\strings_de.xml</LocalFileName> + <ZipFileName>Installer{CopyFile}\{b1959a36-9415-4068-9aec-046954944e4c}-strings_de.xml</ZipFileName> + <DestinationFilename>%Language%\File Explorer\strings_de.xml</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>AlwaysOverwrite</UpdateOption> + <LocalFileName>..\Language\strings_en.xml</LocalFileName> + <ZipFileName>Installer{CopyFile}\{3e480b34-c82b-42f7-a2fc-1d2795315c27}-strings_en.xml</ZipFileName> + <DestinationFilename>%Language%\File Explorer\strings_en.xml</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>AlwaysOverwrite</UpdateOption> + <LocalFileName>..\Language\strings_fr.xml</LocalFileName> + <ZipFileName>Installer{CopyFile}\{de1db938-0bad-4e59-b325-3e6fcb625844}-strings_fr.xml</ZipFileName> + <DestinationFilename>%Language%\File Explorer\strings_fr.xml</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>AlwaysOverwrite</UpdateOption> + <LocalFileName>..\Language\strings_it.xml</LocalFileName> + <ZipFileName>Installer{CopyFile}\{747f09b1-c06e-4ed0-95f0-82b6b62ffb44}-strings_it.xml</ZipFileName> + <DestinationFilename>%Language%\File Explorer\strings_it.xml</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>AlwaysOverwrite</UpdateOption> + <LocalFileName>..\Language\strings_nl.xml</LocalFileName> + <ZipFileName>Installer{CopyFile}\{25f11d01-6dae-416f-ba85-d78d1b4c376e}-strings_nl.xml</ZipFileName> + <DestinationFilename>%Language%\File Explorer\strings_nl.xml</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>AlwaysOverwrite</UpdateOption> + <LocalFileName>..\Language\strings_pl.xml</LocalFileName> + <ZipFileName>Installer{CopyFile}\{bb5a67db-3744-4613-83fe-aaef3748ba89}-strings_pl.xml</ZipFileName> + <DestinationFilename>%Language%\File Explorer\strings_pl.xml</DestinationFilename> + </FileItem> + </Items> + </Files> + </GroupItem> + </Items> + </Groups> + <Sections> + <Items> + <SectionItem Guid="39add841-84e5-4362-b8a4-3e087745163a" Name="Welcome Screen" ConditionGroup=""> + <Params> + <Items> + <SectionParam Name="Header text"> + <Value>Welcome to the Extension Installer for [Name]</Value> + <ValueType>String</ValueType> + <Description /> + </SectionParam> + <SectionParam Name="Description"> + <Value>This will install [Name] version [Version] on your computer. +It is recommended that you close all other applications before continuing. +Click Next to continue or Cancel to exit Setup.</Value> + <ValueType>String</ValueType> + <Description /> + </SectionParam> + <SectionParam Name="Left part image"> + <Value /> + <ValueType>File</ValueType> + <Description /> + </SectionParam> + <SectionParam Name="Header image"> + <Value /> + <ValueType>File</ValueType> + <Description>Image in upper right part</Description> + </SectionParam> + </Items> + </Params> + <Actions> + <Items /> + </Actions> + <IncludedGroups /> + <PanelName>Welcome Screen</PanelName> + <WizardButtonsEnum>NextCancel</WizardButtonsEnum> + </SectionItem> + <SectionItem Guid="78ba6baf-fe7b-43bf-9cc3-a33c6e045cc7" Name="Install Section" ConditionGroup=""> + <Params> + <Items> + <SectionParam Name="Header Title"> + <Value /> + <ValueType>String</ValueType> + <Description>Header title</Description> + </SectionParam> + <SectionParam Name="Header description"> + <Value /> + <ValueType>String</ValueType> + <Description>Description of section, shown in under section title</Description> + </SectionParam> + <SectionParam Name="Header image"> + <Value /> + <ValueType>File</ValueType> + <Description>Image in upper right part</Description> + </SectionParam> + </Items> + </Params> + <Actions> + <Items> + <ActionItem Name="InstallFiles" ActionType="InstallFiles" ConditionGroup=""> + <Params> + <Items /> + </Params> + <ExecuteLocation>AfterPanelShow</ExecuteLocation> + </ActionItem> + </Items> + </Actions> + <IncludedGroups /> + <PanelName>Install Section</PanelName> + <WizardButtonsEnum>Next</WizardButtonsEnum> + </SectionItem> + <SectionItem Guid="855ea583-d4ec-4456-ba41-adcf860c46dc" Name="Setup Complete" ConditionGroup=""> + <Params> + <Items> + <SectionParam Name="Header text"> + <Value>The Extension Installer Wizard has successfully installed [Name].</Value> + <ValueType>String</ValueType> + <Description /> + </SectionParam> + <SectionParam Name="Left part image"> + <Value /> + <ValueType>File</ValueType> + <Description /> + </SectionParam> + <SectionParam Name="Show radio buttons"> + <Value /> + <ValueType>Bool</ValueType> + <Description>Use radiobutton in place of combobox</Description> + </SectionParam> + <SectionParam Name="Header image"> + <Value /> + <ValueType>File</ValueType> + <Description>Image in upper right part</Description> + </SectionParam> + </Items> + </Params> + <Actions> + <Items /> + </Actions> + <IncludedGroups /> + <PanelName>Setup Complete</PanelName> + <WizardButtonsEnum>Finish</WizardButtonsEnum> + </SectionItem> + </Items> + </Sections> + <Dependencies> + <Items> + <DependencyItem> + <Type>MediaPortal</Type> + <Id /> + <MinVersion> + <Major>1</Major> + <Minor>1</Minor> + <Build>6</Build> + <Revision>27644</Revision> + </MinVersion> + <MaxVersion> + <Major>1</Major> + <Minor>1</Minor> + <Build>6</Build> + <Revision>27644</Revision> + </MaxVersion> + <WarnOnly>false</WarnOnly> + <Message>requires MediaPortal version 1.1.6.27644 to 1.1.6.27644.</Message> + <Name>MediaPortal</Name> + </DependencyItem> + </Items> + </Dependencies> + <PluginDependencies> + <Items /> + </PluginDependencies> + <GeneralInfo> + <Name>File Explorer</Name> + <Id>dd3efdfe-ed9e-44be-9550-813d268556fb</Id> + <Author>Andreas Groß, framug, SilentException, -ltb- (gfx)</Author> + <HomePage>https://www.team-mediaportal.com/extensions/utilities/file-explorer</HomePage> + <ForumPage>https://forum.team-mediaportal.com/threads/file-explorer.72076/</ForumPage> + <UpdateUrl>http://svn.code.sf.net/p/mp-plugins/code/trunk/plugins/File Explorer/MpeRelease/update.xml</UpdateUrl> + <Version> + <Major>1</Major> + <Minor>6</Minor> + <Build>2</Build> + <Revision>0</Revision> + </Version> + <ExtensionDescription>This plugin is able to perform the following actions: + +- Copy +- Move +- Delete +- Rename +- Encrypt/Decrypt +- Compress/Uncompress (files only) +- Hide/Unhide +- Set/Remove Readonly flag +files and directories + +- Creates directories + +- Creates audio and video playlists from directories +- Adds files and directories to audio and video playlists +- Plays audio/video files when selected +- Shows pictures when selected +- Previews textfiles +- Adds MP-TVSeries import path +- Adds MovingPictures import path</ExtensionDescription> + <VersionDescription>Added: +- Compatibility with Mediaportal 1.31 and after +- Dotnet 4.0 +- Localize strings : + +Browse Network +Add MPTV-Series Import Path +Add MovingPictures Import Path +Import path already exists +Import path added + +- Updated about tab in configuration for thanks plugin translators</VersionDescription> + <DevelopmentStatus>Stable</DevelopmentStatus> + <OnlineLocation>http://svn.code.sf.net/p/mp-plugins/code/trunk/plugins/File Explorer/MpeRelease/File Explorer 1.6.2.0.mpe1</OnlineLocation> + <ReleaseDate>2023-05-25T22:13:44</ReleaseDate> + <Tags>file, explorer</Tags> + <Location>E:\SVN\plugins\File Explorer\MpeRelease\File Explorer 1.6.2.mpe1</Location> + <Params> + <Items> + <SectionParam Name="Icon"> + <Value>..\file_explorer.png</Value> + <ValueType>File</ValueType> + <Description>The icon file of the package (jpg,png,bmp)</Description> + </SectionParam> + <SectionParam Name="Online Icon"> + <Value /> + <ValueType>String</ValueType> + <Description>The icon file of the package stored online (jpg,png,bmp)</Description> + </SectionParam> + <SectionParam Name="Configuration file"> + <Value /> + <ValueType>Template</ValueType> + <Description>The file used to configure the extension. + If it has .exe extension the will be executed. + If it has .dll extension it's started like MP plugin configuration.</Description> + </SectionParam> + <SectionParam Name="Online Screenshots"> + <Value>http://svn.code.sf.net/p/mp-plugins/code/trunk/plugins/File Explorer/Screenshots/FileExplorer1.jpg;http://svn.code.sf.net/p/mp-plugins/code/trunk/plugins/File Explorer/Screenshots/File Explorer2.jpg;http://svn.code.sf.net/p/mp-plugins/code/trunk/plugins/File Explorer/Screenshots/File Explorer3.jpg;http://svn.code.sf.net/p/mp-plugins/code/trunk/plugins/File Explorer/Screenshots/FileExplorer1.jpg;http://svn.code.sf.net/p/mp-plugins/code/trunk/plugins/File Explorer/Screenshots/File Explorer4.jpg;</Value> + <ValueType>String</ValueType> + <Description>Online stored screenshot urls separated by ; </Description> + </SectionParam> + <SectionParam Name="Force to uninstall on update"> + <Value>YES</Value> + <ValueType>Bool</ValueType> + <Description>Show dialog and force to uninstall previous version when updating an extension. Should only be disabled if you are using an NSIS/MSI installer.</Description> + </SectionParam> + </Items> + </Params> + </GeneralInfo> + <UniqueFileList> + <Items> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <Param1 /> + <UpdateOption>AlwaysOverwrite</UpdateOption> + <LocalFileName>..\bin\Release\File Explorer.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{fd72c0c4-6e7f-4a36-a7a9-95aec71d8f47}-Compression.dll</ZipFileName> + <DestinationFilename>%Plugins%\Windows\File Explorer.dll</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <Param1 /> + <UpdateOption>AlwaysOverwrite</UpdateOption> + <LocalFileName>..\Compression\Compression.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{07c6550a-ac68-4f49-a150-78efb59de22b}-Compression.dll</ZipFileName> + <DestinationFilename>%Plugins%\Windows\Compression.dll</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <Param1 /> + <UpdateOption>AlwaysOverwrite</UpdateOption> + <LocalFileName>File Explorer.xml</LocalFileName> + <ZipFileName>Installer{CopyFile}\{b613f636-6596-47ad-af93-e7c9f1001eda}-File Explorer.xml</ZipFileName> + <DestinationFilename>%Config%\File Explorer.xml</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>AlwaysOverwrite</UpdateOption> + <LocalFileName>..\Skin\Titan\File Explorer.xml</LocalFileName> + <ZipFileName>Installer{CopyFile}\{957f8ec4-4cf2-4958-974b-3db27b9d4d1c}-File Explorer.xml</ZipFileName> + <DestinationFilename>%Skin%\Titan\File Explorer.xml</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>AlwaysOverwrite</UpdateOption> + <LocalFileName>..\Skin\Titan\File Explorer_dialog.xml</LocalFileName> + <ZipFileName>Installer{CopyFile}\{e566f8ea-6b77-43ba-ae75-ba070c547331}-File Explorer_dialog.xml</ZipFileName> + <DestinationFilename>%Skin%\Titan\File Explorer_dialog.xml</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>AlwaysOverwrite</UpdateOption> + <LocalFileName>..\Skin\Titan\File Explorer_main.xml</LocalFileName> + <ZipFileName>Installer{CopyFile}\{e5dad320-2c9d-45e4-97ee-741c3a848b3d}-File Explorer_main.xml</ZipFileName> + <DestinationFilename>%Skin%\Titan\File Explorer_main.xml</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>AlwaysOverwrite</UpdateOption> + <LocalFileName>..\Skin\Titan\File Explorer_textpreview.xml</LocalFileName> + <ZipFileName>Installer{CopyFile}\{f83dfbd5-c806-4e59-9946-fd78c975f6bf}-File Explorer_textpreview.xml</ZipFileName> + <DestinationFilename>%Skin%\Titan\File Explorer_textpreview.xml</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>AlwaysOverwrite</UpdateOption> + <LocalFileName>..\Skin\Titan\hover_file explorer.png</LocalFileName> + <ZipFileName>Installer{CopyFile}\{f32070a1-e46f-4240-b23d-5fd93afd9879}-hover_file explorer.png</ZipFileName> + <DestinationFilename>%Skin%\Titan\hover_file explorer.png</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <Param1 /> + <UpdateOption>AlwaysOverwrite</UpdateOption> + <LocalFileName>..\Skin\Default\File Explorer_dialog.xml</LocalFileName> + <ZipFileName>Installer{CopyFile}\{d43bb103-229b-43e7-90d0-8a804086fedd}-File Explorer_dialog.xml</ZipFileName> + <DestinationFilename>%Skin%\Default\File Explorer_dialog.xml</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <Param1 /> + <UpdateOption>AlwaysOverwrite</UpdateOption> + <LocalFileName>..\Skin\Default\File Explorer_main.xml</LocalFileName> + <ZipFileName>Installer{CopyFile}\{d615e35e-f604-4ffc-9730-60d4445f7163}-File Explorer_main.xml</ZipFileName> + <DestinationFilename>%Skin%\Default\File Explorer_main.xml</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <Param1 /> + <UpdateOption>AlwaysOverwrite</UpdateOption> + <LocalFileName>..\Skin\Default\File Explorer_textpreview.xml</LocalFileName> + <ZipFileName>Installer{CopyFile}\{b83f9e4a-2765-4a0f-a906-1a37148d0d6a}-File Explorer_textpreview.xml</ZipFileName> + <DestinationFilename>%Skin%\Default\File Explorer_textpreview.xml</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>AlwaysOverwrite</UpdateOption> + <LocalFileName>..\Skin\DefaultWide\File Explorer_dialog.xml</LocalFileName> + <ZipFileName>Installer{CopyFile}\{d6483223-15b7-4443-880c-10716e629f88}-File Explorer_dialog.xml</ZipFileName> + <DestinationFilename>%Skin%\DefaultWide\File Explorer_dialog.xml</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>AlwaysOverwrite</UpdateOption> + <LocalFileName>..\Skin\DefaultWide\File Explorer_main.xml</LocalFileName> + <ZipFileName>Installer{CopyFile}\{c8193716-1e59-412f-8f31-714999c24ea3}-File Explorer_main.xml</ZipFileName> + <DestinationFilename>%Skin%\DefaultWide\File Explorer_main.xml</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>AlwaysOverwrite</UpdateOption> + <LocalFileName>..\Skin\DefaultWide\File Explorer_textpreview.xml</LocalFileName> + <ZipFileName>Installer{CopyFile}\{7d750b1c-c0cd-4011-9bd2-42a494192ee3}-File Explorer_textpreview.xml</ZipFileName> + <DestinationFilename>%Skin%\DefaultWide\File Explorer_textpreview.xml</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>AlwaysOverwrite</UpdateOption> + <LocalFileName>..\Language\strings_da.xml</LocalFileName> + <ZipFileName>Installer{CopyFile}\{3b74b7a4-980a-4287-aed9-674bca8b0d4b}-strings_da.xml</ZipFileName> + <DestinationFilename>%Language%\File Explorer\strings_da.xml</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>AlwaysOverwrite</UpdateOption> + <LocalFileName>..\Language\strings_de.xml</LocalFileName> + <ZipFileName>Installer{CopyFile}\{b1959a36-9415-4068-9aec-046954944e4c}-strings_de.xml</ZipFileName> + <DestinationFilename>%Language%\File Explorer\strings_de.xml</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>AlwaysOverwrite</UpdateOption> + <LocalFileName>..\Language\strings_en.xml</LocalFileName> + <ZipFileName>Installer{CopyFile}\{3e480b34-c82b-42f7-a2fc-1d2795315c27}-strings_en.xml</ZipFileName> + <DestinationFilename>%Language%\File Explorer\strings_en.xml</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>AlwaysOverwrite</UpdateOption> + <LocalFileName>..\Language\strings_fr.xml</LocalFileName> + <ZipFileName>Installer{CopyFile}\{de1db938-0bad-4e59-b325-3e6fcb625844}-strings_fr.xml</ZipFileName> + <DestinationFilename>%Language%\File Explorer\strings_fr.xml</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>AlwaysOverwrite</UpdateOption> + <LocalFileName>..\Language\strings_it.xml</LocalFileName> + <ZipFileName>Installer{CopyFile}\{747f09b1-c06e-4ed0-95f0-82b6b62ffb44}-strings_it.xml</ZipFileName> + <DestinationFilename>%Language%\File Explorer\strings_it.xml</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>AlwaysOverwrite</UpdateOption> + <LocalFileName>..\Language\strings_nl.xml</LocalFileName> + <ZipFileName>Installer{CopyFile}\{25f11d01-6dae-416f-ba85-d78d1b4c376e}-strings_nl.xml</ZipFileName> + <DestinationFilename>%Language%\File Explorer\strings_nl.xml</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>AlwaysOverwrite</UpdateOption> + <LocalFileName>..\Language\strings_pl.xml</LocalFileName> + <ZipFileName>Installer{CopyFile}\{bb5a67db-3744-4613-83fe-aaef3748ba89}-strings_pl.xml</ZipFileName> + <DestinationFilename>%Language%\File Explorer\strings_pl.xml</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="true" Modified="true"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\file_explorer.png</LocalFileName> + <ZipFileName>Installer{CopyFile}\{d80c8e02-7668-4d7e-bad8-e3e8d5299f49}-file_explorer.png</ZipFileName> + <DestinationFilename /> + </FileItem> + </Items> + </UniqueFileList> + <ProjectSettings> + <FolderGroups> + <FolderGroup InstallType="CopyFile" SystemFile="false" Modified="true"> + <Param1 /> + <UpdateOption>AlwaysOverwrite</UpdateOption> + <LocalFileName /> + <ZipFileName>Installer{CopyFile}\{94947ec5-7d9b-4957-95d0-caee1f8fda59}-</ZipFileName> + <DestinationFilename>%Skin%\Titan\</DestinationFilename> + <Folder>..\Skin\Titan</Folder> + <Group>Titan Skin</Group> + <Recursive>true</Recursive> + </FolderGroup> + <FolderGroup InstallType="CopyFile" SystemFile="false" Modified="true"> + <Param1 /> + <UpdateOption>AlwaysOverwrite</UpdateOption> + <LocalFileName /> + <ZipFileName>Installer{CopyFile}\{c6e3bdfe-6d85-47b5-908e-fda2602cbf4e}-</ZipFileName> + <DestinationFilename>%Language%\File Explorer\</DestinationFilename> + <Folder>..\Language</Folder> + <Group>Language Files</Group> + <Recursive>true</Recursive> + </FolderGroup> + </FolderGroups> + <ProjectFilename>File Explorer 1.6.2.0.xmp2</ProjectFilename> + <UpdatePath1>E:\SVN\plugins\File Explorer\MpeRelease\update.xml</UpdatePath1> + <UpdatePath2 /> + <UpdatePath3 /> + </ProjectSettings> + <IsSkin>false</IsSkin> +</PackageClass> \ No newline at end of file Added: trunk/plugins/File Explorer/MpeRelease/File Explorer 1.6.2.mpe1 =================================================================== (Binary files differ) Index: trunk/plugins/File Explorer/MpeRelease/File Explorer 1.6.2.mpe1 =================================================================== --- trunk/plugins/File Explorer/MpeRelease/File Explorer 1.6.2.mpe1 2019-07-10 07:30:19 UTC (rev 4959) +++ trunk/plugins/File Explorer/MpeRelease/File Explorer 1.6.2.mpe1 2023-05-25 11:15:49 UTC (rev 4960) Property changes on: trunk/plugins/File Explorer/MpeRelease/File Explorer 1.6.2.mpe1 ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +application/octet-stream \ No newline at end of property Modified: trunk/plugins/File Explorer/MpeRelease/update.xml =================================================================== --- trunk/plugins/File Explorer/MpeRelease/update.xml 2019-07-10 07:30:19 UTC (rev 4959) +++ trunk/plugins/File Explorer/MpeRelease/update.xml 2023-05-25 11:15:49 UTC (rev 4960) @@ -95,7 +95,7 @@ </VersionDescription> <DevelopmentStatus>Rc</DevelopmentStatus> <OnlineLocation>http://mp-plugins.svn.sourceforge.net/viewvc/mp-plugins/trunk/plugins/File Explorer/MpeRelease/File Explorer 1.3.0.0.mpe1</OnlineLocation> - <ReleaseDate>2010-05-04T21:18:08.4089895+04:00</ReleaseDate> + <ReleaseDate>2010-05-04T19:18:08.4089895+02:00</ReleaseDate> <Tags>file, explorer</Tags> <Location>d:\developing\#maintained\File Explorer\MpeRelease\File Explorer 1.3.0.0.mpe1</Location> <Params> @@ -231,7 +231,7 @@ </VersionDescription> <DevelopmentStatus>Stable</DevelopmentStatus> <OnlineLocation>http://mp-plugins.svn.sourceforge.net/viewvc/mp-plugins/trunk/plugins/File Explorer/MpeRelease/File Explorer 1.3.0.0.mpe1</OnlineLocation> - <ReleaseDate>2010-05-04T21:18:08.4089895+04:00</ReleaseDate> + <ReleaseDate>2010-05-04T19:18:08.4089895+02:00</ReleaseDate> <Tags>file, explorer</Tags> <Location>D:\SVN\MP-Plugins\File Explorer\MpeRelease\File Explorer 1.4.0.0.mpe1</Location> <Params> @@ -444,5 +444,166 @@ </ProjectSettings> <IsSkin>false</IsSkin> </PackageClass> + <PackageClass> + <Version>2.0</Version> + <Groups> + <Items> + <GroupItem Name="Default"> + <DisplayName>Default</DisplayName> + <DefaulChecked>true</DefaulChecked> + <Description>Default</Description> + <Files> + <Items /> + </Files> + </GroupItem> + <GroupItem Name="Titan Skin"> + <DisplayName>Titan Skin</DisplayName> + <DefaulChecked>true</DefaulChecked> + <Description>Titan Skin</Description> + <Files> + <Items /> + </Files> + </GroupItem> + <GroupItem Name="Default Skin"> + <DisplayName>Default Skin</DisplayName> + <DefaulChecked>true</DefaulChecked> + <Description>Default Skin</Description> + <Files> + <Items /> + </Files> + </GroupItem> + <GroupItem Name="DefaultWide Skin"> + <DisplayName>DefaultWide Skin</DisplayName> + <DefaulChecked>true</DefaulChecked> + <Description>DefaultWide Skin</Description> + <Files> + <Items /> + </Files> + </GroupItem> + <GroupItem Name="Language Files"> + <DisplayName>Language Files</DisplayName> + <DefaulChecked>true</DefaulChecked> + <Description>Language Files</Description> + <Files> + <Items /> + </Files> + </GroupItem> + </Items> + </Groups> + <Sections> + <Items /> + </Sections> + <Dependencies> + <Items> + <DependencyItem> + <Type>MediaPortal</Type> + <Id /> + <MinVersion> + <Major>1</Major> + <Minor>1</Minor> + <Build>6</Build> + <Revision>27644</Revision> + </MinVersion> + <MaxVersion> + <Major>1</Major> + <Minor>1</Minor> + <Build>6</Build> + <Revision>27644</Revision> + </MaxVersion> + <WarnOnly>false</WarnOnly> + <Message>requires MediaPortal version 1.1.6.27644 to 1.1.6.27644.</Message> + <Name>MediaPortal</Name> + </DependencyItem> + </Items> + </Dependencies> + <PluginDependencies> + <Items /> + </PluginDependencies> + <GeneralInfo> + <Name>File Explorer</Name> + <Id>dd3efdfe-ed9e-44be-9550-813d268556fb</Id> + <Author>Andreas Groß, framug, SilentException, -ltb- (gfx)</Author> + <HomePage>https://www.team-mediaportal.com/extensions/utilities/file-explorer</HomePage> + <ForumPage>https://forum.team-mediaportal.com/threads/file-explorer.72076/</ForumPage> + <UpdateUrl>http://svn.code.sf.net/p/mp-plugins/code/trunk/plugins/File Explorer/MpeRelease/update.xml</UpdateUrl> + <Version> + <Major>1</Major> + <Minor>6</Minor> + <Build>2</Build> + <Revision>0</Revision> + </Version> + <ExtensionDescription>This plugin is able to perform the following actions: + +- Copy +- Move +- Delete +- Rename +- Encrypt/Decrypt +- Compress/Uncompress (files only) +- Hide/Unhide +- Set/Remove Readonly flag +files and directories + +- Creates directories + +- Creates audio and video playlists from directories +- Adds files and directories to audio and video playlists +- Plays audio/video files when selected +- Shows pictures when selected +- Previews textfiles +- Adds MP-TVSeries import path +- Adds MovingPictures import path</ExtensionDescription> + <VersionDescription>Added: +- Compatibility with Windows 11, Mediaportal 1.31 and after +- Dotnet 4.0 +- Localize strings : + +Browse Network +Add MPTV-Series Import Path +Add MovingPictures Import Path +Import path already exists +Import path added + +- Updated about tab in configuration for thanks plugin translators</VersionDescription> + <DevelopmentStatus>Stable</DevelopmentStatus> + <OnlineLocation>http://svn.code.sf.net/p/mp-plugins/code/trunk/plugins/File Explorer/MpeRelease/File Explorer 1.6.2.0.mpe1</OnlineLocation> + <ReleaseDate>2023-05-25T22:13:44</ReleaseDate> + <Tags>file, explorer</Tags> + <Location>E:\SVN\plugins\File Explorer\MpeRelease\File Explorer 1.6.2.mpe1</Location> + <Params> + <Items> + <SectionParam Name="Online Icon"> + <Value /> + <ValueType>String</ValueType> + <Description>The icon file of the package stored online (jpg,png,bmp)</Description> + </SectionParam> + <SectionParam Name="Configuration file"> + <Value /> + <ValueType>Template</ValueType> + <Description>The file used to configure the extension. + If it has .exe extension the will be executed. + If it has .dll extension it's started like MP plugin configuration.</Description> + </SectionParam> + <SectionParam Name="Online Screenshots"> + <Value>http://svn.code.sf.net/p/mp-plugins/code/trunk/plugins/File Explorer/Screenshots/FileExplorer1.jpg;http://svn.code.sf.net/p/mp-plugins/code/trunk/plugins/File Explorer/Screenshots/File Explorer2.jpg;http://svn.code.sf.net/p/mp-plugins/code/trunk/plugins/File Explorer/Screenshots/File Explorer3.jpg;http://svn.code.sf.net/p/mp-plugins/code/trunk/plugins/File Explorer/Screenshots/FileExplorer1.jpg;http://svn.code.sf.net/p/mp-plugins/code/trunk/plugins/File Explorer/Screenshots/File Explorer4.jpg;</Value> + <ValueType>String</ValueType> + <Description>Online stored screenshot urls separated by ; </Description> + </SectionParam> + <SectionParam Name="Force to uninstall on update"> + <Value>YES</Value> + <ValueType>Bool</ValueType> + <Description>Show dialog and force to uninstall previous version when updating an extension. Should only be disabled if you are using an NSIS/MSI installer.</Description> + </SectionParam> + </Items> + </Params> + </GeneralInfo> + <UniqueFileList> + <Items /> + </UniqueFileList> + <ProjectSettings> + <FolderGroups /> + </ProjectSettings> + <IsSkin>false</IsSkin> + </PackageClass> </Items> </ExtensionCollection> \ No newline at end of file Modified: trunk/plugins/File Explorer/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/File Explorer/Properties/AssemblyInfo.cs 2019-07-10 07:30:19 UTC (rev 4959) +++ trunk/plugins/File Explorer/Properties/AssemblyInfo.cs 2023-05-25 11:15:49 UTC (rev 4960) @@ -29,7 +29,7 @@ // You can specify all values by your own or you can build default build and revision // numbers with the '*' character (the default): -[assembly: AssemblyVersion("1.6.1.0")] +[assembly: AssemblyVersion("1.6.2.0")] // MediaPortal plugin version compatibility //[assembly: CompatibleVersion("1.1.6.27644")] Modified: trunk/plugins/File Explorer/Setup.Designer.cs =================================================================== --- trunk/plugins/File Explorer/Setup.Designer.cs 2019-07-10 07:30:19 UTC (rev 4959) +++ trunk/plugins/File Explorer/Setup.Designer.cs 2023-05-25 11:15:49 UTC (rev 4960) @@ -78,6 +78,8 @@ this.label13 = new System.Windows.Forms.Label(); this.label8 = new System.Windows.Forms.Label(); this.label5 = new System.Windows.Forms.Label(); + this.label4 = new System.Windows.Forms.Label(); + this.label6 = new System.Windows.Forms.Label(); this.tabControl1.SuspendLayout(); this.tabPage1.SuspendLayout(); this.groupBox1.SuspendLayout(); @@ -87,9 +89,10 @@ // // btnApply // - this.btnApply.Location = new System.Drawing.Point(383, 310); + this.btnApply.Location = new System.Drawing.Point(574, 477); + this.btnApply.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.btnApply.Name = "btnApply"; - this.btnApply.Size = new System.Drawing.Size(99, 25); + this.btnApply.Size = new System.Drawing.Size(148, 38); this.btnApply.TabIndex = 1; this.btnApply.Text = "&Apply"; this.btnApply.UseVisualStyleBackColor = true; @@ -98,9 +101,10 @@ // btnCancel // this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; - this.btnCancel.Location = new System.Drawing.Point(278, 310); + this.btnCancel.Location = new System.Drawing.Point(417, 477); + this.btnCancel.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.btnCancel.Name = "btnCancel"; - this.btnCancel.Size = new System.Drawing.Size(99, 25); + this.btnCancel.Size = new System.Drawing.Size(148, 38); this.btnCancel.TabIndex = 2; this.btnCancel.Text = "&Cancel"; this.btnCancel.UseVisualStyleBackColor = true; @@ -108,9 +112,10 @@ // // btnOK // - this.btnOK.Location = new System.Drawing.Point(173, 310); + this.btnOK.Location = new System.Drawing.Point(260, 477); + this.btnOK.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.btnOK.Name = "btnOK"; - this.btnOK.Size = new System.Drawing.Size(99, 25); + this.btnOK.Size = new System.Drawing.Size(148, 38); this.btnOK.TabIndex = 3; this.btnOK.Text = "&OK"; this.btnOK.UseVisualStyleBackColor = true; @@ -124,9 +129,10 @@ // this.LibVersion.AutoSize = true; this.LibVersion.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.LibVersion.Location = new System.Drawing.Point(9, 316); + this.LibVersion.Location = new System.Drawing.Point(14, 486); + this.LibVersion.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); this.LibVersion.Name = "LibVersion"; - this.LibVersion.Size = new System.Drawing.Size(57, 13); + this.LibVersion.Size = new System.Drawing.Size(85, 20); this.LibVersion.TabIndex = 19; this.LibVersion.Text = "Version :"; // @@ -134,9 +140,10 @@ // this.VarVersion.AutoSize = true; this.VarVersion.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.VarVersion.Location = new System.Drawing.Point(72, 316); + this.VarVersion.Location = new System.Drawing.Point(108, 486); + this.VarVersion.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); this.VarVersion.Name = "VarVersion"; - this.VarVersion.Size = new System.Drawing.Size(25, 13); + this.VarVersion.Size = new System.Drawing.Size(35, 20); this.VarVersion.TabIndex = 20; this.VarVersion.Text = "ver"; // @@ -144,10 +151,11 @@ // this.tabControl1.Controls.Add(this.tabPage1); this.tabControl1.Controls.Add(this.tabPage2); - this.tabControl1.Location = new System.Drawing.Point(-1, -1); + this.tabControl1.Location = new System.Drawing.Point(-2, -2); + this.tabControl1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.tabControl1.Name = "tabControl1"; this.tabControl1.SelectedIndex = 0; - this.tabControl1.Size = new System.Drawing.Size(498, 305); + this.tabControl1.Size = new System.Drawing.Size(747, 469); this.tabControl1.TabIndex = 0; this.tabControl1.Tag = ""; // @@ -155,9 +163,10 @@ // this.tabPage1.Controls.Add(this.groupBox1); this.tabPage1.Controls.Add(this.lstOptions); - this.tabPage1.Location = new System.Drawing.Point(4, 22); + this.tabPage1.Location = new System.Drawing.Point(4, 29); + this.tabPage1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.tabPage1.Name = "tabPage1"; - this.tabPage1.Size = new System.Drawing.Size(490, 279); + this.tabPage1.Size = new System.Drawing.Size(739, 436); this.tabPage1.TabIndex = 0; this.tabPage1.Text = "Configuration"; this.tabPage1.UseVisualStyleBackColor = true; @@ -170,9 +179,11 @@ this.groupBox1.Controls.Add(this.textBoxFolderLeftMenu); this.groupBox1.Controls.Add(this.labelRight); this.groupBox1.Controls.Add(this.labelLeft); - this.groupBox1.Location = new System.Drawing.Point(9, 159); + this.groupBox1.Location = new System.Drawing.Point(14, 245); + this.groupBox1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.groupBox1.Name = "groupBox1"; - this.groupBox1.Size = new System.Drawing.Size(475, 108); + this.groupBox1.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.groupBox1.Size = new System.Drawing.Size(712, 166); this.groupBox1.TabIndex = 16; this.groupBox1.TabStop = false; // @@ -179,9 +190,10 @@ // btnBrowseRightMenu // this.btnBrowseRightMenu.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.btnBrowseRightMenu.Location = new System.Drawing.Point(397, 75); + this.btnBrowseRightMenu.Location = new System.Drawing.Point(596, 115); + this.btnBrowseRightMenu.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.btnBrowseRightMenu.Name = "btnBrowseRightMenu"; - this.btnBrowseRightMenu.Size = new System.Drawing.Size(74, 20); + this.btnBrowseRightMenu.Size = new System.Drawing.Size(111, 31); this.btnBrowseRightMenu.TabIndex = 21; this.btnBrowseRightMenu.Text = "Browse"; this.btnBrowseRightMenu.UseVisualStyleBackColor = true; @@ -190,9 +202,10 @@ // btnBrowseLeftMenu // this.btnBrowseLeftMenu.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.btnBrowseLeftMenu.Location = new System.Drawing.Point(397, 29); + this.btnBrowseLeftMenu.Location = new System.Drawing.Point(596, 45); + this.btnBrowseLeftMenu.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.btnBrowseLeftMenu.Name = "btnBrowseLeftMenu"; - this.btnBrowseLeftMenu.S... [truncated message content] |