From: <ro...@us...> - 2011-05-26 14:56:39
|
Revision: 4221 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=4221&view=rev Author: rolenof Date: 2011-05-26 14:56:33 +0000 (Thu, 26 May 2011) Log Message: ----------- Fixes for MP-1.2. Now burner finally works. Uncommented Eject option. Modified Paths: -------------- trunk/plugins/Burner/Burner/BurnDataDVD.cs trunk/plugins/Burner/Burner/BurnVideoDVD.cs trunk/plugins/Burner/Burner/Burner.csproj trunk/plugins/Burner/Burner/GUIBurner.cs trunk/plugins/Burner/Burner/Properties/AssemblyInfo.cs trunk/plugins/Burner/Burner/SetupForm.cs trunk/plugins/Burner/XPImapiBurner/AssemblyInfo.cs trunk/plugins/Burner/XPImapiBurner/XPImapiBurner.csproj Modified: trunk/plugins/Burner/Burner/BurnDataDVD.cs =================================================================== --- trunk/plugins/Burner/Burner/BurnDataDVD.cs 2011-05-25 18:59:47 UTC (rev 4220) +++ trunk/plugins/Burner/Burner/BurnDataDVD.cs 2011-05-26 14:56:33 UTC (rev 4221) @@ -248,7 +248,7 @@ BurnerProcess = new Process(); BurnerProcess.EnableRaisingEvents = true; - BurnerProcess.StartInfo.WorkingDirectory = Config.GetFolder(Config.Dir.BurnerSupport); + BurnerProcess.StartInfo.WorkingDirectory = Config.GetSubFolder(Config.Dir.Base, @"Burner\"); BurnerProcess.StartInfo.UseShellExecute = false; if (!_InDebugMode) // Show output if in Debug mode @@ -261,7 +261,7 @@ string imgFolder = Path.Combine(_TempFolderPath, "DVD_Image"); string isofile = Path.Combine(_TempFolderPath, "dvd.iso"); - BurnerProcess.StartInfo.FileName = Config.GetFile(Config.Dir.BurnerSupport, "mkisofs.exe"); + BurnerProcess.StartInfo.FileName = Config.GetFile(Config.Dir.Base, @"Burner\", "mkisofs.exe"); string args = "-V " + discName + " -l -allow-lowercase -o \"" + isofile + "\" \"" + imgFolder + "\""; BurnerProcess.StartInfo.Arguments = args; @@ -414,7 +414,7 @@ BurnerProcess = new Process(); BurnerProcess.EnableRaisingEvents = true; // Gets or sets whether the Exited event should be raised when the process terminates. - BurnerProcess.StartInfo.WorkingDirectory = Config.GetFolder(Config.Dir.BurnerSupport); + BurnerProcess.StartInfo.WorkingDirectory = Config.GetSubFolder(Config.Dir.Base, @"Burner\"); BurnerProcess.StartInfo.UseShellExecute = false; if (!_InDebugMode) // Show output if in Debug mode Modified: trunk/plugins/Burner/Burner/BurnVideoDVD.cs =================================================================== --- trunk/plugins/Burner/Burner/BurnVideoDVD.cs 2011-05-25 18:59:47 UTC (rev 4220) +++ trunk/plugins/Burner/Burner/BurnVideoDVD.cs 2011-05-26 14:56:33 UTC (rev 4221) @@ -266,13 +266,13 @@ SW_MenuGen.WriteLine(strTemp); SW_MenuGen.WriteLine(@"Work Folder =" + _TempFolderPath); - SW_MenuGen.WriteLine(@"Graphics Magick =" + Config.GetFile(Config.Dir.BurnerSupport, "gm.exe")); - SW_MenuGen.WriteLine(@"Mplex =" + Config.GetFile(Config.Dir.BurnerSupport, "mplex.exe")); - SW_MenuGen.WriteLine(@"jpeg2yuv =" + Config.GetFile(Config.Dir.BurnerSupport, "png2yuv.exe")); - SW_MenuGen.WriteLine(@"mpeg2enc =" + Config.GetFile(Config.Dir.BurnerSupport, "mpeg2enc.exe")); - SW_MenuGen.WriteLine(@"spumux =" + Config.GetFile(Config.Dir.BurnerSupport, "spumux.exe")); - SW_MenuGen.WriteLine(@"AC3 audio =" + Config.GetFile(Config.Dir.BurnerSupport, "Silence.ac3")); - SW_MenuGen.WriteLine(@"Button Image =" + Config.GetFile(Config.Dir.BurnerSupport, "navButton.png")); + SW_MenuGen.WriteLine(@"Graphics Magick =" + Config.GetFile(Config.Dir.Base, @"Burner\", "gm.exe")); + SW_MenuGen.WriteLine(@"Mplex =" + Config.GetFile(Config.Dir.Base, @"Burner\", "mplex.exe")); + SW_MenuGen.WriteLine(@"jpeg2yuv =" + Config.GetFile(Config.Dir.Base, @"Burner\", "png2yuv.exe")); + SW_MenuGen.WriteLine(@"mpeg2enc =" + Config.GetFile(Config.Dir.Base, @"Burner\", "mpeg2enc.exe")); + SW_MenuGen.WriteLine(@"spumux =" + Config.GetFile(Config.Dir.Base, @"Burner\", "spumux.exe")); + SW_MenuGen.WriteLine(@"AC3 audio =" + Config.GetFile(Config.Dir.Base, @"Burner\", "Silence.ac3")); + SW_MenuGen.WriteLine(@"Button Image =" + Config.GetFile(Config.Dir.Base, @"Burner\", "navButton.png")); SW_MenuGen.WriteLine(@"DVD Format (PAL or NTSC)=" + _TvFormat.ToUpper()); if (_InDebugMode) @@ -293,7 +293,7 @@ strTemp = "-------------------------Video " + i.ToString() + " -------------------------"; SW_MenuGen.WriteLine(strTemp); - strTemp = Path.GetFileName(_FilesToBurn[i]); + strTemp = Path.GetFileName((string)_FileNames[i]);// There was __FilesToBurn[i] string strVideoName = Path.GetFileNameWithoutExtension(strTemp); strTemp = "Video " + i.ToString() + @" Show Title= " + strVideoName; SW_MenuGen.WriteLine(strTemp); @@ -324,7 +324,7 @@ // Copy menugen to strTempFolder. // Needs to be in same dir as the menuGen.gen file we just made above - string SourceFile = Config.GetFile(Config.Dir.BurnerSupport, "menuGen.exe"); + string SourceFile = Config.GetFile(Config.Dir.Base, @"Burner\", "menuGen.exe"); string DestFile = Path.Combine(_TempFolderPath, "menuGen.exe"); File.Copy(SourceFile, DestFile); @@ -422,8 +422,8 @@ SW_ConfigFile.WriteLine(" <titles>"); SW_ConfigFile.WriteLine(" <video format=\"" + _TvFormat + "\" />"); SW_ConfigFile.WriteLine(" <pgc>"); - strTemp = " <vob file=\"" + _FilesToBurn[i] + - "\" chapters=\"15:00,30:00,45:00,1:00:00,1:15:00,1:30:00,1:45:00,2:00:00,2:15:00,2:30:00,2:45:00,3:00:00\" />"; + strTemp = " <vob file=\"" + Path.Combine(_TempFolderPath, "F") + (i + 1).ToString() + ".mpg" + + "\" chapters=\"15:00,30:00,45:00,1:00:00,1:15:00,1:30:00,1:45:00,2:00:00,2:15:00,2:30:00,2:45:00,3:00:00\" />";// FIXME There was _FilesToBurn[i] SW_ConfigFile.WriteLine(strTemp); SW_ConfigFile.WriteLine(" <post>call vmgm menu;</post>"); SW_ConfigFile.WriteLine(" </pgc>"); @@ -475,7 +475,7 @@ Directory.CreateDirectory(imgFolder); } - BurnerProcess.StartInfo.FileName = Config.GetFile(Config.Dir.BurnerSupport, "dvdauthor.exe"); + BurnerProcess.StartInfo.FileName = Config.GetFile(Config.Dir.Base, @"Burner\", "dvdauthor.exe"); string args = "-o \"" + imgFolder + "\" -x \"" + cfgfile + "\""; BurnerProcess.StartInfo.Arguments = args; @@ -512,7 +512,7 @@ BurnerProcess = new Process(); BurnerProcess.EnableRaisingEvents = true; - BurnerProcess.StartInfo.WorkingDirectory = Config.GetFolder(Config.Dir.BurnerSupport); + BurnerProcess.StartInfo.WorkingDirectory = Config.GetSubFolder(Config.Dir.Base, @"Burner\"); BurnerProcess.StartInfo.UseShellExecute = false; if (!_InDebugMode) // Show output if in Debug mode @@ -525,7 +525,7 @@ string imgFolder = Path.Combine(_TempFolderPath, "DVD_Image"); string isofile = Path.Combine(_TempFolderPath, "dvd.iso"); - BurnerProcess.StartInfo.FileName = Config.GetFile(Config.Dir.BurnerSupport, "mkisofs.exe"); + BurnerProcess.StartInfo.FileName = Config.GetFile(Config.Dir.Base, @"Burner\", "mkisofs.exe"); string args = "-V " + discName + " -o \"" + isofile + "\" -dvd-video \"" + imgFolder + "\""; BurnerProcess.StartInfo.Arguments = args; @@ -653,6 +653,7 @@ ///<summary>Called for each File Stepping through the File Conversion(s).</summary> private void NextStep_FileConversion() { + Log.Debug("NextStep_FileConversion", "CurrentState: " + _CurrentConvertState.ToString() + " CurrentFile: " + _CurrentFileName); switch (_CurrentConvertState) @@ -665,10 +666,11 @@ ProvideStatusUpdate("Converting \"" + strFileName + "\" to DVD format"); - string DestinationFilePath = Path.GetFileNameWithoutExtension(_CurrentFileName); - DestinationFilePath = DestinationFilePath + ".mpg"; - DestinationFilePath = Path.Combine(_TempFolderPath, DestinationFilePath); + //string DestinationFilePath = Path.GetFileNameWithoutExtension(_CurrentFileName); + //DestinationFilePath = DestinationFilePath + ".mpg"; + string DestinationFilePath = Path.Combine(_TempFolderPath, ""); + //string string DestinationFilePath = _TempFolderPath; string SourceFilePath = _CurrentFileName; @@ -682,7 +684,7 @@ BurnerProcess = new Process(); BurnerProcess.EnableRaisingEvents = true; // Gets or sets whether the Exited event should be raised when the process terminates. - BurnerProcess.StartInfo.WorkingDirectory = Config.GetFolder(Config.Dir.BurnerSupport); + BurnerProcess.StartInfo.WorkingDirectory = Config.GetSubFolder(Config.Dir.Base, @"Burner\"); BurnerProcess.StartInfo.UseShellExecute = false; if (!_InDebugMode) // Show output if in Debug mode @@ -691,20 +693,20 @@ BurnerProcess.StartInfo.CreateNoWindow = true; } - BurnerProcess.StartInfo.FileName = Config.GetFile(Config.Dir.BurnerSupport, "mencoder.exe"); + BurnerProcess.StartInfo.FileName = Config.GetFile(Config.Dir.Base, @"Burner\", "mencoder.exe"); string args = string.Empty; if (_TvFormat.ToUpper() == "PAL") { args = "-oac lavc -ovc lavc -of mpeg -mpegopts format=dvd:tsaf -vf scale=720:576,harddup -srate 48000 -af lavcresample=48000 -lavcopts vcodec=mpeg2video:vrc_buf_size=1835:vrc_maxrate=9800:vbitrate=5000:keyint=15:acodec=ac3:abitrate=192:aspect=" + - _AspectRatio + " -ofps 25 -o \"" + DestinationFilePath + "\" \"" + SourceFilePath + "\" "; + _AspectRatio + " -ofps 25 -o \"" + DestinationFilePath + "\\F" + _FileNameCount.ToString() + ".mpg" + "\" \"" + SourceFilePath + "\" "; } else { args = "-oac lavc -ovc lavc -of mpeg -mpegopts format=dvd:tsaf -vf scale=720:480,harddup -srate 48000 -af lavcresample=48000 -lavcopts vcodec=mpeg2video:vrc_buf_size=1835:vrc_maxrate=9800:vbitrate=5000:keyint=18:acodec=ac3:abitrate=192:aspect=" + - _AspectRatio + " -ofps 30000/1001 -o \"" + DestinationFilePath + "\" \"" + SourceFilePath + "\" "; + _AspectRatio + " -ofps 30000/1001 -o \"" + DestinationFilePath + "\\F" + _FileNameCount.ToString() + ".mpg" + "\" \"" + SourceFilePath + "\" "; } BurnerProcess.StartInfo.Arguments = args; Modified: trunk/plugins/Burner/Burner/Burner.csproj =================================================================== --- trunk/plugins/Burner/Burner/Burner.csproj 2011-05-25 18:59:47 UTC (rev 4220) +++ trunk/plugins/Burner/Burner/Burner.csproj 2011-05-26 14:56:33 UTC (rev 4221) @@ -31,11 +31,15 @@ <WarningLevel>4</WarningLevel> </PropertyGroup> <ItemGroup> + <Reference Include="Common.Utils, Version=1.1.7.0, Culture=neutral, processorArchitecture=x86"> + <SpecificVersion>False</SpecificVersion> + <HintPath>..\..\..\Program Files\Team MediaPortal\MediaPortal\Common.Utils.dll</HintPath> + </Reference> <Reference Include="Core"> - <HintPath>..\..\..\..\..\MediaPortal\trunk\mediaportal\Core\bin\Release\Core.dll</HintPath> + <HintPath>..\..\..\Program Files\Team MediaPortal\MediaPortal\Core.dll</HintPath> </Reference> <Reference Include="Dialogs"> - <HintPath>..\..\..\..\..\MediaPortal\trunk\mediaportal\Dialogs\bin\Release\Dialogs.dll</HintPath> + <HintPath>..\..\..\Program Files\Team MediaPortal\MediaPortal\plugins\Windows\Dialogs.dll</HintPath> </Reference> <Reference Include="System" /> <Reference Include="System.Core" /> @@ -46,7 +50,7 @@ <Reference Include="System.Data" /> <Reference Include="System.Xml" /> <Reference Include="Utils"> - <HintPath>..\..\..\..\..\MediaPortal\trunk\mediaportal\Utils\bin\Release\Utils.dll</HintPath> + <HintPath>..\..\..\Program Files\Team MediaPortal\MediaPortal\Utils.dll</HintPath> </Reference> </ItemGroup> <ItemGroup> @@ -76,6 +80,9 @@ </ProjectReference> </ItemGroup> <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> + <PropertyGroup> + <PostBuildEvent>$(TargetDir)copy.bat</PostBuildEvent> + </PropertyGroup> <!-- To modify your build process, add your task inside one of the targets below and uncomment it. Other similar extension points exist, see Microsoft.Common.targets. <Target Name="BeforeBuild"> Modified: trunk/plugins/Burner/Burner/GUIBurner.cs =================================================================== --- trunk/plugins/Burner/Burner/GUIBurner.cs 2011-05-25 18:59:47 UTC (rev 4220) +++ trunk/plugins/Burner/Burner/GUIBurner.cs 2011-05-26 14:56:33 UTC (rev 4221) @@ -34,7 +34,6 @@ using MediaPortal.TagReader; using MediaPortal.Util; using XPBurn; -using Action = MediaPortal.GUI.Library.Action; namespace MediaPortal.GUI.GUIBurner { @@ -162,7 +161,7 @@ public GUIBurner() { - GetID = (int)Window.WINDOW_MY_BURNER; + GetID = 760;//(int)Window.WINDOW_MY_BURNER; } #endregion @@ -219,13 +218,16 @@ video_extensions.Add(".mpg"); video_extensions.Add(".divx"); video_extensions.Add(".avi"); + video_extensions.Add(".ts"); + video_extensions.Add(".mp4"); + video_extensions.Add(".flv"); return Load(GUIGraphicsContext.Skin + @"\myburner.xml"); } - public override void OnAction(Action action) + public override void OnAction(MediaPortal.GUI.Library.Action action) { - if (action.wID == Action.ActionType.ACTION_PREVIOUS_MENU) + if (action.wID == MediaPortal.GUI.Library.Action.ActionType.ACTION_PREVIOUS_MENU) { GUIWindowManager.ShowPreviousWindow(); return; @@ -429,7 +431,7 @@ int iAction = (int)message.Param1; files.Clear(); - if (iAction == (int)Action.ActionType.ACTION_SELECT_ITEM) + if (iAction == (int)MediaPortal.GUI.Library.Action.ActionType.ACTION_SELECT_ITEM) { bool sel = true; GUIListItem item = GUIControl.GetSelectedListItem(GetID, (int)Controls.CONTROL_LIST_COPY); @@ -489,7 +491,7 @@ int iItem = (int)msg.Param1; int iAction = (int)message.Param1; - if (iAction == (int)Action.ActionType.ACTION_SELECT_ITEM) + if (iAction == (int)MediaPortal.GUI.Library.Action.ActionType.ACTION_SELECT_ITEM) { GUIListItem item = GUIControl.GetSelectedListItem(GetID, (int)Controls.CONTROL_LIST_DIR); if (item.Label.StartsWith("..")) // go back folder @@ -588,9 +590,13 @@ currentFolder = currentFolder.Remove(indx, 1); } - GUIListItem pItem = new GUIListItem(item); + ThumbnailExtractor thmbEx = new ThumbnailExtractor(); + System.Drawing.Bitmap image = thmbEx.GetThumbnail(item.Path.ToString()); + GUIListItem pItem = new GUIListItem(item); + pItem.RefreshCoverArt(); + // Work out how big the CD/DVD is so far...both in terms of file size (used for Data) and play length (user for Audio/Video) totalSize = totalSize + pItem.FileInfo.Length; @@ -979,9 +985,9 @@ //GUIControl.ShowControl(GetID, (int)Controls.CONTROL_BUTTON5); //GUIControl.EnableControl(GetID, (int)Controls.CONTROL_BUTTON5); - //GUIControl.SetControlLabel(GetID, (int)Controls.CONTROL_BUTTON6, GUILocalizeStrings.Get(2126)); //Eject CD/DVD - //GUIControl.ShowControl(GetID, (int)Controls.CONTROL_BUTTON6); - //GUIControl.EnableControl(GetID, (int)Controls.CONTROL_BUTTON6); + GUIControl.SetControlLabel(GetID, (int)Controls.CONTROL_BUTTON6, GUILocalizeStrings.Get(2126)); //Eject CD/DVD + GUIControl.ShowControl(GetID, (int)Controls.CONTROL_BUTTON6); + GUIControl.EnableControl(GetID, (int)Controls.CONTROL_BUTTON6); break; case States.STATE_VIDEO: // Video Menu @@ -1241,7 +1247,7 @@ GUIListItem Item = new GUIListItem(); Item.Path = Path.GetDirectoryName(FileName); Item.Label = Path.GetFileName(FileName); - + GUIControl.AddListItemControl(GetID, (int)Controls.CONTROL_LIST_COPY, Item); Log.Info("MyBurner Added Audio File From Audio Playlist: {0}", FileName); @@ -1279,7 +1285,7 @@ try { FilePathsToBurn.Add(cItem.Path); - Log.Info("BurnDVD Add File: {0}", cItem.Path + "\\" + cItem.Label); + Log.Info("BurnDVD Add File: {0}", cItem.Path); } catch (Exception ex) { Modified: trunk/plugins/Burner/Burner/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/Burner/Burner/Properties/AssemblyInfo.cs 2011-05-25 18:59:47 UTC (rev 4220) +++ trunk/plugins/Burner/Burner/Properties/AssemblyInfo.cs 2011-05-26 14:56:33 UTC (rev 4221) @@ -2,6 +2,11 @@ using System.Runtime.CompilerServices; using System.Runtime.InteropServices; +//MP plugin compability check +using MediaPortal.Common.Utils; +[assembly: CompatibleVersion("1.1.7.0")] +[assembly: UsesSubsystem("MP")] + // Allgemeine Informationen über eine Assembly werden über die folgenden // Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern, // die mit einer Assembly verknüpft sind. Modified: trunk/plugins/Burner/Burner/SetupForm.cs =================================================================== --- trunk/plugins/Burner/Burner/SetupForm.cs 2011-05-25 18:59:47 UTC (rev 4220) +++ trunk/plugins/Burner/Burner/SetupForm.cs 2011-05-26 14:56:33 UTC (rev 4221) @@ -199,7 +199,7 @@ bool found = false; try { - string cygwinPath = Config.GetFile(Config.Dir.BurnerSupport, "mkisofs.exe"); + string cygwinPath = Config.GetFile(Config.Dir.Base, @"Burner\", "mkisofs.exe"); if (File.Exists(cygwinPath)) { found = true; Modified: trunk/plugins/Burner/XPImapiBurner/AssemblyInfo.cs =================================================================== --- trunk/plugins/Burner/XPImapiBurner/AssemblyInfo.cs 2011-05-25 18:59:47 UTC (rev 4220) +++ trunk/plugins/Burner/XPImapiBurner/AssemblyInfo.cs 2011-05-26 14:56:33 UTC (rev 4221) @@ -20,6 +20,11 @@ using System.Reflection; +//MP plugin compability check +using MediaPortal.Common.Utils; +[assembly: CompatibleVersion("1.1.7.0")] +[assembly: UsesSubsystem("MP")] + // // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information Modified: trunk/plugins/Burner/XPImapiBurner/XPImapiBurner.csproj =================================================================== --- trunk/plugins/Burner/XPImapiBurner/XPImapiBurner.csproj 2011-05-25 18:59:47 UTC (rev 4220) +++ trunk/plugins/Burner/XPImapiBurner/XPImapiBurner.csproj 2011-05-26 14:56:33 UTC (rev 4221) @@ -118,6 +118,9 @@ <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> </PropertyGroup> <ItemGroup> + <Reference Include="Common.Utils"> + <HintPath>..\..\..\Program Files\Team MediaPortal\MediaPortal\Common.Utils.dll</HintPath> + </Reference> <Reference Include="System"> <Name>System</Name> </Reference> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ro...@us...> - 2011-05-26 15:17:54
|
Revision: 4222 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=4222&view=rev Author: rolenof Date: 2011-05-26 15:17:45 +0000 (Thu, 26 May 2011) Log Message: ----------- A little relocation. Branch with patch for mp 1.1.3 added Added Paths: ----------- trunk/plugins/Burner/tags/ trunk/plugins/Burner/tags/1.1.3fix/ trunk/plugins/Burner/tags/1.1.3fix/Burner/ trunk/plugins/Burner/tags/1.1.3fix/Burner/BurnDVDEvents.cs trunk/plugins/Burner/tags/1.1.3fix/Burner/BurnDataDVD.cs trunk/plugins/Burner/tags/1.1.3fix/Burner/BurnVideoDVD.cs trunk/plugins/Burner/tags/1.1.3fix/Burner/Burner.csproj trunk/plugins/Burner/tags/1.1.3fix/Burner/Burner.gif trunk/plugins/Burner/tags/1.1.3fix/Burner/BurnerDisabled.gif trunk/plugins/Burner/tags/1.1.3fix/Burner/GUIBurner.cs trunk/plugins/Burner/tags/1.1.3fix/Burner/MadlldlibWrapper.cs trunk/plugins/Burner/tags/1.1.3fix/Burner/Properties/ trunk/plugins/Burner/tags/1.1.3fix/Burner/Properties/AssemblyInfo.cs trunk/plugins/Burner/tags/1.1.3fix/Burner/SetupForm.cs trunk/plugins/Burner/tags/1.1.3fix/Burner/SetupForm.resx trunk/plugins/Burner/tags/1.1.3fix/Burner.sln trunk/plugins/Burner/tags/1.1.3fix/Skin/ trunk/plugins/Burner/tags/1.1.3fix/Skin/Blue3/ trunk/plugins/Burner/tags/1.1.3fix/Skin/Blue3/Media/ trunk/plugins/Burner/tags/1.1.3fix/Skin/Blue3/Media/burn_logo.png trunk/plugins/Burner/tags/1.1.3fix/Skin/Blue3/Media/hover_my burner.png trunk/plugins/Burner/tags/1.1.3fix/Skin/Blue3/myburner.xml trunk/plugins/Burner/tags/1.1.3fix/Skin/Blue3wide/ trunk/plugins/Burner/tags/1.1.3fix/Skin/Blue3wide/Media/ trunk/plugins/Burner/tags/1.1.3fix/Skin/Blue3wide/Media/burn_logo.png trunk/plugins/Burner/tags/1.1.3fix/Skin/Blue3wide/Media/hover_my burner.png trunk/plugins/Burner/tags/1.1.3fix/Skin/Blue3wide/myburner.xml trunk/plugins/Burner/tags/1.1.3fix/XPImapiBurner/ trunk/plugins/Burner/tags/1.1.3fix/XPImapiBurner/AssemblyInfo.cs trunk/plugins/Burner/tags/1.1.3fix/XPImapiBurner/XPBurn.cs trunk/plugins/Burner/tags/1.1.3fix/XPImapiBurner/XPBurnCom.cs trunk/plugins/Burner/tags/1.1.3fix/XPImapiBurner/XPBurnConsts.cs trunk/plugins/Burner/tags/1.1.3fix/XPImapiBurner/XPBurnDelegates.cs trunk/plugins/Burner/tags/1.1.3fix/XPImapiBurner/XPBurnEnumStorageElements.cs trunk/plugins/Burner/tags/1.1.3fix/XPImapiBurner/XPBurnEnums.cs trunk/plugins/Burner/tags/1.1.3fix/XPImapiBurner/XPBurnExceptions.cs trunk/plugins/Burner/tags/1.1.3fix/XPImapiBurner/XPBurnIStorage.cs trunk/plugins/Burner/tags/1.1.3fix/XPImapiBurner/XPBurnIStream.cs trunk/plugins/Burner/tags/1.1.3fix/XPImapiBurner/XPBurnMessageQueue.cs trunk/plugins/Burner/tags/1.1.3fix/XPImapiBurner/XPBurnMessageQueue.resx trunk/plugins/Burner/tags/1.1.3fix/XPImapiBurner/XPBurnProgressEvents.cs trunk/plugins/Burner/tags/1.1.3fix/XPImapiBurner/XPBurnStructs.cs trunk/plugins/Burner/tags/1.1.3fix/XPImapiBurner/XPImapiBurner.csproj trunk/plugins/Burner/trunk/ trunk/plugins/Burner/trunk/Burner/ trunk/plugins/Burner/trunk/Burner/BurnDVDEvents.cs trunk/plugins/Burner/trunk/Burner/BurnDataDVD.cs trunk/plugins/Burner/trunk/Burner/BurnVideoDVD.cs trunk/plugins/Burner/trunk/Burner/Burner.csproj trunk/plugins/Burner/trunk/Burner/Burner.csproj.user trunk/plugins/Burner/trunk/Burner/Burner.gif trunk/plugins/Burner/trunk/Burner/BurnerDisabled.gif trunk/plugins/Burner/trunk/Burner/GUIBurner.cs trunk/plugins/Burner/trunk/Burner/MadlldlibWrapper.cs trunk/plugins/Burner/trunk/Burner/Properties/ trunk/plugins/Burner/trunk/Burner/Properties/AssemblyInfo.cs trunk/plugins/Burner/trunk/Burner/SetupForm.cs trunk/plugins/Burner/trunk/Burner/SetupForm.resx trunk/plugins/Burner/trunk/Burner.sln trunk/plugins/Burner/trunk/Skin/ trunk/plugins/Burner/trunk/Skin/Blue3/ trunk/plugins/Burner/trunk/Skin/Blue3/Media/ trunk/plugins/Burner/trunk/Skin/Blue3/Media/burn_logo.png trunk/plugins/Burner/trunk/Skin/Blue3/Media/hover_my burner.png trunk/plugins/Burner/trunk/Skin/Blue3/myburner.xml trunk/plugins/Burner/trunk/Skin/Blue3wide/ trunk/plugins/Burner/trunk/Skin/Blue3wide/Media/ trunk/plugins/Burner/trunk/Skin/Blue3wide/Media/burn_logo.png trunk/plugins/Burner/trunk/Skin/Blue3wide/Media/hover_my burner.png trunk/plugins/Burner/trunk/Skin/Blue3wide/myburner.xml trunk/plugins/Burner/trunk/XPImapiBurner/ trunk/plugins/Burner/trunk/XPImapiBurner/AssemblyInfo.cs trunk/plugins/Burner/trunk/XPImapiBurner/XPBurn.cs trunk/plugins/Burner/trunk/XPImapiBurner/XPBurnCom.cs trunk/plugins/Burner/trunk/XPImapiBurner/XPBurnConsts.cs trunk/plugins/Burner/trunk/XPImapiBurner/XPBurnDelegates.cs trunk/plugins/Burner/trunk/XPImapiBurner/XPBurnEnumStorageElements.cs trunk/plugins/Burner/trunk/XPImapiBurner/XPBurnEnums.cs trunk/plugins/Burner/trunk/XPImapiBurner/XPBurnExceptions.cs trunk/plugins/Burner/trunk/XPImapiBurner/XPBurnIStorage.cs trunk/plugins/Burner/trunk/XPImapiBurner/XPBurnIStream.cs trunk/plugins/Burner/trunk/XPImapiBurner/XPBurnMessageQueue.cs trunk/plugins/Burner/trunk/XPImapiBurner/XPBurnMessageQueue.resx trunk/plugins/Burner/trunk/XPImapiBurner/XPBurnProgressEvents.cs trunk/plugins/Burner/trunk/XPImapiBurner/XPBurnStructs.cs trunk/plugins/Burner/trunk/XPImapiBurner/XPImapiBurner.csproj Removed Paths: ------------- trunk/plugins/Burner/Burner/ trunk/plugins/Burner/Burner.sln trunk/plugins/Burner/Skin/ trunk/plugins/Burner/XPImapiBurner/ Deleted: trunk/plugins/Burner/Burner.sln =================================================================== --- trunk/plugins/Burner/Burner.sln 2011-05-26 14:56:33 UTC (rev 4221) +++ trunk/plugins/Burner/Burner.sln 2011-05-26 15:17:45 UTC (rev 4222) @@ -1,34 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 11.00 -# Visual Studio 2010 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Burner", "Burner\Burner.csproj", "{D3161CBB-7179-47A3-B05E-79DBF48EFF62}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XPImapiBurner", "XPImapiBurner\XPImapiBurner.csproj", "{F2B349EB-67F5-48E3-9BE2-EC5BA8F010C7}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Debug|x86 = Debug|x86 - Release|Any CPU = Release|Any CPU - Release|x86 = Release|x86 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {D3161CBB-7179-47A3-B05E-79DBF48EFF62}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {D3161CBB-7179-47A3-B05E-79DBF48EFF62}.Debug|Any CPU.Build.0 = Debug|Any CPU - {D3161CBB-7179-47A3-B05E-79DBF48EFF62}.Debug|x86.ActiveCfg = Debug|Any CPU - {D3161CBB-7179-47A3-B05E-79DBF48EFF62}.Release|Any CPU.ActiveCfg = Release|Any CPU - {D3161CBB-7179-47A3-B05E-79DBF48EFF62}.Release|Any CPU.Build.0 = Release|Any CPU - {D3161CBB-7179-47A3-B05E-79DBF48EFF62}.Release|x86.ActiveCfg = Release|Any CPU - {F2B349EB-67F5-48E3-9BE2-EC5BA8F010C7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {F2B349EB-67F5-48E3-9BE2-EC5BA8F010C7}.Debug|Any CPU.Build.0 = Debug|Any CPU - {F2B349EB-67F5-48E3-9BE2-EC5BA8F010C7}.Debug|x86.ActiveCfg = Debug|x86 - {F2B349EB-67F5-48E3-9BE2-EC5BA8F010C7}.Debug|x86.Build.0 = Debug|x86 - {F2B349EB-67F5-48E3-9BE2-EC5BA8F010C7}.Release|Any CPU.ActiveCfg = Release|Any CPU - {F2B349EB-67F5-48E3-9BE2-EC5BA8F010C7}.Release|Any CPU.Build.0 = Release|Any CPU - {F2B349EB-67F5-48E3-9BE2-EC5BA8F010C7}.Release|x86.ActiveCfg = Release|x86 - {F2B349EB-67F5-48E3-9BE2-EC5BA8F010C7}.Release|x86.Build.0 = Release|x86 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal Added: trunk/plugins/Burner/tags/1.1.3fix/Burner/BurnDVDEvents.cs =================================================================== --- trunk/plugins/Burner/tags/1.1.3fix/Burner/BurnDVDEvents.cs (rev 0) +++ trunk/plugins/Burner/tags/1.1.3fix/Burner/BurnDVDEvents.cs 2011-05-26 15:17:45 UTC (rev 4222) @@ -0,0 +1,80 @@ +#region Copyright (C) 2005-2010 Team MediaPortal + +// Copyright (C) 2005-2010 Team MediaPortal +// http://www.team-mediaportal.com +// +// MediaPortal is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 2 of the License, or +// (at your option) any later version. +// +// MediaPortal is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with MediaPortal. If not, see <http://www.gnu.org/licenses/>. + +#endregion + +using System; + +namespace MediaPortal.GUI.GUIBurner +{ + + #region EventArgs Classes + + public class FileFinishedEventArgs : EventArgs + { + public string SourceFile; + public string DestinationFile; + + public FileFinishedEventArgs(string inputFileName, string outputFileName) + { + SourceFile = inputFileName; + DestinationFile = outputFileName; + } + } + + public class ProcessExitedEventArgs : EventArgs + { + public string ProcessName; + public string DestinationFile; + + public ProcessExitedEventArgs(string ProcessExitedName) + { + ProcessName = ProcessExitedName; + } + } + + public class BurnDVDErrorEventArgs : EventArgs + { + public string Error_Process; + public string Error_Text; + + public BurnDVDErrorEventArgs(string ErrorProcess, string ErrorText) + { + Error_Process = ErrorProcess; + Error_Text = ErrorText; + } + } + + public class BurnDVDStatusUpdateEventArgs : EventArgs + { + private string _Status; + + public BurnDVDStatusUpdateEventArgs(string StatusString) + { + _Status = StatusString; + } + + public string Status + { + get { return _Status; } + set { _Status = value; } + } + } + + #endregion +} \ No newline at end of file Added: trunk/plugins/Burner/tags/1.1.3fix/Burner/BurnDataDVD.cs =================================================================== --- trunk/plugins/Burner/tags/1.1.3fix/Burner/BurnDataDVD.cs (rev 0) +++ trunk/plugins/Burner/tags/1.1.3fix/Burner/BurnDataDVD.cs 2011-05-26 15:17:45 UTC (rev 4222) @@ -0,0 +1,586 @@ +#region Copyright (C) 2005-2010 Team MediaPortal + +// Copyright (C) 2005-2010 Team MediaPortal +// http://www.team-mediaportal.com +// +// MediaPortal is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 2 of the License, or +// (at your option) any later version. +// +// MediaPortal is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with MediaPortal. If not, see <http://www.gnu.org/licenses/>. + +#endregion + +using System; +using System.Collections; +using System.Collections.Generic; +using System.Diagnostics; +using System.IO; +using MediaPortal.Configuration; +using MediaPortal.GUI.Library; + +namespace MediaPortal.GUI.GUIBurner +{ + public class BurnDataDVD + { + #region enums + + private enum CopyState + { + FileCopy = 0, + Finished = 1 + } + + private enum DVDBurnStates + { + Step1 = 0, + Step2 = 1, + Finished = 2 + } + + #endregion + + //class variables + + #region Class Variables + + private Process BurnerProcess; // Will run the external processes in another thread + private CopyState _CurrentCopyState; // Current Convert State aka Step + private DVDBurnStates _CurrentBurnState; // Current Burn State aka Step + private string _CurrentProcess = string.Empty; // Current Process Running + private bool _Started = false; // Has the Processing Started + private string _PathtoDvdBurnExe = string.Empty; // Path to the EXE files for Burning + private string _CurrentFileName = string.Empty; // Current Filename being processed + private ArrayList _FileNames; // ArrayList of files to process + private int _FileNameCount = 0; // Track the file in the Array being processed + private string _TempFolderPath = string.Empty; // Path to temp folder used + private string _RecorderDrive = string.Empty; // CD/DVD Drive letter + private bool _InDebugMode = false; // Debug option + private bool _BurnTheDVD = true; // Burn the DVD + private List<string> _FilesToBurn = new List<string>(); // Converted Files ready to Burn + + #endregion + + //events + //in your UI class, listen in on these events to report back to user + + #region Events and Delegates + + public delegate void FileFinishedEventHandler(object sender, FileFinishedEventArgs e); + + public event FileFinishedEventHandler FileFinished; + + public event EventHandler AllFinished; + + public delegate void BurnDVDErrorEventHandler(object sender, BurnDVDErrorEventArgs e); + + public event BurnDVDErrorEventHandler BurnDVDError; + + public delegate void BurnDVDStatusUpdateEventHandler(object sender, BurnDVDStatusUpdateEventArgs e); + + public event BurnDVDStatusUpdateEventHandler BurnDVDStatusUpdate; + + #endregion + + //constructor + + #region Constructors + + ///<summary>BurnDataDVD Class Constructor.</summary> + ///<return>None</return> + ///<param name="FileNames">ArrayList of Filenames to include on the VidoeDVD</param> + ///<param name="PathToTempFolder">Path to the folder to use for creating temporary files</param> + ///<param name="PathToDvdBurnExe">Path to the executable used to write the ISO to the DVD</param> + ///<param name="DebugMode">Debug Mode includes more logging and does not delete the temporary files created</param> + ///<param name="RecorderDrive">The drive letter of the Recorder</param> + ///<param name="DummyBurn">Do everything except the burn. Used for debugging</param> + public BurnDataDVD(ArrayList FileNames, string PathToTempFolder, string PathtoDVDBurnExe, bool DebugMode, + string RecorderDrive, bool DummyBurn) + { + _InDebugMode = DebugMode; + + // Override burn setting if in debug mode + if (DummyBurn) + { + _BurnTheDVD = false; + } + + pBurnDataDVD(FileNames, PathToTempFolder, PathtoDVDBurnExe, RecorderDrive); + } + + ///<summary>Private Initialization method called by the Constructors.</summary> + private void pBurnDataDVD(ArrayList FileNames, string PathToTempFolder, string PathtoDVDBurnExe, + string RecorderDrive) + { + _FileNames = FileNames; + _FileNameCount = 0; + _PathtoDvdBurnExe = PathtoDVDBurnExe; + _Started = false; + _TempFolderPath = PathToTempFolder; + _RecorderDrive = RecorderDrive; + + if (_TempFolderPath.EndsWith(@"\\") || _TempFolderPath.EndsWith("//")) + { + _TempFolderPath = _TempFolderPath.Substring(0, (_TempFolderPath.Length - 2)); + } + else if (_TempFolderPath.EndsWith(@"\") || _TempFolderPath.EndsWith("/")) + { + _TempFolderPath = _TempFolderPath.Substring(0, (_TempFolderPath.Length - 1)); + } + + // Make the DVD dir. Gets deleted straight away, but saves an exception + Directory.CreateDirectory(_TempFolderPath); + + // Delete the temp DVD dir and any contents from any previous DVD creation. + Directory.Delete(_TempFolderPath, true); + + // Make the DVD dir that we just deleted above + Directory.CreateDirectory(_TempFolderPath); + + Directory.CreateDirectory(_TempFolderPath + "/DVD_Image"); + + LogWrite("BurnDataDVDInit", "TempFolderPath: " + _TempFolderPath); + LogWrite("BurnDataDVDInit", "Debug Mode: " + _InDebugMode.ToString()); + } + + #endregion + + #region Getters and Setters + + ///<summary>Called to Start the DataDVD File Conversion and Burning.</summary> + ///<return>True if File Conversion and Burning has Started.</return> + ///<return>False if File Conversion and Burning has not Started.</return> + public bool Started + { + get { return _Started; } + } + + #endregion + + ///<summary>Called to Start the DataDVD File Conversion and Burning.</summary> + ///<return>True is Start successful.</return> + ///<return>False if already Started.</return> + public bool Start() + { + if (_Started == false) + { + ProvideStatusUpdate("Starting Data DVD Burning"); + _Started = true; + + NextFileCopy(); + return true; + } + else + { + return false; + } + } + + ///<summary>Called to do the File Copy for each file in the ArrayList of files to process + /// and resets the Current Copy State to Step 1 + ///</summary> + private void NextFileCopy() + { + _FileNameCount++; + + if (_FileNameCount <= _FileNames.Count) + { + //get next filename and reset the state + _CurrentFileName = (string)_FileNames[_FileNameCount - 1]; + _CurrentCopyState = CopyState.FileCopy; + + ProvideStatusUpdate("Copying " + _CurrentFileName); + + //start again + NextStep_FileCopy(); + } + else + { + //all finished with conversions. So Start the burning steps. + ProvideStatusUpdate("Starting Data DVD Burning Steps"); + BurnPrep(); + } + } + + ///<summary>Called to start the DVD Burning Prep for DVD Creation. + ///</summary> + private void BurnPrep() + { + if (_FilesToBurn.Count > 0) // Make sure we have files to burn + { + // Reset the Burn State + ProvideStatusUpdate("Data DVD Burn Preperation for " + _FilesToBurn.Count.ToString() + " Data files."); + _CurrentBurnState = DVDBurnStates.Step1; + NextStep_DVDCreation(); + } + else + { + //All finished with Burning send the AllFinished event to all listeners + CleanUp(); + if (AllFinished != null) + { + AllFinished(this, new EventArgs()); + } + } + } + + #region DVD Burn Steps + + ///<summary>Generate the DVD ISO File</summary> + private void ISOFileCreation() + { + // Make the ISO of the DVD dir that contains the Data_TS and AUDIO_TS dirs + // mkisofs -V "MyDVDName" -o mydvd.iso DirToMakeIsoOf + + try + { + _CurrentProcess = "DVD ISO Creation - mkisofs.exe"; + LogWrite("Entered ISOFileCreation", ""); + + ProvideStatusUpdate("Generating ISO image of DVD filesystem"); + + BurnerProcess = new Process(); + BurnerProcess.EnableRaisingEvents = true; + BurnerProcess.StartInfo.WorkingDirectory = Config.GetSubFolder(Config.Dir.Base, @"Burner\"); + BurnerProcess.StartInfo.UseShellExecute = false; + + if (!_InDebugMode) // Show output if in Debug mode + { + BurnerProcess.StartInfo.RedirectStandardOutput = true; + BurnerProcess.StartInfo.CreateNoWindow = true; + } + + string discName = string.Format("\"MP-DVD-{0}\"", DateTime.Now.ToShortDateString()); + string imgFolder = Path.Combine(_TempFolderPath, "DVD_Image"); + string isofile = Path.Combine(_TempFolderPath, "dvd.iso"); + + BurnerProcess.StartInfo.FileName = Config.GetFile(Config.Dir.Base, @"Burner\", "mkisofs.exe"); + string args = "-V " + discName + " -l -allow-lowercase -o \"" + isofile + "\" \"" + imgFolder + "\""; + BurnerProcess.StartInfo.Arguments = args; + + BurnerProcess.Exited += new EventHandler(BurnProcess_Exited); + BurnerProcess.OutputDataReceived += new DataReceivedEventHandler(MakeISOOutputDataReceivedHandler); + + LogWrite("Starting ISOFileCreation", "Args: " + args); + BurnerProcess.Start(); + + if (!BurnerProcess.HasExited) + { + BurnerProcess.PriorityClass = ProcessPriorityClass.BelowNormal; + BurnerProcess.BeginOutputReadLine(); + } + } + catch (Exception ex) + { + Log.Error(ex.ToString()); + } + } + + + ///<summary>Burn the DVD to a Disc</summary> + private void WriteDVD() + { + try + { + _CurrentProcess = "Burning the DVD - dvdburn.exe"; + + LogWrite("Entered WriteDVD", "BurnOption: " + _BurnTheDVD.ToString()); + + if (_BurnTheDVD == true) + { + ProvideStatusUpdate("Burning ISO image to DVD"); + + BurnerProcess = new Process(); + BurnerProcess.EnableRaisingEvents = true; + BurnerProcess.StartInfo.WorkingDirectory = _TempFolderPath; + BurnerProcess.StartInfo.UseShellExecute = false; + + if (!_InDebugMode) // Show output if in Debug mode + { + BurnerProcess.StartInfo.RedirectStandardOutput = true; + BurnerProcess.StartInfo.CreateNoWindow = true; + } + + //BurnerProcess.StartInfo.FileName = Path.Combine(_PathtoDvdBurnExe, "dvdburn.exe"); + BurnerProcess.StartInfo.FileName = Path.Combine(_PathtoDvdBurnExe, "dvdburn.exe"); + + //string isofile = Path.Combine(_TempFolderPath, "dvd.iso"); + + string args = _RecorderDrive + " " + Path.Combine(_TempFolderPath, "dvd.iso"); + ; + + BurnerProcess.StartInfo.Arguments = args; + + BurnerProcess.Exited += new EventHandler(BurnProcess_Exited); + // BurnerProcess.OutputDataReceived += new System.Diagnostics.DataReceivedEventHandler(processOutputHandler); + + LogWrite("Starting DVDBurn", "Args: " + args); + BurnerProcess.Start(); + + if (!BurnerProcess.HasExited) + { + BurnerProcess.PriorityClass = ProcessPriorityClass.BelowNormal; + // BurnerProcess.BeginOutputReadLine(); + } + } + else + { + _CurrentProcess = "DVD Burning is Disabled"; + BurnProcess_Exited(this, new EventArgs()); + } + } + catch (Exception ex) + { + Log.Error(ex.ToString()); + } + } + + #endregion + + ///<summary>Called for each Step in the DVD Creation after the File Copy(ing). </summary> + private void NextStep_DVDCreation() + { + LogWrite("NextStep_DVDCreation", "CurrentState: " + _CurrentBurnState.ToString()); + switch (_CurrentBurnState) + { + case DVDBurnStates.Step1: // ISO File Creation + ISOFileCreation(); + break; + + case DVDBurnStates.Step2: // Write DVD + WriteDVD(); + break; + + case DVDBurnStates.Finished: // Finished + //converting process completed, raise event + _Started = false; + + CleanUp(); + + ProvideStatusUpdate("Completed Data DVD Burning"); + + if (AllFinished != null) + { + AllFinished(this, new EventArgs()); + } + break; + } + } + + ///<summary>Called for each File Stepping through the File Conversion(s).</summary> + private void NextStep_FileCopy() + { + LogWrite("NextStep_FileCopy", + "CurrentState: " + _CurrentCopyState.ToString() + " CurrentFile: " + _CurrentFileName); + + switch (_CurrentCopyState) + { + #region Convert input file to a the DVD temp folder + + case CopyState.FileCopy: + { + string strFileName = Path.GetFileName(_CurrentFileName); + ProvideStatusUpdate("Copying \"" + strFileName); + + + string DestinationFilePath = Path.GetFileName(_CurrentFileName); + DestinationFilePath = Path.Combine(_TempFolderPath + "/DVD_Image", DestinationFilePath); + + + string SourceFilePath = _CurrentFileName; + + // Set the current filename to the new output file + _CurrentFileName = DestinationFilePath; // Ready for next file?? + + _CurrentProcess = "Data file copy"; + + FileInfo fi = new FileInfo(_TempFolderPath + "/Copy.bat"); + using (StreamWriter sw = fi.CreateText()) + { + string CopyLine = "copy /Y \"" + SourceFilePath + "\" \"" + DestinationFilePath + "\" "; + sw.WriteLine(CopyLine); + sw.Close(); + } + + try + { + BurnerProcess = new Process(); + BurnerProcess.EnableRaisingEvents = true; + // Gets or sets whether the Exited event should be raised when the process terminates. + BurnerProcess.StartInfo.WorkingDirectory = Config.GetSubFolder(Config.Dir.Base, @"Burner\"); + BurnerProcess.StartInfo.UseShellExecute = false; + + if (!_InDebugMode) // Show output if in Debug mode + { + BurnerProcess.StartInfo.RedirectStandardOutput = true; + BurnerProcess.StartInfo.CreateNoWindow = true; + } + BurnerProcess.StartInfo.FileName = fi.FullName; + + BurnerProcess.Exited += new EventHandler(FileCopyProcess_Exited); + + LogWrite("Starting File Copy", "Starting File Copy"); + + BurnerProcess.Start(); + +/* if (!BurnerProcess.HasExited) + { + //BurnerProcess.PriorityClass = System.Diagnostics.ProcessPriorityClass.BelowNormal; + BurnerProcess.BeginOutputReadLine(); + } + */ + } + catch (Exception ex) + { + Log.Error(ex.ToString()); + } + } + break; + + #endregion + + #region Finished File Copy Step Start Next File + + case CopyState.Finished: // Finished one file Start Next + + ProvideStatusUpdate("Completed File Copy For: " + (string)_FileNames[_FileNameCount - 1]); + + if (FileFinished != null) + { + FileFinished(this, new FileFinishedEventArgs((string)_FileNames[_FileNameCount - 1], _CurrentFileName)); + } + _FilesToBurn.Add(_CurrentFileName); + NextFileCopy(); + + break; + + #endregion + } + } + + #region Events etc. + + ///<summary>Called to provide status updates to any BurnDataDVDStatusUpdate event listeners</summary> + private void ProvideStatusUpdate(string status) + { + if (_InDebugMode) + { + Log.Debug("ProvideStatusUpdate: {0}", status.ToString()); + } + + if (BurnDVDStatusUpdate != null) + { + BurnDVDStatusUpdateEventArgs be = new BurnDVDStatusUpdateEventArgs(status); + //announce to anyone who is listening + BurnDVDStatusUpdate(this, be); + } + } + + + ///<summary>Called when each Conversion Process Step has completed + ///to move to the next step.</summary> + private void FileCopyProcess_Exited(object sender, EventArgs e) + { + //LogWrite("Convert Data Step Exited: ", _CurrentCopyState.ToString()); + ProvideStatusUpdate("Convert Process Exited: " + _CurrentProcess); + + //one process has finished, start next process + _CurrentCopyState += 1; + NextStep_FileCopy(); + } + + ///<summary>Called when each Burn Process Step has completed. + ///Also announces the CompletedStep event to any listeners</summary> + private void BurnProcess_Exited(object sender, EventArgs e) + { + LogWrite("Burn DVD Step Exited: Step: ", _CurrentBurnState.ToString()); + ProvideStatusUpdate("DVD Burn Process Exited: " + _CurrentProcess); + + //one process has finished, start next process + _CurrentBurnState += 1; + NextStep_DVDCreation(); + } + + + private void MakeISOOutputDataReceivedHandler(object sender, DataReceivedEventArgs e) + { + // Debugger.Launch(); + // Debugger.Break(); + + /* string sout = "Redirected StandardOutput IsEmpty"; + + if (!String.IsNullOrEmpty(e.Data)) + sout = e.Data.ToString(); + + //Pos: 76.5s 1835f (99%) 34.31fps Trem: 0min 35mb A-V:0.017 [3646:191] + + string Percentage = ""; + string TimeLeft = ""; + + + if (sout.StartsWith("Pos") == true) + { + Percentage = sout.Substring(sout.IndexOf('(') + 1, 2); + TimeLeft = sout.Substring(sout.IndexOf("Trem:") + 5, 4); + + byte Temp = Convert.ToByte(Percentage); + if (Temp % 5 == 0) + ProvideStatusUpdate(Percentage + "% done. Time Left = " + TimeLeft.ToString() + " min"); + } + + // if (OutputReceived != null) + // { + // OutputReceived(this, e); + // } + */ + } + + + private void ProcessingError(string ErrorTitle, string ErrorText) + { + Log.Error("Processing Error: {0} - {1}", ErrorTitle, ErrorText); + ProvideStatusUpdate("Processing Error: " + ErrorTitle + ": " + ErrorText); + if (BurnDVDError != null) + { + BurnDVDErrorEventArgs be = new BurnDVDErrorEventArgs(ErrorTitle, ErrorText); + BurnDVDError(this, be); + } + } + + #endregion + + #region LogWriting + + ///<summary>Called to Write to the MediaPortal.Log file</summary> + ///<param name="EntryTitle">Log Entry Title Text.</param> + ///<param name="EntryText">Log entry Main Text.</param> + private void LogWrite(string EntryTitle, string EntryText) + { + Log.Info("My Burner Plugin->BurnDataDVD Class: {0} - {1}", EntryTitle, EntryText); + } + + #endregion + + ///<summary>Simple Cleanup that deletes the temp files and directory</summary> + private void CleanUp() + { + ProvideStatusUpdate("Performing Cleanup of Temporary Files"); + if (!_InDebugMode) + { + // Delete the temp DVD dir and any contents from any previous DVD creation. + Directory.Delete(_TempFolderPath, true); + } + else + { + ProvideStatusUpdate("Temporary Files Not Deleted: In Debug Mode"); + } + } + } +} \ No newline at end of file Added: trunk/plugins/Burner/tags/1.1.3fix/Burner/BurnVideoDVD.cs =================================================================== --- trunk/plugins/Burner/tags/1.1.3fix/Burner/BurnVideoDVD.cs (rev 0) +++ trunk/plugins/Burner/tags/1.1.3fix/Burner/BurnVideoDVD.cs 2011-05-26 15:17:45 UTC (rev 4222) @@ -0,0 +1,902 @@ +#region Copyright (C) 2005-2010 Team MediaPortal + +// Copyright (C) 2005-2010 Team MediaPortal +// http://www.team-mediaportal.com +// +// MediaPortal is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 2 of the License, or +// (at your option) any later version. +// +// MediaPortal is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with MediaPortal. If not, see <http://www.gnu.org/licenses/>. + +#endregion + +using System; +using System.Collections; +using System.Collections.Generic; +using System.Diagnostics; +using System.IO; +using System.Windows.Forms; +using MediaPortal.Configuration; +using MediaPortal.GUI.Library; + +namespace MediaPortal.GUI.GUIBurner +{ + public class BurnVideoDVD + { + #region enums + + private enum ConvertState + { + VideoConversion = 0, + Finished = 1 + } + + private enum DVDBurnStates + { + Step1 = 0, + Step2 = 1, + Step3 = 2, + Step4 = 3, + Step5 = 4, + Finished = 5 + } + + #endregion + + //class variables + + #region Class Variables + + private Process BurnerProcess; // Will run the external processes in another thread + private ConvertState _CurrentConvertState; // Current Convert State aka Step + private DVDBurnStates _CurrentBurnState; // Current Burn State aka Step + private string _CurrentProcess = string.Empty; // Current Process Running + private bool _Started = false; // Has the Processing Started + private string _PathtoDvdBurnExe = string.Empty; // Path to the EXE files for Burning + private string _CurrentFileName = string.Empty; // Current Filename being processed + private ArrayList _FileNames; // ArrayList of files to process + private int _FileNameCount = 0; // Track the file in the Array being processed + private string _TempFolderPath = string.Empty; // Path to temp folder used + private string _RecorderDrive = string.Empty; // CD/DVD Drive letter + private bool _InDebugMode = false; // Debug option + private bool _BurnTheDVD = true; // Burn the DVD + private List<string> _FilesToBurn = new List<string>(); // Converted Files ready to Burn + private string _TvFormat = string.Empty; // "PAL" or "NTSC" + private string _AspectRatio = string.Empty; // "4/3" or "16/9" + + #endregion + + //events + //in your UI class, listen in on these events to report back to user + + #region Events and Delegates + + public delegate void FileFinishedEventHandler(object sender, FileFinishedEventArgs e); + + public event FileFinishedEventHandler FileFinished; + + public event EventHandler AllFinished; + + //public event System.Diagnostics.DataReceivedEventHandler OutputReceived; + + public delegate void BurnDVDErrorEventHandler(object sender, BurnDVDErrorEventArgs e); + + public event BurnDVDErrorEventHandler BurnDVDError; + + public delegate void BurnDVDStatusUpdateEventHandler(object sender, BurnDVDStatusUpdateEventArgs e); + + public event BurnDVDStatusUpdateEventHandler BurnDVDStatusUpdate; + + #endregion + + //constructor + + #region Constructors + + ///<summary>BurnVideoDVD Class Constructor.</summary> + ///<return>None</return> + ///<param name="FileNames">ArrayList of Filenames to include on the VidoeDVD</param> + ///<param name="PathToTempFolder">Path to the folder to use for creating temporary files</param> + ///<param name="TVFormat">"NTSC" or "PAL" format for the VideoDVD</param> + ///<param name="AspectRatio">Aspect ratio - either "4/3" or "16/9"</param> + ///<param name="PathToDvdBurnExe">Path to the executable used to write the ISO to the DVD</param> + ///<param name="DebugMode">Debug Mode includes more logging and does not delete the temporary files created</param> + ///<param name="RecorderDrive">The drive letter of the Recorder</param> + ///<param name="DummyBurn">Do everything except the burn. Used for debugging</param> + public BurnVideoDVD(ArrayList FileNames, string PathToTempFolder, string TVFormat, string AspectRatio, + string PathtoDVDBurnExe, bool DebugMode, string RecorderDrive, bool DummyBurn) + { + _InDebugMode = DebugMode; + + // Override burn setting if in debug mode + if (DummyBurn) + { + _BurnTheDVD = false; + } + + pBurnVideoDVD(FileNames, PathToTempFolder, TVFormat, AspectRatio, PathtoDVDBurnExe, RecorderDrive); + } + + ///<summary>Private Initialization method called by the Constructors.</summary> + private void pBurnVideoDVD(ArrayList FileNames, string PathToTempFolder, string TVFormat, string AspectRatio, + string PathtoDVDBurnExe, string RecorderDrive) + { + _FileNames = FileNames; + _FileNameCount = 0; + _TvFormat = TVFormat; + _AspectRatio = AspectRatio; + _PathtoDvdBurnExe = PathtoDVDBurnExe; + _Started = false; + _TempFolderPath = PathToTempFolder; + _RecorderDrive = RecorderDrive; + + if (_TempFolderPath.EndsWith(@"\\") || _TempFolderPath.EndsWith("//")) + { + _TempFolderPath = _TempFolderPath.Substring(0, (_TempFolderPath.Length - 2)); + } + else if (_TempFolderPath.EndsWith(@"\") || _TempFolderPath.EndsWith("/")) + { + _TempFolderPath = _TempFolderPath.Substring(0, (_TempFolderPath.Length - 1)); + } + + // Make the DVD dir. Gets deleted straight away, but saves an exception + Directory.CreateDirectory(_TempFolderPath); + + // Delete the temp DVD dir and any contents from any previous DVD creation. + Directory.Delete(_TempFolderPath, true); + + // Make the DVD dir that we just deleted above + Directory.CreateDirectory(_TempFolderPath); + + Log.Debug("BurnVideoDVDInit", "TempFolderPath: " + _TempFolderPath); + Log.Debug("BurnVideoDVDInit", "Debug Mode: " + _InDebugMode.ToString()); + } + + #endregion + + #region Getters and Setters + + ///<summary>Called to Start the VideoDVD File Conversion and Burning.</summary> + ///<return>True if File Conversion and Burning has Started.</return> + ///<return>False if File Conversion and Burning has not Started.</return> + public bool Started + { + get { return _Started; } + } + + #endregion + + ///<summary>Called to Start the VideoDVD File Conversion and Burning.</summary> + ///<return>True is Start successful.</return> + ///<return>False if already Started.</return> + public bool Start() + { + if (_Started == false) + { + ProvideStatusUpdate("Starting Video DVD File Conversion and Burning"); + _Started = true; + + NextFileNameConversion(); + return true; + } + else + { + return false; + } + } + + ///<summary>Called to do the File Conversion for each file in the ArrayList of files to process + /// and resets the Current Convert State to Step 1 + ///</summary> + private void NextFileNameConversion() + { + _FileNameCount++; + + if (_FileNameCount <= _FileNames.Count) + { + //get next filename and reset the state + _CurrentFileName = (string)_FileNames[_FileNameCount - 1]; + _CurrentConvertState = ConvertState.VideoConversion; + + ProvideStatusUpdate("Processing " + _CurrentFileName); + + //start again + NextStep_FileConversion(); + } + else + { + //all finished with conversions. So Start the burning steps. + ProvideStatusUpdate("Starting Video DVD Burning Steps"); + BurnPrep(); + } + } + + ///<summary>Called to start the DVD Burning Prep for DVD Creation. + ///</summary> + private void BurnPrep() + { + if (_FilesToBurn.Count > 0) // Make sure we have files to burn + { + // Reset the Burn State + ProvideStatusUpdate("Video DVD Burn Preperation for " + _FilesToBurn.Count.ToString() + " Video files."); + _CurrentBurnState = DVDBurnStates.Step1; + NextStep_DVDCreation(); + } + else + { + //All finished with Burning send the AllFinished event to all listeners + CleanUp(); + if (AllFinished != null) + { + AllFinished(this, new EventArgs()); + } + } + } + + #region DVD Burn Steps + + ///<summary>Called to Generate the DVD Menu</summary> + private void MenuGeneration() + { + try + { + _CurrentProcess = "Generating DVD Menu - menuGen.exe"; + Log.Debug("Entered MenuGeneration Process", ""); + + ProvideStatusUpdate("Creating DVD Menus"); + + #region Generate the Menu File + + using (StreamWriter SW_MenuGen = File.CreateText(Path.Combine(_TempFolderPath, "menuGen.gen"))) + { + + + + string strTemp = Path.GetDirectoryName(Application.ExecutablePath); + strTemp = Path.Combine(strTemp, GUIGraphicsContext.Skin); + strTemp = "Theme Folder =" + Path.Combine(strTemp, "media"); + + SW_MenuGen.WriteLine(strTemp); + SW_MenuGen.WriteLine(@"Work Folder =" + _TempFolderPath); + SW_MenuGen.WriteLine(@"Graphics Magick =" + Config.GetFile(Config.Dir.Base, @"Burner\", "gm.exe")); + SW_MenuGen.WriteLine(@"Mplex =" + Config.GetFile(Config.Dir.Base, @"Burner\", "mplex.exe")); + SW_MenuGen.WriteLine(@"jpeg2yuv =" + Config.GetFile(Config.Dir.Base, @"Burner\", "png2yuv.exe")); + SW_MenuGen.WriteLine(@"mpeg2enc =" + Config.GetFile(Config.Dir.Base, @"Burner\", "mpeg2enc.exe")); + SW_MenuGen.WriteLine(@"spumux =" + Config.GetFile(Config.Dir.Base, @"Burner\", "spumux.exe")); + SW_MenuGen.WriteLine(@"AC3 audio =" + Config.GetFile(Config.Dir.Base, @"Burner\", "Silence.ac3")); + SW_MenuGen.WriteLine(@"Button Image =" + Config.GetFile(Config.Dir.Base, @"Burner\", "navButton.png")); + SW_MenuGen.WriteLine(@"DVD Format (PAL or NTSC)=" + _TvFormat.ToUpper()); + + if (_InDebugMode) + { + strTemp = "1"; + } + else + { + strTemp = "0"; + } + + SW_MenuGen.WriteLine(@"Leave files for debugging (0 is false, 1 is true)=" + strTemp); + + int NumberOfFiles = _FilesToBurn.Count; + + for (int i = 0; i < NumberOfFiles; i++) + { + strTemp = "-------------------------Video " + i.ToString() + " -------------------------"; + SW_MenuGen.WriteLine(strTemp); + + strTemp = Path.GetFileName((string)_FileNames[i]);// There was __FilesToBurn[i] + string strVideoName = Path.GetFileNameWithoutExtension(strTemp); + strTemp = "Video " + i.ToString() + @" Show Title= " + strVideoName; + SW_MenuGen.WriteLine(strTemp); + + // This will come from the TV/DVD database when it gets integrated into the context menu + //strTemp = "Video " + i.ToString() + @" Episode Title= Live Together, Die Alone"; + strTemp = "Video " + i.ToString() + @" Episode Title="; + SW_MenuGen.WriteLine(strTemp); + + // This will come from the TV/DVD database when it gets integrated into the context menu + //strTemp = "Video " + i.ToString() + @" Description= After discovering something odd just offshore, Jack and Sayid come up with a plan to 'confront'"; + strTemp = "Video " + i.ToString() + @" Description="; + SW_MenuGen.WriteLine(strTemp); + + // Commented until I can work out how to take a thumbnail of the video + // strTemp = "Video " + i.ToString() + @" Thumbnail=C:\temp\DVD\thumbnail.jpg"; + strTemp = "Video " + i.ToString() + @" Thumbnail="; + SW_MenuGen.WriteLine(strTemp); + } + + SW_MenuGen.Close(); + } + + #endregion + + Log.Info("Finished MenuGeneration", "Copying MenuGen Executable"); + + + // Copy menugen to strTempFolder. + // Needs to be in same dir as the menuGen.gen file we just made above + string SourceFile = Config.GetFile(Config.Dir.Base, @"Burner\", "menuGen.exe"); + string DestFile = Path.Combine(_TempFolderPath, "menuGen.exe"); + File.Copy(SourceFile, DestFile); + + Log.Debug("Finished MenuGen Executable Copy", "Starting MenuGen Execution"); + + #region MenuGen execution + + // Create the DVD menu files + BurnerProcess = new Process(); + BurnerProcess.EnableRaisingEvents = true; + BurnerProcess.StartInfo.WorkingDirectory = _TempFolderPath; + BurnerProcess.StartInfo.UseShellExecute = false; + + if (!_InDebugMode) // Show output if in Debug mode + { + BurnerProcess.StartInfo.RedirectStandardOutput = true; + BurnerProcess.StartInfo.CreateNoWindow = true; + } + + BurnerProcess.StartInfo.FileName = DestFile; + BurnerProcess.StartInfo.Arguments = ""; + + BurnerProcess.Exited += new EventHandler(BurnProcess_Exited); + // BurnerProcess.OutputDataReceived += new System.Diagnostics.DataReceivedEventHandler(processOutputHandler); + + BurnerProcess.Start(); + + if (!BurnerProcess.HasExited) + { + BurnerProcess.PriorityClass = ProcessPriorityClass.BelowNormal; + // BurnerProcess.BeginOutputReadLine(); + } + + #endregion + } + catch (Exception ex) + { + Log.Error(ex.ToString()); + } + } + + ///<summary>Generate the DVD Creation Configuration XML File</summary> + private void ConfigXMLCreation() + { + try + { + _CurrentProcess = "Config.xml Writer"; + Log.Debug("Starting ConfigXMLCreation", ""); + + ProvideStatusUpdate("Creating Config file for DVD Generation program"); + + // Now we create the Config.xml file for DvdAuthor.exe + + using (StreamWriter SW_ConfigFile = File.CreateText(Path.Combine(_TempFolderPath, "Config.xml"))) + { + string strTemp; + + SW_ConfigFile.WriteLine("<?xml version=\"1.0\" encoding=\"utf-8\"?>"); + SW_ConfigFile.WriteLine("<dvdauthor>"); + SW_ConfigFile.WriteLine(" <vmgm>"); + SW_ConfigFile.WriteLine(" <menus>"); + SW_ConfigFile.WriteLine(" <video format=\"" + _TvFormat + "\" />"); + SW_ConfigFile.WriteLine(" <pgc>"); + + int NumberOfFiles = _FilesToBurn.Count; + + for (int i = 0; i < NumberOfFiles; i++) + { + strTemp = " <button> jump titleset " + (i + 1).ToString() + " menu; </button>"; + SW_ConfigFile.WriteLine(strTemp); + } + + string mBkgdPath = Path.Combine(_TempFolderPath, "menuBackground.menu.mpg"); + SW_ConfigFile.WriteLine(" <vob file=\"" + mBkgdPath + "\" pause=\"5\"/>"); + SW_ConfigFile.WriteLine(" </pgc>"); + SW_ConfigFile.WriteLine(" </menus>"); + SW_ConfigFile.WriteLine(" </vmgm>"); + + for (int i = 0; i < NumberOfFiles; i++) + { + string smBkgd = "subMenuBackground." + i.ToString() + ".menu.mpg"; + smBkgd = Path.Combine(_TempFolderPath, smBkgd); + + SW_ConfigFile.WriteLine(" <titleset>"); + SW_ConfigFile.WriteLine(" <menus>"); + SW_ConfigFile.WriteLine(" <video format=\"" + _TvFormat + "\" />"); + SW_ConfigFile.WriteLine(" <pgc>"); + SW_ConfigFile.WriteLine(" <button> jump title 1; </button>"); + SW_ConfigFile.WriteLine(" <button> jump vmgm menu; </button>"); + strTemp = " <vob file=\"" + smBkgd + "\" pause=\"5\"/>"; + SW_ConfigFile.WriteLine(strTemp); + SW_ConfigFile.WriteLine(" </pgc>"); + SW_ConfigFile.WriteLine(" </menus>"); + + SW_ConfigFile.WriteLine(" <titles>"); + SW_ConfigFile.WriteLine(" <video format=\"" + _TvFormat + "\" />"); + SW_ConfigFile.WriteLine(" <pgc>"); + strTemp = " <vob file=\"" + Path.Combine(_TempFolderPath, "F") + (i + 1).ToString() + ".mpg" + + "\" chapters=\"15:00,30:00,45:00,1:00:00,1:15:00,1:30:00,1:45:00,2:00:00,2:15:00,2:30:00,2:45:00,3:00:00\" />";// FIXME There was _FilesToBurn[i] + SW_ConfigFile.WriteLine(strTemp); + SW_ConfigFile.WriteLine(" <post>call vmgm menu;</post>"); + SW_ConfigFile.WriteLine(" </pgc>"); + SW_ConfigFile.WriteLine(" </titles>"); + SW_ConfigFile.WriteLine(" </titleset>"); + } + + SW_ConfigFile.WriteLine("</dvdauthor>"); + SW_ConfigFile.Close(); + + // No Actual external app running to Exit so + // we just call BurnProcess_Exited + EventArgs e = new EventArgs(); + BurnProcess_Exited(this, e); + } + Log.Info("Finished Config XML Creation", ""); + } + catch (Exception ex) + { + Log.Error(ex.ToString()); + } + } + + ///<summary>Generate the DVD Image File</summary> + private void DVDFilesCreation() + { + try + { + _CurrentProcess = "DVD Image Creation - dvdauthor.exe"; + Log.Debug("Entered DVDFilesCreation", ""); + + ProvideStatusUpdate("Creating DVD filesystem"); + + BurnerProcess = new Process(); + BurnerProcess.EnableRaisingEvents = true; + BurnerProcess.StartInfo.WorkingDirectory = _TempFolderPath; + BurnerProcess.StartInfo.UseShellExecute = false; + if (!_InDebugMode) // Show output if in Debug mode + { + BurnerProcess.StartInfo.RedirectStandardOutput = true; + BurnerProcess.StartInfo.CreateNoWindow = true; + } + + string imgFolder = Path.Combine(_TempFolderPath, "DVD_Image"); + string cfgfile = Path.Combine(_TempFolderPath, "Config.xml"); + + if (!Directory.Exists(imgFolder)) + { + Directory.CreateDirectory(imgFolder); + } + + BurnerProcess.StartInfo.FileName = Config.GetFile(Config.Dir.Base, @"Burner\", "dvdauthor.exe"); + string args = "-o \"" + imgFolder + "\" -x \"" + cfgfile + "\""; + BurnerProcess.StartInfo.Arguments = args; + + BurnerProcess.Exited += new EventHandler(BurnProcess_Exited); + // BurnerProcess.OutputDataReceived += new System.Diagnostics.DataReceivedEventHandler(processOutputHandler); + + Log.Info("Starting DVDFilesCreation Process", "Args: " + args); + BurnerProcess.Start(); + + if (!BurnerProcess.HasExited) + { + BurnerProcess.PriorityClass = ProcessPriorityClass.BelowNormal; + // BurnerProcess.BeginOutputReadLine(); + } + } + catch (Exception ex) + { + Log.Error(ex.ToString()); + } + } + + ///<summary>Generate the DVD ISO File</summary> + private void ISOFileCreation() + { + // Make the ISO of the DVD dir that contains the VIDEO_TS and AUDIO_TS dirs + // mkisofs -V "MyDVDName" -o mydvd.iso -dvd-video DirToMakeIsoOf + + try + { + _CurrentProcess = "DVD ISO Creation - mkisofs.exe"; + Log.Debug("Entered ISOFileCreation", ""); + + ProvideStatusUpdate("Generating ISO image of DVD filesystem"); + + BurnerProcess = new Process(); + BurnerProcess.EnableRaisingEvents = true; + BurnerProcess.StartInfo.WorkingDirectory = Config.GetSubFolder(Config.Dir.Base, @"Burner\"); + BurnerProcess.StartInfo.UseShellExecute = false; + + if (!_InDebugMode) // Show output if in Debug mode + { + BurnerProcess.StartInfo.RedirectStandardOutput = true; + BurnerProcess.StartInfo.CreateNoWindow = true; + } + + string discName = string.Format("\"MP-DVD-{0}\"", DateTime.Now.ToShortDateString()); + string imgFolder = Path.Combine(_TempFolderPath, "DVD_Image"); + string isofile = Path.Combine(_TempFolderPath, "dvd.iso"); + + BurnerProcess.StartInfo.FileName = Config.GetFile(Config.Dir.Base, @"Burner\", "mkisofs.exe"); + string args = "-V " + discName + " -o \"" + isofile + "\" -dvd-video \"" + imgFolder + "\""; + BurnerProcess.StartInfo.Arguments = args; + + BurnerProcess.Exited += new EventHandler(BurnProcess_Exited); + BurnerProcess.OutputDataReceived += new DataReceivedEventHandler(MakeISOOutputDataReceivedHandler); + + Log.Info("Starting ISOFileCreation", "Args: " + args); + BurnerProcess.Start(); + + if (!BurnerProcess.HasExited) + { + BurnerProcess.PriorityClass = ProcessPriorityClass.BelowNormal; + BurnerProcess.BeginOutputReadLine(); + } + } + catch (Exception ex) + { + Log.Error(ex.ToString()); + } + } + + + ///<summary>Burn the DVD to a Disc</summary> + private void WriteDVD() + { + try + { + _CurrentProcess = "Burning the DVD - dvdburn.exe"; + + Log.Debug("Entered WriteDVD", "BurnOption: " + _BurnTheDVD.ToString()); + + if (_BurnTheDVD == true) + { + ProvideStatusUpdate("Burning ISO image to DVD"); + + BurnerProcess = new Process(); + BurnerProcess.EnableRaisingEvents = true; + BurnerProcess.StartInfo.WorkingDirectory = _TempFolderPath; + BurnerProcess.StartInfo.UseShellExecute = false; + + if (!_InDebugMode) // Show output if in Debug mode + { + BurnerProcess.StartInfo.RedirectStandardOutput = true; + BurnerProcess.StartInfo.CreateNoWindow = true; + } + + //BurnerProcess.StartInfo.FileName = Path.Combine(_PathtoDvdBurnExe, "dvdburn.exe"); + BurnerProcess.StartInfo.FileName = Path.Combine(_PathtoDvdBurnExe, "dvdburn.exe"); + + //string isofile = Path.Combine(_TempFolderPath, "dvd.iso"); + + string args = _RecorderDrive + " " + Path.Combine(_TempFolderPath, "dvd.iso"); + ; + + BurnerProcess.StartInfo.Arguments = args; + + BurnerProcess.Exited += new EventHandler(BurnProcess_Exited); + // BurnerProcess.OutputDataReceived += new System.Diagnostics.DataReceivedEventHandler(processOutputHandler); + + Log.Info("Starting DVDBurn", "Args: " + args); + BurnerProcess.Start(); + + if (!BurnerProcess.HasExited) + { + BurnerProcess.PriorityClass = ProcessPriorityClass.BelowNormal; + // BurnerProcess.BeginOutputReadLine(); + } + } + else + { + _CurrentProcess = "DVD Burning is Disabled"; + BurnProcess_Exited(this, new EventArgs()); + } + } + catch (Exception ex) + { + Log.Error(ex.ToString()); + } + } + + #endregion + + ///<summary>Called for each Step in the DVD Creation after the File Conversion(s). </summary> + private void NextStep_DVDCreation() + { + Log.Debug("NextStep_DVDCreation", "CurrentState: " + _CurrentBurnState.ToString()); + switch (_CurrentBurnState) + { + case DVDBurnStates.Step1: // Menu Generation + MenuGeneration(); + break; + + case DVDBurnStates.Step2: // XML Config File Creation + ConfigXMLCreation(); + break; + + case DVDBurnStates.Step3: // DVD Files Creation + DVDFilesCreation(); + break; + + case DVDBurnStates.Step4: // ISO File Creation + ISOFileCreation(); + break; + + case DVDBurnStates.Step5: // Write DVD + WriteDVD(); + break; + + case DVDBurnStates.Finished: // Finished + //converting process completed, raise event + _Started = false; + + CleanUp(); + + ProvideStatusUpdate("Completed Video DVD Burning"); + + if (AllFinished != null) + { + AllFinished(this, new EventArgs()); + } + break; + } + } + + ///<summary>Called for each File Stepping through the File Conversion(s).</summary> + private void NextStep_FileConversion() + { + + Log.Debug("NextStep_FileConversion", + "CurrentState: " + _CurrentConvertState.ToString() + " CurrentFile: " + _CurrentFileName); + switch (_CurrentConvertState) + { + #region Convert input file to a DVD formatted MPG file using Mencoder + + case ConvertState.VideoConversion: + { + string strFileName = Path.GetFileNameWithoutExtension(_CurrentFileName); + ProvideStatusUpdate("Converting \"" + strFileName + "\" to DVD format"); + + + //string DestinationFilePath = Path.GetFileNameWithoutExtension(_CurrentFileName); + //DestinationFilePath = DestinationFilePath + ".mpg"; + string DestinationFilePath = Path.Combine(_TempFolderPath, ""); + + //string string DestinationFilePath = _TempFolderPath; + + string SourceFilePath = _CurrentFileName; + + // Set the current filename to the new output file + _CurrentFileName = DestinationFilePath; // Ready for next file?? + + _CurrentProcess = "Video file conversion - mencoder.exe"; + + try + { + BurnerProcess = new Process(); + BurnerProcess.EnableRaisingEvents = true; + // Gets or sets whether the Exited event should be raised when the process terminates. + BurnerProcess.StartInfo.WorkingDirectory = Config.GetSubFolder(Config.Dir.Base, @"Burner\"); + BurnerProcess.StartInfo.UseShellExecute = false; + + if (!_InDebugMode) // Show output if in Debug mode + { + BurnerProcess.StartInfo.RedirectStandardOutput = true; + BurnerProcess.StartInfo.CreateNoWindow = true; + } + + BurnerProcess.StartInfo.FileName = Config.GetFile(Config.Dir.Base, @"Burner\", "mencoder.exe"); + + string args = string.Empty; + if (_TvFormat.ToUpper() == "PAL") + { + args = + "-oac lavc -ovc lavc -of mpeg -mpegopts format=dvd:tsaf -vf scale=720:576,harddup -srate 48000 -af lavcresample=48000 -lavcopts vcodec=mpeg2video:vrc_buf_size=1835:vrc_maxrate=9800:vbitrate=5000:keyint=15:acodec=ac3:abitrate=192:aspect=" + + _AspectRatio + " -ofps 25 -o \"" + DestinationFilePath + "\\F" + _FileNameCount.ToString() + ".mpg" + "\" \"" + SourceFilePath + "\" "; + } + else + { + args = + "-oac lavc -ovc lavc -of mpeg -mpegopts format=dvd:tsaf -vf scale=720:480,harddup -srate 48000 -af lavcresample=48000 -lavcopts vcodec=mpeg2video:vrc_buf_size=1835:vrc_maxrate=9800:vbitrate=5000:keyint=18:acodec=ac3:abitrate=192:aspect=" + + _AspectRatio + " -ofps 30000/1001 -o \"" + DestinationFilePath + "\\F" + _FileNameCount.ToString() + ".mpg" + "\" \"" + SourceFilePath + "\" "; + } + + BurnerProcess.StartInfo.Arguments = args; + + BurnerProcess.Exited += new EventHandler(BurnerProcess_Exited); + BurnerProcess.OutputDataReceived += new DataReceivedEventHandler(FileConversionOutputDataReceivedHandler); + + Log.Debug("Starting: " + _CurrentProcess, "Exe Arguments: " + args); + + BurnerProcess.Start(); + + if (!BurnerProcess.HasExited) + { + //BurnerProcess.PriorityClass = System.Diagnostics.ProcessPriorityClass.BelowNormal; + BurnerProcess.BeginOutputReadLine(); + } + } + catch (Exception ex) + { + Log.Error(ex.ToString()); + } + } + break; + + #endregion + + #region Finished File Conversion Step Start Next File + + case ConvertState.Finished: // Finished one file Start Next + + ProvideStatusUpdate("Completed File Conversion For: " + (string)_FileNames[_FileNameCount - 1]); + + if (FileFinished != null) + { + FileFinished(this, new FileFinishedEventArgs((string)_FileNames[_FileNameCount - 1], _CurrentFileName)); + } + _FilesToBurn.Add(_CurrentFileName); + NextFileNameConversion(); + + break; + + #endregion + } + } + + #region Events etc. + + ///<summary>Called to provide status updates to any BurnVideoDVDStatusUpdate event listeners</summary> + private void ProvideStatusUpdate(string status) + { + Log.Debug("ProvideStatusUpdate: ", status.ToString()); + + if (BurnDVDStatusUpdate != null) + { + BurnDVDStatusUpdateEventArgs be = new BurnDVDStatusUpdateEventArgs(status); + //announce to anyone who is listening + BurnDVDStatusUpdate(this, be); + } + } + + + ///<summary>Called when each Conversion Process Step has completed + ///to move to the next step.</summary> + private void BurnerProcess_Exited(object sender, EventArgs e) + { + //Log.Debug("Convert Video Step Exited: ", _CurrentConvertState.ToString()); + ProvideStatusUpdate("Convert Process Exited: " + _CurrentProcess); + + //one proc... [truncated message content] |
From: <ro...@us...> - 2011-05-26 15:26:43
|
Revision: 4223 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=4223&view=rev Author: rolenof Date: 2011-05-26 15:26:37 +0000 (Thu, 26 May 2011) Log Message: ----------- Added Paths: ----------- trunk/plugins/Burner/dep/ trunk/plugins/Burner/dep/Burner.7z Removed Paths: ------------- trunk/plugins/Burner/trunk/Burner/Burner.csproj.user Property Changed: ---------------- trunk/plugins/Burner/tags/1.1.3fix/Burner/ trunk/plugins/Burner/trunk/ trunk/plugins/Burner/trunk/Burner/ trunk/plugins/Burner/trunk/XPImapiBurner/ Added: trunk/plugins/Burner/dep/Burner.7z =================================================================== (Binary files differ) Property changes on: trunk/plugins/Burner/dep/Burner.7z ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Property changes on: trunk/plugins/Burner/tags/1.1.3fix/Burner ___________________________________________________________________ Added: svn:ignore + bin Property changes on: trunk/plugins/Burner/trunk ___________________________________________________________________ Added: svn:ignore + *.suo Property changes on: trunk/plugins/Burner/trunk/Burner ___________________________________________________________________ Added: svn:ignore + *.user bin obj Deleted: trunk/plugins/Burner/trunk/Burner/Burner.csproj.user =================================================================== --- trunk/plugins/Burner/trunk/Burner/Burner.csproj.user 2011-05-26 15:17:45 UTC (rev 4222) +++ trunk/plugins/Burner/trunk/Burner/Burner.csproj.user 2011-05-26 15:26:37 UTC (rev 4223) @@ -1,7 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> - <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'"> - <StartAction>Program</StartAction> - <StartProgram>I:\Program Files\Team MediaPortal\MediaPortal\MediaPortal.exe</StartProgram> - </PropertyGroup> -</Project> \ No newline at end of file Property changes on: trunk/plugins/Burner/trunk/XPImapiBurner ___________________________________________________________________ Added: svn:ignore + bin obj This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ro...@us...> - 2011-05-26 16:20:45
|
Revision: 4227 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=4227&view=rev Author: rolenof Date: 2011-05-26 16:20:37 +0000 (Thu, 26 May 2011) Log Message: ----------- Modified Paths: -------------- trunk/plugins/Burner/trunk/Skin/Blue3/myburner.xml trunk/plugins/Burner/trunk/Skin/Blue3wide/myburner.xml Added Paths: ----------- trunk/plugins/Burner/MpeRelease/Burner_1.0.0.4223.mpe1 trunk/plugins/Burner/burner.xmp2 Property Changed: ---------------- trunk/plugins/Burner/tags/1.1.3fix/ trunk/plugins/Burner/tags/1.1.3fix/Burner/ Added: trunk/plugins/Burner/MpeRelease/Burner_1.0.0.4223.mpe1 =================================================================== (Binary files differ) Property changes on: trunk/plugins/Burner/MpeRelease/Burner_1.0.0.4223.mpe1 ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: trunk/plugins/Burner/burner.xmp2 =================================================================== --- trunk/plugins/Burner/burner.xmp2 (rev 0) +++ trunk/plugins/Burner/burner.xmp2 2011-05-26 16:20:37 UTC (rev 4227) @@ -0,0 +1,1128 @@ +<?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>Burner dlls</DisplayName> + <DefaulChecked>true</DefaulChecked> + <Description>main plugin files</Description> + <Files> + <Items> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>trunk\Burner\bin\Debug\Burner.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{c7900b3d-1d84-4a2b-9e4c-114e53898590}-Burner.dll</ZipFileName> + <DestinationFilename>%Plugins%\Windows\Burner.dll</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>trunk\Burner\bin\Debug\XPBurnComponent.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{235a2607-49ec-4fde-a2a4-1c002606ee3c}-XPBurnComponent.dll</ZipFileName> + <DestinationFilename>%Plugins%\Windows\XPBurnComponent.dll</DestinationFilename> + </FileItem> + </Items> + </Files> + </GroupItem> + <GroupItem Name="Skin"> + <ParentGroup /> + <DisplayName>Skin files</DisplayName> + <DefaulChecked>true</DefaulChecked> + <Description>Skin</Description> + <Files> + <Items> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>trunk\Skin\Blue3\myburner.xml</LocalFileName> + <ZipFileName>Installer{CopyFile}\{a402e729-251c-4784-ac30-0ee473c5bf09}-myburner.xml</ZipFileName> + <DestinationFilename>%Skin%\default\myburner.xml</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>trunk\Skin\Blue3\Media\burn_logo.png</LocalFileName> + <ZipFileName>Installer{CopyFile}\{3e39958d-dda9-4c9e-a77d-48e056024de6}-burn_logo.png</ZipFileName> + <DestinationFilename>%Skin%\default\Media\burn_logo.png</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>trunk\Skin\Blue3\Media\hover_my burner.png</LocalFileName> + <ZipFileName>Installer{CopyFile}\{f6d4ad48-0571-47fc-8d43-eadd8d2a941d}-hover_my burner.png</ZipFileName> + <DestinationFilename>%Skin%\Default\Media\hover_my burner.png</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>trunk\Skin\Blue3\Media\burn_logo.png</LocalFileName> + <ZipFileName>Installer{CopyFile}\{981bb0a7-570a-4df7-a3c8-0eb66690ddb1}-burn_logo.png</ZipFileName> + <DestinationFilename>%Skin%\Default\burn_logo.png</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>trunk\Skin\Blue3\Media\hover_my burner.png</LocalFileName> + <ZipFileName>Installer{CopyFile}\{c21c4baf-870b-4df7-9323-3d432aed7493}-hover_my burner.png</ZipFileName> + <DestinationFilename>%Skin%\Default\hover_my burner.png</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>trunk\Skin\Blue3wide\myburner.xml</LocalFileName> + <ZipFileName>Installer{CopyFile}\{72f407d6-cbd8-4b5a-8b0d-14adbdb38b2c}-myburner.xml</ZipFileName> + <DestinationFilename>%Skin%\DefaultWide\myburner.xml</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>trunk\Skin\Blue3wide\Media\burn_logo.png</LocalFileName> + <ZipFileName>Installer{CopyFile}\{c0974068-6e38-44c4-b92f-0e9343a26a36}-burn_logo.png</ZipFileName> + <DestinationFilename>%Skin%\DefaultWide\Media\burn_logo.png</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>trunk\Skin\Blue3wide\Media\hover_my burner.png</LocalFileName> + <ZipFileName>Installer{CopyFile}\{125af905-c6e4-4f74-a5e2-87297c53a547}-hover_my burner.png</ZipFileName> + <DestinationFilename>%Skin%\DefaultWide\Media\hover_my burner.png</DestinationFilename> + </FileItem> + </Items> + </Files> + </GroupItem> + <GroupItem Name="dep"> + <DisplayName>Support files</DisplayName> + <DefaulChecked>true</DefaulChecked> + <Description>dep</Description> + <Files> + <Items> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\burn.bat</LocalFileName> + <ZipFileName>Installer{CopyFile}\{d563c994-6082-46f9-9a95-a9159a76fe67}-burn.bat</ZipFileName> + <DestinationFilename>%Base%\Burner\burn.bat</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\colors.mgk</LocalFileName> + <ZipFileName>Installer{CopyFile}\{c16d3221-a73d-4247-a91a-79637975523d}-colors.mgk</ZipFileName> + <DestinationFilename>%Base%\Burner\colors.mgk</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygfreetype-6.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{728eedcc-3483-4177-9a48-2e91b433c068}-cygfreetype-6.dll</ZipFileName> + <DestinationFilename>%Base%\Burner\cygfreetype-6.dll</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygiconv-2.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{00856f60-c53d-44c6-b19e-67b0c194e4cd}-cygiconv-2.dll</ZipFileName> + <DestinationFilename>%Base%\Burner\cygiconv-2.dll</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygintl-1.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{0f01fbed-4d7e-4f8d-a080-be3e7fcd614c}-cygintl-1.dll</ZipFileName> + <DestinationFilename>%Base%\Burner\cygintl-1.dll</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygjasper-1-701-1.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{aeb6b20a-e5bd-4ff6-9c26-ab7277ba8424}-cygjasper-1-701-1.dll</ZipFileName> + <DestinationFilename>%Base%\Burner\cygjasper-1-701-1.dll</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygjpeg-62.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{805e0b05-e2a0-4081-9551-52cdddd76edd}-cygjpeg-62.dll</ZipFileName> + <DestinationFilename>%Base%\Burner\cygjpeg-62.dll</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygjpeg6b.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{32870af9-d923-4d7a-8280-a29c0f3d0f7b}-cygjpeg6b.dll</ZipFileName> + <DestinationFilename>%Base%\Burner\cygjpeg6b.dll</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygpng12.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{4af817fc-3fa2-4d06-8edf-b64f6a28de48}-cygpng12.dll</ZipFileName> + <DestinationFilename>%Base%\Burner\cygpng12.dll</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygwin1.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{2fe7b565-5650-43e6-844c-73d93f8c01f3}-cygwin1.dll</ZipFileName> + <DestinationFilename>%Base%\Burner\cygwin1.dll</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygwmflite-0-2-7.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{55bd37e1-8ea3-4c93-8b1d-f4128d45a4e6}-cygwmflite-0-2-7.dll</ZipFileName> + <DestinationFilename>%Base%\Burner\cygwmflite-0-2-7.dll</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygxml2-2.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{a5f4dd12-767a-418c-b7e4-06d3557c6817}-cygxml2-2.dll</ZipFileName> + <DestinationFilename>%Base%\Burner\cygxml2-2.dll</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygz.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{7e1863cf-12cc-48ad-bcd1-455783296c7a}-cygz.dll</ZipFileName> + <DestinationFilename>%Base%\Burner\cygz.dll</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\dvd.bat</LocalFileName> + <ZipFileName>Installer{CopyFile}\{011c4951-6c01-4502-9060-d1c4e2640e6a}-dvd.bat</ZipFileName> + <DestinationFilename>%Base%\Burner\dvd.bat</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\dvdauthor.exe</LocalFileName> + <ZipFileName>Installer{CopyFile}\{5098d331-8796-49fc-b2c1-2b3e42dc1adc}-dvdauthor.exe</ZipFileName> + <DestinationFilename>%Base%\Burner\dvdauthor.exe</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\gm.exe</LocalFileName> + <ZipFileName>Installer{CopyFile}\{8f97e517-cb68-49ad-95da-1bd8b1609cd6}-gm.exe</ZipFileName> + <DestinationFilename>%Base%\Burner\gm.exe</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\iso.bat</LocalFileName> + <ZipFileName>Installer{CopyFile}\{1b454dfb-e5cf-4437-a0ee-91e08b2e921a}-iso.bat</ZipFileName> + <DestinationFilename>%Base%\Burner\iso.bat</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\jpeg2yuv.exe</LocalFileName> + <ZipFileName>Installer{CopyFile}\{3f6dc314-beba-4f48-aaaf-a07179c13a70}-jpeg2yuv.exe</ZipFileName> + <DestinationFilename>%Base%\Burner\jpeg2yuv.exe</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\libpng12.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{cd669e72-54ff-431f-9dce-e93ab9a454fb}-libpng12.dll</ZipFileName> + <DestinationFilename>%Base%\Burner\libpng12.dll</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\libz.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{5e3e9e0d-5906-4767-8c89-b90388c34eb3}-libz.dll</ZipFileName> + <DestinationFilename>%Base%\Burner\libz.dll</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\magic.mgk</LocalFileName> + <ZipFileName>Installer{CopyFile}\{72efaeb6-f061-4705-8143-fe5ac9368ce3}-magic.mgk</ZipFileName> + <DestinationFilename>%Base%\Burner\magic.mgk</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\mat.bat</LocalFileName> + <ZipFileName>Installer{CopyFile}\{066432f9-6bd5-426d-af84-e7c73e41e56a}-mat.bat</ZipFileName> + <DestinationFilename>%Base%\Burner\mat.bat</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\mencoder.exe</LocalFileName> + <ZipFileName>Installer{CopyFile}\{fc40160c-08dc-4407-864f-9191ef09d4b2}-mencoder.exe</ZipFileName> + <DestinationFilename>%Base%\Burner\mencoder.exe</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\mencoder_copy.exe</LocalFileName> + <ZipFileName>Installer{CopyFile}\{ff2c241b-c503-4fd8-81d0-c05704a1346c}-mencoder_copy.exe</ZipFileName> + <DestinationFilename>%Base%\Burner\mencoder_copy.exe</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\menuGen.exe</LocalFileName> + <ZipFileName>Installer{CopyFile}\{a3343c1d-b657-4637-b904-9cee4d55972d}-menuGen.exe</ZipFileName> + <DestinationFilename>%Base%\Burner\menuGen.exe</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\mkisofs.exe</LocalFileName> + <ZipFileName>Installer{CopyFile}\{d1e7aaf1-4c66-46b4-bf2f-2a999eb4fed2}-mkisofs.exe</ZipFileName> + <DestinationFilename>%Base%\Burner\mkisofs.exe</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\modules.mgk</LocalFileName> + <ZipFileName>Installer{CopyFile}\{11125907-ac0e-43f8-afff-bf3f5dd52f40}-modules.mgk</ZipFileName> + <DestinationFilename>%Base%\Burner\modules.mgk</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\mpeg2desc.exe</LocalFileName> + <ZipFileName>Installer{CopyFile}\{4c4117cc-c3bf-4c0b-8a16-cfaab5de868a}-mpeg2desc.exe</ZipFileName> + <DestinationFilename>%Base%\Burner\mpeg2desc.exe</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\mpeg2enc.exe</LocalFileName> + <ZipFileName>Installer{CopyFile}\{007202f8-dc45-45f0-aeeb-645b525b512a}-mpeg2enc.exe</ZipFileName> + <DestinationFilename>%Base%\Burner\mpeg2enc.exe</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\mpgtx.exe</LocalFileName> + <ZipFileName>Installer{CopyFile}\{ebcb0ce9-bd2b-497b-866d-ce76ae818e4a}-mpgtx.exe</ZipFileName> + <DestinationFilename>%Base%\Burner\mpgtx.exe</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\mplex.exe</LocalFileName> + <ZipFileName>Installer{CopyFile}\{b2ab1170-2fc7-493b-8534-530e04686224}-mplex.exe</ZipFileName> + <DestinationFilename>%Base%\Burner\mplex.exe</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\msvcp60.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{a651503b-2468-4d66-ad87-f15610ee5ea3}-msvcp60.dll</ZipFileName> + <DestinationFilename>%Base%\Burner\msvcp60.dll</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\msvcrt.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{5acb9a07-44c0-41e1-9b64-dc1b8bb33ba5}-msvcrt.dll</ZipFileName> + <DestinationFilename>%Base%\Burner\msvcrt.dll</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\navButton.png</LocalFileName> + <ZipFileName>Installer{CopyFile}\{f372414f-c04c-4816-8e9e-5be06c78f49b}-navButton.png</ZipFileName> + <DestinationFilename>%Base%\Burner\navButton.png</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\png2yuv.exe</LocalFileName> + <ZipFileName>Installer{CopyFile}\{84868aab-6233-49ea-af2e-4d44885f51a8}-png2yuv.exe</ZipFileName> + <DestinationFilename>%Base%\Burner\png2yuv.exe</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\pthreadGC2.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{f622ced4-6bee-4742-9eb0-acef3b2f28ff}-pthreadGC2.dll</ZipFileName> + <DestinationFilename>%Base%\Burner\pthreadGC2.dll</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\pxsup2dast.exe</LocalFileName> + <ZipFileName>Installer{CopyFile}\{9bf0ed5a-f4b8-4d9c-ac64-1f420bc2b2df}-pxsup2dast.exe</ZipFileName> + <DestinationFilename>%Base%\Burner\pxsup2dast.exe</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\scanbus.bat</LocalFileName> + <ZipFileName>Installer{CopyFile}\{d5e82abe-7a24-4bc9-a5ca-baa96dfdba86}-scanbus.bat</ZipFileName> + <DestinationFilename>%Base%\Burner\scanbus.bat</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\Silence.ac3</LocalFileName> + <ZipFileName>Installer{CopyFile}\{495b6087-5538-455b-be16-63aeaf696840}-Silence.ac3</ZipFileName> + <DestinationFilename>%Base%\Burner\Silence.ac3</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\spumux.exe</LocalFileName> + <ZipFileName>Installer{CopyFile}\{5dbe8b99-a219-4805-ac90-b9f2ffff5cd0}-spumux.exe</ZipFileName> + <DestinationFilename>%Base%\Burner\spumux.exe</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\spuunmux.exe</LocalFileName> + <ZipFileName>Installer{CopyFile}\{268ed916-6a59-4e94-baf4-5d8508074f92}-spuunmux.exe</ZipFileName> + <DestinationFilename>%Base%\Burner\spuunmux.exe</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\submux.exe</LocalFileName> + <ZipFileName>Installer{CopyFile}\{d51cdaf1-d657-456a-9cb0-5e22586d6001}-submux.exe</ZipFileName> + <DestinationFilename>%Base%\Burner\submux.exe</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\tcmplex.exe</LocalFileName> + <ZipFileName>Installer{CopyFile}\{1f1a69a4-6ec8-43a7-9f50-67d35b423bbe}-tcmplex.exe</ZipFileName> + <DestinationFilename>%Base%\Burner\tcmplex.exe</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\type-ghostscript.mgk</LocalFileName> + <ZipFileName>Installer{CopyFile}\{07898b79-f579-40d7-9bac-71c944b5b06f}-type-ghostscript.mgk</ZipFileName> + <DestinationFilename>%Base%\Burner\type-ghostscript.mgk</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\type-solaris.mgk</LocalFileName> + <ZipFileName>Installer{CopyFile}\{9285df11-5707-4bfe-af48-572c06ba062e}-type-solaris.mgk</ZipFileName> + <DestinationFilename>%Base%\Burner\type-solaris.mgk</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\type-windows.mgk</LocalFileName> + <ZipFileName>Installer{CopyFile}\{dfdfef16-3eac-406f-ad28-d078da36853c}-type-windows.mgk</ZipFileName> + <DestinationFilename>%Base%\Burner\type-windows.mgk</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\type.mgk</LocalFileName> + <ZipFileName>Installer{CopyFile}\{425a74ab-7a6d-439f-9fee-7299a39afd1c}-type.mgk</ZipFileName> + <DestinationFilename>%Base%\Burner\type.mgk</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\zlib.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{d3529389-9eb1-4468-9b60-18ccc58cc25e}-zlib.dll</ZipFileName> + <DestinationFilename>%Base%\Burner\zlib.dll</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\mplayer\config</LocalFileName> + <ZipFileName>Installer{CopyFile}\{768bd20b-3b1a-4f54-9ad5-703a2171ab08}-config</ZipFileName> + <DestinationFilename>%Base%\Burner\mplayer\config</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\mplayer\input.conf</LocalFileName> + <ZipFileName>Installer{CopyFile}\{d4605909-c1d1-4b6c-b4b3-13456c1c70a1}-input.conf</ZipFileName> + <DestinationFilename>%Base%\Burner\mplayer\input.conf</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\drivers\Nt\dhahelper.sys</LocalFileName> + <ZipFileName>Installer{CopyFile}\{317069f2-a9f2-427d-ba78-7f9e289f0829}-dhahelper.sys</ZipFileName> + <DestinationFilename>%Base%\Burner\drivers\Nt\dhahelper.sys</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\drivers\Nt\dhasetup.exe</LocalFileName> + <ZipFileName>Installer{CopyFile}\{ace0bc53-ca85-4257-a1d3-b0ca312d3f46}-dhasetup.exe</ZipFileName> + <DestinationFilename>%Base%\Burner\drivers\Nt\dhasetup.exe</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\drivers\Nt\readme</LocalFileName> + <ZipFileName>Installer{CopyFile}\{cbc77b0c-e909-4d0f-ae2b-d0de8b56dd71}-readme</ZipFileName> + <DestinationFilename>%Base%\Burner\drivers\Nt\readme</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\drivers\9x\mapdev.copyright</LocalFileName> + <ZipFileName>Installer{CopyFile}\{3fb5f60f-257c-4449-9dc7-20bdfe017304}-mapdev.copyright</ZipFileName> + <DestinationFilename>%Base%\Burner\drivers\9x\mapdev.copyright</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\drivers\9x\mapdev.vxd</LocalFileName> + <ZipFileName>Installer{CopyFile}\{c6f27d00-4961-4baa-9383-cadc3a5c40c4}-mapdev.vxd</ZipFileName> + <DestinationFilename>%Base%\Burner\drivers\9x\mapdev.vxd</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\drivers\9x\readme</LocalFileName> + <ZipFileName>Installer{CopyFile}\{4b49f729-ba65-47ec-8744-b2522d35e1df}-readme</ZipFileName> + <DestinationFilename>%Base%\Burner\drivers\9x\readme</DestinationFilename> + </FileItem> + </Items> + </Files> + </GroupItem> + </Items> + </Groups> + <Sections> + <Items> + <SectionItem Guid="20f6a5a5-6c60-4e23-b76d-c95df244fef8" 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="01ab2ac5-0ea3-4c5b-9c68-92e62c9ffc9f" 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="0b5d3794-ee05-4895-a049-2fdff7b25559" 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 /> + </Dependencies> + <GeneralInfo> + <Name>Burner</Name> + <Id>df4d06b5-b67b-413a-86de-3d161b2ae3d6</Id> + <Author>Mat, MP team, Sergey Filippov</Author> + <HomePage /> + <ForumPage /> + <UpdateUrl>https://mp-plugins.svn.sourceforge.net/svnroot/mp-plugins/trunk/plugins/Burner/MpeRelease/update.xml</UpdateUrl> + <Version> + <Major>1</Major> + <Minor>0</Minor> + <Build>0</Build> + <Revision>4223</Revision> + </Version> + <ExtensionDescription>Burner will allow you to burn audio, video and data CDs and DVDs</ExtensionDescription> + <VersionDescription /> + <DevelopmentStatus>Beta</DevelopmentStatus> + <OnlineLocation>https://mp-plugins.svn.sourceforge.net/svnroot/mp-plugins/trunk/plugins/Burner/MpeRelease/Burner_1.0.0.4223.mpe1</OnlineLocation> + <ReleaseDate>2011-05-26T19:33:19.421875+04:00</ReleaseDate> + <Tags>burn dvd cd</Tags> + <Location>I:\MP-Burner\MpeRelease\Burner_1.0.0.4223.mpe1</Location> + <Params> + <Items> + <SectionParam Name="Icon"> + <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 have .exe extension the will be executed + If have .dll extension used like MP plugin configuration</Description> + </SectionParam> + <SectionParam Name="Online Screenshots"> + <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>OverwriteIfOlder</UpdateOption> + <LocalFileName>trunk\Burner\bin\Debug\Burner.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{c7900b3d-1d84-4a2b-9e4c-114e53898590}-Burner.dll</ZipFileName> + <DestinationFilename>%Plugins%\Windows\Burner.dll</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>trunk\Burner\bin\Debug\XPBurnComponent.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{235a2607-49ec-4fde-a2a4-1c002606ee3c}-XPBurnComponent.dll</ZipFileName> + <DestinationFilename>%Plugins%\Windows\XPBurnComponent.dll</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>trunk\Skin\Blue3\myburner.xml</LocalFileName> + <ZipFileName>Installer{CopyFile}\{a402e729-251c-4784-ac30-0ee473c5bf09}-myburner.xml</ZipFileName> + <DestinationFilename>%Skin%\default\myburner.xml</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>trunk\Skin\Blue3\Media\burn_logo.png</LocalFileName> + <ZipFileName>Installer{CopyFile}\{3e39958d-dda9-4c9e-a77d-48e056024de6}-burn_logo.png</ZipFileName> + <DestinationFilename>%Skin%\default\Media\burn_logo.png</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>trunk\Skin\Blue3\Media\hover_my burner.png</LocalFileName> + <ZipFileName>Installer{CopyFile}\{f6d4ad48-0571-47fc-8d43-eadd8d2a941d}-hover_my burner.png</ZipFileName> + <DestinationFilename>%Skin%\Default\Media\hover_my burner.png</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>trunk\Skin\Blue3wide\myburner.xml</LocalFileName> + <ZipFileName>Installer{CopyFile}\{72f407d6-cbd8-4b5a-8b0d-14adbdb38b2c}-myburner.xml</ZipFileName> + <DestinationFilename>%Skin%\DefaultWide\myburner.xml</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>trunk\Skin\Blue3wide\Media\burn_logo.png</LocalFileName> + <ZipFileName>Installer{CopyFile}\{c0974068-6e38-44c4-b92f-0e9343a26a36}-burn_logo.png</ZipFileName> + <DestinationFilename>%Skin%\DefaultWide\Media\burn_logo.png</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>trunk\Skin\Blue3wide\Media\hover_my burner.png</LocalFileName> + <ZipFileName>Installer{CopyFile}\{125af905-c6e4-4f74-a5e2-87297c53a547}-hover_my burner.png</ZipFileName> + <DestinationFilename>%Skin%\DefaultWide\Media\hover_my burner.png</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\burn.bat</LocalFileName> + <ZipFileName>Installer{CopyFile}\{d563c994-6082-46f9-9a95-a9159a76fe67}-burn.bat</ZipFileName> + <DestinationFilename>%Base%\Burner\burn.bat</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\colors.mgk</LocalFileName> + <ZipFileName>Installer{CopyFile}\{c16d3221-a73d-4247-a91a-79637975523d}-colors.mgk</ZipFileName> + <DestinationFilename>%Base%\Burner\colors.mgk</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygfreetype-6.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{728eedcc-3483-4177-9a48-2e91b433c068}-cygfreetype-6.dll</ZipFileName> + <DestinationFilename>%Base%\Burner\cygfreetype-6.dll</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygiconv-2.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{00856f60-c53d-44c6-b19e-67b0c194e4cd}-cygiconv-2.dll</ZipFileName> + <DestinationFilename>%Base%\Burner\cygiconv-2.dll</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygintl-1.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{0f01fbed-4d7e-4f8d-a080-be3e7fcd614c}-cygintl-1.dll</ZipFileName> + <DestinationFilename>%Base%\Burner\cygintl-1.dll</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygjasper-1-701-1.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{aeb6b20a-e5bd-4ff6-9c26-ab7277ba8424}-cygjasper-1-701-1.dll</ZipFileName> + <DestinationFilename>%Base%\Burner\cygjasper-1-701-1.dll</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygjpeg-62.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{805e0b05-e2a0-4081-9551-52cdddd76edd}-cygjpeg-62.dll</ZipFileName> + <DestinationFilename>%Base%\Burner\cygjpeg-62.dll</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygjpeg6b.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{32870af9-d923-4d7a-8280-a29c0f3d0f7b}-cygjpeg6b.dll</ZipFileName> + <DestinationFilename>%Base%\Burner\cygjpeg6b.dll</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygpng12.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{4af817fc-3fa2-4d06-8edf-b64f6a28de48}-cygpng12.dll</ZipFileName> + <DestinationFilename>%Base%\Burner\cygpng12.dll</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygwin1.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{2fe7b565-5650-43e6-844c-73d93f8c01f3}-cygwin1.dll</ZipFileName> + <DestinationFilename>%Base%\Burner\cygwin1.dll</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygwmflite-0-2-7.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{55bd37e1-8ea3-4c93-8b1d-f4128d45a4e6}-cygwmflite-0-2-7.dll</ZipFileName> + <DestinationFilename>%Base%\Burner\cygwmflite-0-2-7.dll</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygxml2-2.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{a5f4dd12-767a-418c-b7e4-06d3557c6817}-cygxml2-2.dll</ZipFileName> + <DestinationFilename>%Base%\Burner\cygxml2-2.dll</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygz.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{7e1863cf-12cc-48ad-bcd1-455783296c7a}-cygz.dll</ZipFileName> + <DestinationFilename>%Base%\Burner\cygz.dll</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\dvd.bat</LocalFileName> + <ZipFileName>Installer{CopyFile}\{011c4951-6c01-4502-9060-d1c4e2640e6a}-dvd.bat</ZipFileName> + <DestinationFilename>%Base%\Burner\dvd.bat</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\dvdauthor.exe</LocalFileName> + <ZipFileName>Installer{CopyFile}\{5098d331-8796-49fc-b2c1-2b3e42dc1adc}-dvdauthor.exe</ZipFileName> + <DestinationFilename>%Base%\Burner\dvdauthor.exe</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\gm.exe</LocalFileName> + <ZipFileName>Installer{CopyFile}\{8f97e517-cb68-49ad-95da-1bd8b1609cd6}-gm.exe</ZipFileName> + <DestinationFilename>%Base%\Burner\gm.exe</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\iso.bat</LocalFileName> + <ZipFileName>Installer{CopyFile}\{1b454dfb-e5cf-4437-a0ee-91e08b2e921a}-iso.bat</ZipFileName> + <DestinationFilename>%Base%\Burner\iso.bat</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\jpeg2yuv.exe</LocalFileName> + <ZipFileName>Installer{CopyFile}\{3f6dc314-beba-4f48-aaaf-a07179c13a70}-jpeg2yuv.exe</ZipFileName> + <DestinationFilename>%Base%\Burner\jpeg2yuv.exe</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\libpng12.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{cd669e72-54ff-431f-9dce-e93ab9a454fb}-libpng12.dll</ZipFileName> + <DestinationFilename>%Base%\Burner\libpng12.dll</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\libz.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{5e3e9e0d-5906-4767-8c89-b90388c34eb3}-libz.dll</ZipFileName> + <DestinationFilename>%Base%\Burner\libz.dll</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\magic.mgk</LocalFileName> + <ZipFileName>Installer{CopyFile}\{72efaeb6-f061-4705-8143-fe5ac9368ce3}-magic.mgk</ZipFileName> + <DestinationFilename>%Base%\Burner\magic.mgk</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\mat.bat</LocalFileName> + <ZipFileName>Installer{CopyFile}\{066432f9-6bd5-426d-af84-e7c73e41e56a}-mat.bat</ZipFileName> + <DestinationFilename>%Base%\Burner\mat.bat</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\mencoder.exe</LocalFileName> + <ZipFileName>Installer{CopyFile}\{fc40160c-08dc-4407-864f-9191ef09d4b2}-mencoder.exe</ZipFileName> + <DestinationFilename>%Base%\Burner\mencoder.exe</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\mencoder_copy.exe</LocalFileName> + <ZipFileName>Installer{CopyFile}\{ff2c241b-c503-4fd8-81d0-c05704a1346c}-mencoder_copy.exe</ZipFileName> + <DestinationFilename>%Base%\Burner\mencoder_copy.exe</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\menuGen.exe</LocalFileName> + <ZipFileName>Installer{CopyFile}\{a3343c1d-b657-4637-b904-9cee4d55972d}-menuGen.exe</ZipFileName> + <DestinationFilename>%Base%\Burner\menuGen.exe</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\mkisofs.exe</LocalFileName> + <ZipFileName>Installer{CopyFile}\{d1e7aaf1-4c66-46b4-bf2f-2a999eb4fed2}-mkisofs.exe</ZipFileName> + <DestinationFilename>%Base%\Burner\mkisofs.exe</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\modules.mgk</LocalFileName> + <ZipFileName>Installer{CopyFile}\{11125907-ac0e-43f8-afff-bf3f5dd52f40}-modules.mgk</ZipFileName> + <DestinationFilename>%Base%\Burner\modules.mgk</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\mpeg2desc.exe</LocalFileName> + <ZipFileName>Installer{CopyFile}\{4c4117cc-c3bf-4c0b-8a16-cfaab5de868a}-mpeg2desc.exe</ZipFileName> + <DestinationFilename>%Base%\Burner\mpeg2desc.exe</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\mpeg2enc.exe</LocalFileName> + <ZipFileName>Installer{CopyFile}\{007202f8-dc45-45f0-aeeb-645b525b512a}-mpeg2enc.exe</ZipFileName> + <DestinationFilename>%Base%\Burner\mpeg2enc.exe</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\mpgtx.exe</LocalFileName> + <ZipFileName>Installer{CopyFile}\{ebcb0ce9-bd2b-497b-866d-ce76ae818e4a}-mpgtx.exe</ZipFileName> + <DestinationFilename>%Base%\Burner\mpgtx.exe</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\mplex.exe</LocalFileName> + <ZipFileName>Installer{CopyFile}\{b2ab1170-2fc7-493b-8534-530e04686224}-mplex.exe</ZipFileName> + <DestinationFilename>%Base%\Burner\mplex.exe</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\msvcp60.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{a651503b-2468-4d66-ad87-f15610ee5ea3}-msvcp60.dll</ZipFileName> + <DestinationFilename>%Base%\Burner\msvcp60.dll</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\msvcrt.dll</LocalFileName> + <ZipFileName>I... [truncated message content] |
From: <ro...@us...> - 2011-05-26 16:34:27
|
Revision: 4228 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=4228&view=rev Author: rolenof Date: 2011-05-26 16:34:21 +0000 (Thu, 26 May 2011) Log Message: ----------- Last version of installer Modified Paths: -------------- trunk/plugins/Burner/MpeRelease/Burner_1.0.0.4223.mpe1 trunk/plugins/Burner/MpeRelease/update.xml trunk/plugins/Burner/burner.xmp2 trunk/plugins/Burner/trunk/Burner/GUIBurner.cs Modified: trunk/plugins/Burner/MpeRelease/Burner_1.0.0.4223.mpe1 =================================================================== (Binary files differ) Modified: trunk/plugins/Burner/MpeRelease/update.xml =================================================================== --- trunk/plugins/Burner/MpeRelease/update.xml 2011-05-26 16:20:37 UTC (rev 4227) +++ trunk/plugins/Burner/MpeRelease/update.xml 2011-05-26 16:34:21 UTC (rev 4228) @@ -7,19 +7,55 @@ <Items> <GroupItem Name="Default"> <DisplayName>Default</DisplayName> - <DefaulChecked>false</DefaulChecked> + <DefaulChecked>true</DefaulChecked> <Description>Default</Description> <Files> <Items /> </Files> </GroupItem> + <GroupItem Name="Skin"> + <DisplayName>Skin</DisplayName> + <DefaulChecked>true</DefaulChecked> + <Description>Skin</Description> + <Files> + <Items /> + </Files> + </GroupItem> + <GroupItem Name="dep"> + <DisplayName>dep</DisplayName> + <DefaulChecked>true</DefaulChecked> + <Description>dep</Description> + <Files> + <Items /> + </Files> + </GroupItem> </Items> </Groups> <Sections> <Items /> </Sections> <Dependencies> - <Items /> + <Items> + <DependencyItem> + <Type>MediaPortal</Type> + <Id /> + <MinVersion> + <Major>1</Major> + <Minor>1</Minor> + <Build>0</Build> + <Revision>6</Revision> + </MinVersion> + <MaxVersion> + <Major>1</Major> + <Minor>1</Minor> + <Build>0</Build> + <Revision>6</Revision> + </MaxVersion> + <WarnOnly>true</WarnOnly> + <Message>Need version of MediaPortal with version 1.1.0.6</Message> + <Name>MediaPortal</Name> + </DependencyItem> + </Items> </Dependencies> <GeneralInfo> <Name>Burner</Name> @@ -40,7 +76,7 @@ <OnlineLocation>https://mp-plugins.svn.sourceforge.net/svnroot/mp-plugins/trunk/plugins/Burner/MpeRelease/Burner_1.0.0.4223.mpe1</OnlineLocation> <ReleaseDate>2011-05-26T19:33:19.421875+04:00</ReleaseDate> <Tags>burn dvd cd</Tags> - <Location /> + <Location>I:\MP-Burner\MpeRelease\Burner_1.0.0.4223.mpe1</Location> <Params> <Items> <SectionParam Name="Icon"> Modified: trunk/plugins/Burner/burner.xmp2 =================================================================== --- trunk/plugins/Burner/burner.xmp2 2011-05-26 16:20:37 UTC (rev 4227) +++ trunk/plugins/Burner/burner.xmp2 2011-05-26 16:34:21 UTC (rev 4228) @@ -601,7 +601,27 @@ </Items> </Sections> <Dependencies> - <Items /> + <Items> + <DependencyItem> + <Type>MediaPortal</Type> + <Id /> + <MinVersion> + <Major>1</Major> + <Minor>1</Minor> + <Build>0</Build> + <Revision>6</Revision> + </MinVersion> + <MaxVersion> + <Major>1</Major> + <Minor>1</Minor> + <Build>0</Build> + <Revision>6</Revision> + </MaxVersion> + <WarnOnly>true</WarnOnly> + <Message>Need version of MediaPortal with version 1.1.0.6</Message> + <Name>MediaPortal</Name> + </DependencyItem> + </Items> </Dependencies> <GeneralInfo> <Name>Burner</Name> Modified: trunk/plugins/Burner/trunk/Burner/GUIBurner.cs =================================================================== --- trunk/plugins/Burner/trunk/Burner/GUIBurner.cs 2011-05-26 16:20:37 UTC (rev 4227) +++ trunk/plugins/Burner/trunk/Burner/GUIBurner.cs 2011-05-26 16:34:21 UTC (rev 4228) @@ -590,12 +590,12 @@ currentFolder = currentFolder.Remove(indx, 1); } - ThumbnailExtractor thmbEx = new ThumbnailExtractor(); + //ThumbnailExtractor thmbEx = new ThumbnailExtractor(); - System.Drawing.Bitmap image = thmbEx.GetThumbnail(item.Path.ToString()); + //System.Drawing.Bitmap image = thmbEx.GetThumbnail(item.Path.ToString()); GUIListItem pItem = new GUIListItem(item); - pItem.RefreshCoverArt(); + //pItem.RefreshCoverArt(); // Work out how big the CD/DVD is so far...both in terms of file size (used for Data) and play length (user for Audio/Video) totalSize = totalSize + pItem.FileInfo.Length; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ro...@us...> - 2011-05-28 12:23:45
|
Revision: 4230 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=4230&view=rev Author: rolenof Date: 2011-05-28 12:23:38 +0000 (Sat, 28 May 2011) Log Message: ----------- Modified Paths: -------------- trunk/plugins/Burner/MpeRelease/Burner_1.0.0.4223.mpe1 trunk/plugins/Burner/MpeRelease/update.xml trunk/plugins/Burner/burner.xmp2 Added Paths: ----------- trunk/plugins/Burner/MpeRelease/pic1.png Modified: trunk/plugins/Burner/MpeRelease/Burner_1.0.0.4223.mpe1 =================================================================== (Binary files differ) Added: trunk/plugins/Burner/MpeRelease/pic1.png =================================================================== (Binary files differ) Property changes on: trunk/plugins/Burner/MpeRelease/pic1.png ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Modified: trunk/plugins/Burner/MpeRelease/update.xml =================================================================== --- trunk/plugins/Burner/MpeRelease/update.xml 2011-05-27 09:12:05 UTC (rev 4229) +++ trunk/plugins/Burner/MpeRelease/update.xml 2011-05-28 12:23:38 UTC (rev 4230) @@ -21,10 +21,10 @@ <Items /> </Files> </GroupItem> - <GroupItem Name="dep"> - <DisplayName>dep</DisplayName> + <GroupItem Name="support"> + <DisplayName>support</DisplayName> <DefaulChecked>true</DefaulChecked> - <Description>dep</Description> + <Description>support</Description> <Files> <Items /> </Files> @@ -72,7 +72,7 @@ </Version> <ExtensionDescription>Burner will allow you to burn audio, video and data CDs and DVDs</ExtensionDescription> <VersionDescription /> - <DevelopmentStatus>Beta</DevelopmentStatus> + <DevelopmentStatus>Stable</DevelopmentStatus> <OnlineLocation>https://mp-plugins.svn.sourceforge.net/svnroot/mp-plugins/trunk/plugins/Burner/MpeRelease/Burner_1.0.0.4223.mpe1</OnlineLocation> <ReleaseDate>2011-05-26T19:33:19.421875+04:00</ReleaseDate> <Tags>burn dvd cd</Tags> Modified: trunk/plugins/Burner/burner.xmp2 =================================================================== --- trunk/plugins/Burner/burner.xmp2 2011-05-27 09:12:05 UTC (rev 4229) +++ trunk/plugins/Burner/burner.xmp2 2011-05-28 12:23:38 UTC (rev 4230) @@ -93,404 +93,348 @@ </Items> </Files> </GroupItem> - <GroupItem Name="dep"> - <DisplayName>Support files</DisplayName> + <GroupItem Name="support"> + <DisplayName>dep</DisplayName> <DefaulChecked>true</DefaulChecked> - <Description>dep</Description> + <Description>support</Description> <Files> <Items> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\burn.bat</LocalFileName> - <ZipFileName>Installer{CopyFile}\{d563c994-6082-46f9-9a95-a9159a76fe67}-burn.bat</ZipFileName> + <ZipFileName>Installer{CopyFile}\{a97fa310-4391-4a1a-92a5-f818e68f300e}-burn.bat</ZipFileName> <DestinationFilename>%Base%\Burner\burn.bat</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\colors.mgk</LocalFileName> - <ZipFileName>Installer{CopyFile}\{c16d3221-a73d-4247-a91a-79637975523d}-colors.mgk</ZipFileName> + <ZipFileName>Installer{CopyFile}\{00a57a68-2841-407a-82f3-af3861bf3a51}-colors.mgk</ZipFileName> <DestinationFilename>%Base%\Burner\colors.mgk</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygfreetype-6.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{728eedcc-3483-4177-9a48-2e91b433c068}-cygfreetype-6.dll</ZipFileName> + <ZipFileName>Installer{CopyFile}\{63aac570-b5f3-4e72-926f-51bfdc243a16}-cygfreetype-6.dll</ZipFileName> <DestinationFilename>%Base%\Burner\cygfreetype-6.dll</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygiconv-2.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{00856f60-c53d-44c6-b19e-67b0c194e4cd}-cygiconv-2.dll</ZipFileName> + <ZipFileName>Installer{CopyFile}\{80b8ed33-e3db-4a9f-953b-6fbb11d87f53}-cygiconv-2.dll</ZipFileName> <DestinationFilename>%Base%\Burner\cygiconv-2.dll</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygintl-1.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{0f01fbed-4d7e-4f8d-a080-be3e7fcd614c}-cygintl-1.dll</ZipFileName> + <ZipFileName>Installer{CopyFile}\{c8141136-d7e6-48a1-a49c-8abfaa696078}-cygintl-1.dll</ZipFileName> <DestinationFilename>%Base%\Burner\cygintl-1.dll</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygjasper-1-701-1.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{aeb6b20a-e5bd-4ff6-9c26-ab7277ba8424}-cygjasper-1-701-1.dll</ZipFileName> + <ZipFileName>Installer{CopyFile}\{a3a46c45-a99e-4010-b733-7c1dfd741774}-cygjasper-1-701-1.dll</ZipFileName> <DestinationFilename>%Base%\Burner\cygjasper-1-701-1.dll</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygjpeg-62.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{805e0b05-e2a0-4081-9551-52cdddd76edd}-cygjpeg-62.dll</ZipFileName> - <DestinationFilename>%Base%\Burner\cygjpeg-62.dll</DestinationFilename> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygjpeg6b.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{d533b2ba-c101-4671-8bbf-66a0f3362d79}-cygjpeg6b.dll</ZipFileName> + <DestinationFilename>%Base%\Burner\cygjpeg6b.dll</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygjpeg6b.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{32870af9-d923-4d7a-8280-a29c0f3d0f7b}-cygjpeg6b.dll</ZipFileName> - <DestinationFilename>%Base%\Burner\cygjpeg6b.dll</DestinationFilename> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygjpeg-62.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{cc600eb2-fbb6-47d5-a9ea-0c31c986fe1d}-cygjpeg-62.dll</ZipFileName> + <DestinationFilename>%Base%\Burner\cygjpeg-62.dll</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygpng12.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{4af817fc-3fa2-4d06-8edf-b64f6a28de48}-cygpng12.dll</ZipFileName> + <ZipFileName>Installer{CopyFile}\{184788b9-08f1-4a85-bdd6-bcafdcd69191}-cygpng12.dll</ZipFileName> <DestinationFilename>%Base%\Burner\cygpng12.dll</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygwin1.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{2fe7b565-5650-43e6-844c-73d93f8c01f3}-cygwin1.dll</ZipFileName> + <ZipFileName>Installer{CopyFile}\{20d890ae-107c-4655-9851-7a3b06bd55de}-cygwin1.dll</ZipFileName> <DestinationFilename>%Base%\Burner\cygwin1.dll</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygwmflite-0-2-7.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{55bd37e1-8ea3-4c93-8b1d-f4128d45a4e6}-cygwmflite-0-2-7.dll</ZipFileName> + <ZipFileName>Installer{CopyFile}\{39626cfd-9086-49fe-a871-91c41eb027a5}-cygwmflite-0-2-7.dll</ZipFileName> <DestinationFilename>%Base%\Burner\cygwmflite-0-2-7.dll</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygxml2-2.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{a5f4dd12-767a-418c-b7e4-06d3557c6817}-cygxml2-2.dll</ZipFileName> + <ZipFileName>Installer{CopyFile}\{749bb2dc-7047-46d1-9cde-629b70cfe542}-cygxml2-2.dll</ZipFileName> <DestinationFilename>%Base%\Burner\cygxml2-2.dll</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygz.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{7e1863cf-12cc-48ad-bcd1-455783296c7a}-cygz.dll</ZipFileName> + <ZipFileName>Installer{CopyFile}\{00f68d4f-cc18-42ea-812a-004a84e0025f}-cygz.dll</ZipFileName> <DestinationFilename>%Base%\Burner\cygz.dll</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\dvd.bat</LocalFileName> - <ZipFileName>Installer{CopyFile}\{011c4951-6c01-4502-9060-d1c4e2640e6a}-dvd.bat</ZipFileName> + <ZipFileName>Installer{CopyFile}\{af682c06-8fcf-48d2-8f93-1d21d5acfd53}-dvd.bat</ZipFileName> <DestinationFilename>%Base%\Burner\dvd.bat</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\dvdauthor.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{5098d331-8796-49fc-b2c1-2b3e42dc1adc}-dvdauthor.exe</ZipFileName> + <ZipFileName>Installer{CopyFile}\{8fe90035-e2d8-4f2c-b8a9-c6d34d28220d}-dvdauthor.exe</ZipFileName> <DestinationFilename>%Base%\Burner\dvdauthor.exe</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\gm.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{8f97e517-cb68-49ad-95da-1bd8b1609cd6}-gm.exe</ZipFileName> + <ZipFileName>Installer{CopyFile}\{f7b8f022-56c9-4889-977b-de39b66bcd40}-gm.exe</ZipFileName> <DestinationFilename>%Base%\Burner\gm.exe</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\iso.bat</LocalFileName> - <ZipFileName>Installer{CopyFile}\{1b454dfb-e5cf-4437-a0ee-91e08b2e921a}-iso.bat</ZipFileName> + <ZipFileName>Installer{CopyFile}\{7437a816-608a-490c-ab25-4fb85c2fb44a}-iso.bat</ZipFileName> <DestinationFilename>%Base%\Burner\iso.bat</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\jpeg2yuv.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{3f6dc314-beba-4f48-aaaf-a07179c13a70}-jpeg2yuv.exe</ZipFileName> + <ZipFileName>Installer{CopyFile}\{1cc6e5df-d801-4fa2-8bf2-d0cb13f64779}-jpeg2yuv.exe</ZipFileName> <DestinationFilename>%Base%\Burner\jpeg2yuv.exe</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\libpng12.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{cd669e72-54ff-431f-9dce-e93ab9a454fb}-libpng12.dll</ZipFileName> + <ZipFileName>Installer{CopyFile}\{8750c4b9-7d12-4fc2-b07f-8b3db21fbaf7}-libpng12.dll</ZipFileName> <DestinationFilename>%Base%\Burner\libpng12.dll</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\libz.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{5e3e9e0d-5906-4767-8c89-b90388c34eb3}-libz.dll</ZipFileName> + <ZipFileName>Installer{CopyFile}\{aecf2909-d815-4897-b9a1-a79a2a109b62}-libz.dll</ZipFileName> <DestinationFilename>%Base%\Burner\libz.dll</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\magic.mgk</LocalFileName> - <ZipFileName>Installer{CopyFile}\{72efaeb6-f061-4705-8143-fe5ac9368ce3}-magic.mgk</ZipFileName> + <ZipFileName>Installer{CopyFile}\{da7b297a-769d-4b9e-965e-b7d3dcc74d3a}-magic.mgk</ZipFileName> <DestinationFilename>%Base%\Burner\magic.mgk</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\mat.bat</LocalFileName> - <ZipFileName>Installer{CopyFile}\{066432f9-6bd5-426d-af84-e7c73e41e56a}-mat.bat</ZipFileName> + <ZipFileName>Installer{CopyFile}\{7914d306-881d-447b-b8a3-8577e8b332ea}-mat.bat</ZipFileName> <DestinationFilename>%Base%\Burner\mat.bat</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\mencoder.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{fc40160c-08dc-4407-864f-9191ef09d4b2}-mencoder.exe</ZipFileName> + <ZipFileName>Installer{CopyFile}\{1b852037-c008-4051-932d-6a31d1733dc1}-mencoder.exe</ZipFileName> <DestinationFilename>%Base%\Burner\mencoder.exe</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\mencoder_copy.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{ff2c241b-c503-4fd8-81d0-c05704a1346c}-mencoder_copy.exe</ZipFileName> + <ZipFileName>Installer{CopyFile}\{051a0375-631a-49ee-baa8-91f91a48a6a0}-mencoder_copy.exe</ZipFileName> <DestinationFilename>%Base%\Burner\mencoder_copy.exe</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\menuGen.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{a3343c1d-b657-4637-b904-9cee4d55972d}-menuGen.exe</ZipFileName> + <ZipFileName>Installer{CopyFile}\{e5907668-6c35-4745-a079-886e24490e68}-menuGen.exe</ZipFileName> <DestinationFilename>%Base%\Burner\menuGen.exe</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\mkisofs.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{d1e7aaf1-4c66-46b4-bf2f-2a999eb4fed2}-mkisofs.exe</ZipFileName> + <ZipFileName>Installer{CopyFile}\{a7c0ea63-4fd2-43fb-91e0-d86862a0e996}-mkisofs.exe</ZipFileName> <DestinationFilename>%Base%\Burner\mkisofs.exe</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\modules.mgk</LocalFileName> - <ZipFileName>Installer{CopyFile}\{11125907-ac0e-43f8-afff-bf3f5dd52f40}-modules.mgk</ZipFileName> + <ZipFileName>Installer{CopyFile}\{7b0b4eda-33b0-42fe-90a5-a0d27942ff2d}-modules.mgk</ZipFileName> <DestinationFilename>%Base%\Burner\modules.mgk</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\mpeg2desc.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{4c4117cc-c3bf-4c0b-8a16-cfaab5de868a}-mpeg2desc.exe</ZipFileName> + <ZipFileName>Installer{CopyFile}\{f31ef279-fb02-4960-83a8-9bc594336e5b}-mpeg2desc.exe</ZipFileName> <DestinationFilename>%Base%\Burner\mpeg2desc.exe</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\mpeg2enc.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{007202f8-dc45-45f0-aeeb-645b525b512a}-mpeg2enc.exe</ZipFileName> + <ZipFileName>Installer{CopyFile}\{2aa34912-d4f4-463c-912f-f5bd4faa4e23}-mpeg2enc.exe</ZipFileName> <DestinationFilename>%Base%\Burner\mpeg2enc.exe</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\mpgtx.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{ebcb0ce9-bd2b-497b-866d-ce76ae818e4a}-mpgtx.exe</ZipFileName> + <ZipFileName>Installer{CopyFile}\{0d4020e1-80c2-448e-8d39-9ee17c906a8f}-mpgtx.exe</ZipFileName> <DestinationFilename>%Base%\Burner\mpgtx.exe</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\mplex.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{b2ab1170-2fc7-493b-8534-530e04686224}-mplex.exe</ZipFileName> + <ZipFileName>Installer{CopyFile}\{ad6cf692-825f-4fcf-a13d-b7a2d2d00761}-mplex.exe</ZipFileName> <DestinationFilename>%Base%\Burner\mplex.exe</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\msvcp60.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{a651503b-2468-4d66-ad87-f15610ee5ea3}-msvcp60.dll</ZipFileName> + <ZipFileName>Installer{CopyFile}\{2d0db5aa-29e1-46e9-9805-a0c64445dadb}-msvcp60.dll</ZipFileName> <DestinationFilename>%Base%\Burner\msvcp60.dll</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\msvcrt.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{5acb9a07-44c0-41e1-9b64-dc1b8bb33ba5}-msvcrt.dll</ZipFileName> + <ZipFileName>Installer{CopyFile}\{f509be8f-b184-4812-8938-80ce63b369e6}-msvcrt.dll</ZipFileName> <DestinationFilename>%Base%\Burner\msvcrt.dll</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\navButton.png</LocalFileName> - <ZipFileName>Installer{CopyFile}\{f372414f-c04c-4816-8e9e-5be06c78f49b}-navButton.png</ZipFileName> + <ZipFileName>Installer{CopyFile}\{ac45474c-aaea-42dc-817f-8448b069314a}-navButton.png</ZipFileName> <DestinationFilename>%Base%\Burner\navButton.png</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\png2yuv.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{84868aab-6233-49ea-af2e-4d44885f51a8}-png2yuv.exe</ZipFileName> + <ZipFileName>Installer{CopyFile}\{6713095f-903e-4079-b87a-6e7add18020c}-png2yuv.exe</ZipFileName> <DestinationFilename>%Base%\Burner\png2yuv.exe</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\pthreadGC2.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{f622ced4-6bee-4742-9eb0-acef3b2f28ff}-pthreadGC2.dll</ZipFileName> + <ZipFileName>Installer{CopyFile}\{d0c65997-dec4-4361-95a0-a67493cd5394}-pthreadGC2.dll</ZipFileName> <DestinationFilename>%Base%\Burner\pthreadGC2.dll</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\pxsup2dast.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{9bf0ed5a-f4b8-4d9c-ac64-1f420bc2b2df}-pxsup2dast.exe</ZipFileName> + <ZipFileName>Installer{CopyFile}\{aecd67ee-ac32-4d2c-8ac0-8a688b76ebda}-pxsup2dast.exe</ZipFileName> <DestinationFilename>%Base%\Burner\pxsup2dast.exe</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\scanbus.bat</LocalFileName> - <ZipFileName>Installer{CopyFile}\{d5e82abe-7a24-4bc9-a5ca-baa96dfdba86}-scanbus.bat</ZipFileName> + <ZipFileName>Installer{CopyFile}\{6c6b8a29-d0fc-4fd9-82b0-6d178d912283}-scanbus.bat</ZipFileName> <DestinationFilename>%Base%\Burner\scanbus.bat</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\Silence.ac3</LocalFileName> - <ZipFileName>Installer{CopyFile}\{495b6087-5538-455b-be16-63aeaf696840}-Silence.ac3</ZipFileName> + <ZipFileName>Installer{CopyFile}\{f0c686af-c79e-4cb5-830d-4ba2b81f6e47}-Silence.ac3</ZipFileName> <DestinationFilename>%Base%\Burner\Silence.ac3</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\spumux.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{5dbe8b99-a219-4805-ac90-b9f2ffff5cd0}-spumux.exe</ZipFileName> + <ZipFileName>Installer{CopyFile}\{a69476af-a41e-43c4-b733-b19c77572187}-spumux.exe</ZipFileName> <DestinationFilename>%Base%\Burner\spumux.exe</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\spuunmux.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{268ed916-6a59-4e94-baf4-5d8508074f92}-spuunmux.exe</ZipFileName> + <ZipFileName>Installer{CopyFile}\{08033507-92a5-47b1-9571-0c0c7dd77b0c}-spuunmux.exe</ZipFileName> <DestinationFilename>%Base%\Burner\spuunmux.exe</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\submux.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{d51cdaf1-d657-456a-9cb0-5e22586d6001}-submux.exe</ZipFileName> + <ZipFileName>Installer{CopyFile}\{15774289-6688-4efc-8759-810c9ebba935}-submux.exe</ZipFileName> <DestinationFilename>%Base%\Burner\submux.exe</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\tcmplex.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{1f1a69a4-6ec8-43a7-9f50-67d35b423bbe}-tcmplex.exe</ZipFileName> + <ZipFileName>Installer{CopyFile}\{55a4050b-1939-47ee-b139-4bb8b553f061}-tcmplex.exe</ZipFileName> <DestinationFilename>%Base%\Burner\tcmplex.exe</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\type.mgk</LocalFileName> + <ZipFileName>Installer{CopyFile}\{5c4fcc5a-c030-407c-b05b-45b0e919515c}-type.mgk</ZipFileName> + <DestinationFilename>%Base%\Burner\type.mgk</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\type-ghostscript.mgk</LocalFileName> - <ZipFileName>Installer{CopyFile}\{07898b79-f579-40d7-9bac-71c944b5b06f}-type-ghostscript.mgk</ZipFileName> + <ZipFileName>Installer{CopyFile}\{63d11825-0dcd-4312-b99c-fb95ff5ecc84}-type-ghostscript.mgk</ZipFileName> <DestinationFilename>%Base%\Burner\type-ghostscript.mgk</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\type-solaris.mgk</LocalFileName> - <ZipFileName>Installer{CopyFile}\{9285df11-5707-4bfe-af48-572c06ba062e}-type-solaris.mgk</ZipFileName> + <ZipFileName>Installer{CopyFile}\{b1d5fb6b-d3ed-47fe-849a-fe9d5f18a7c0}-type-solaris.mgk</ZipFileName> <DestinationFilename>%Base%\Burner\type-solaris.mgk</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\type-windows.mgk</LocalFileName> - <ZipFileName>Installer{CopyFile}\{dfdfef16-3eac-406f-ad28-d078da36853c}-type-windows.mgk</ZipFileName> + <ZipFileName>Installer{CopyFile}\{ab35339b-c646-48b0-a78a-0e9bfa1faa7e}-type-windows.mgk</ZipFileName> <DestinationFilename>%Base%\Burner\type-windows.mgk</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\type.mgk</LocalFileName> - <ZipFileName>Installer{CopyFile}\{425a74ab-7a6d-439f-9fee-7299a39afd1c}-type.mgk</ZipFileName> - <DestinationFilename>%Base%\Burner\type.mgk</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\zlib.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{d3529389-9eb1-4468-9b60-18ccc58cc25e}-zlib.dll</ZipFileName> + <ZipFileName>Installer{CopyFile}\{225cd585-d093-4e65-9219-ab68a718ae98}-zlib.dll</ZipFileName> <DestinationFilename>%Base%\Burner\zlib.dll</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\mplayer\config</LocalFileName> - <ZipFileName>Installer{CopyFile}\{768bd20b-3b1a-4f54-9ad5-703a2171ab08}-config</ZipFileName> - <DestinationFilename>%Base%\Burner\mplayer\config</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\mplayer\input.conf</LocalFileName> - <ZipFileName>Installer{CopyFile}\{d4605909-c1d1-4b6c-b4b3-13456c1c70a1}-input.conf</ZipFileName> - <DestinationFilename>%Base%\Burner\mplayer\input.conf</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\drivers\Nt\dhahelper.sys</LocalFileName> - <ZipFileName>Installer{CopyFile}\{317069f2-a9f2-427d-ba78-7f9e289f0829}-dhahelper.sys</ZipFileName> - <DestinationFilename>%Base%\Burner\drivers\Nt\dhahelper.sys</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\drivers\Nt\dhasetup.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{ace0bc53-ca85-4257-a1d3-b0ca312d3f46}-dhasetup.exe</ZipFileName> - <DestinationFilename>%Base%\Burner\drivers\Nt\dhasetup.exe</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\drivers\Nt\readme</LocalFileName> - <ZipFileName>Installer{CopyFile}\{cbc77b0c-e909-4d0f-ae2b-d0de8b56dd71}-readme</ZipFileName> - <DestinationFilename>%Base%\Burner\drivers\Nt\readme</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\drivers\9x\mapdev.copyright</LocalFileName> - <ZipFileName>Installer{CopyFile}\{3fb5f60f-257c-4449-9dc7-20bdfe017304}-mapdev.copyright</ZipFileName> - <DestinationFilename>%Base%\Burner\drivers\9x\mapdev.copyright</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\drivers\9x\mapdev.vxd</LocalFileName> - <ZipFileName>Installer{CopyFile}\{c6f27d00-4961-4baa-9383-cadc3a5c40c4}-mapdev.vxd</ZipFileName> - <DestinationFilename>%Base%\Burner\drivers\9x\mapdev.vxd</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\drivers\9x\readme</LocalFileName> - <ZipFileName>Installer{CopyFile}\{4b49f729-ba65-47ec-8744-b2522d35e1df}-readme</ZipFileName> - <DestinationFilename>%Base%\Burner\drivers\9x\readme</DestinationFilename> - </FileItem> </Items> </Files> </GroupItem> @@ -629,7 +573,7 @@ <Author>Mat, MP team, Sergey Filippov</Author> <HomePage /> <ForumPage /> - <UpdateUrl>https://mp-plugins.svn.sourceforge.net/svnroot/mp-plugins/trunk/plugins/Burner/MpeRelease/update.xml</UpdateUrl> + <UpdateUrl>https://mp-plugins.svn.sourceforge.com/svnroot/mp-plugins/trunk/plugins/Burner/MpeRelease/update.xml</UpdateUrl> <Version> <Major>1</Major> <Minor>0</Minor> @@ -638,7 +582,7 @@ </Version> <ExtensionDescription>Burner will allow you to burn audio, video and data CDs and DVDs</ExtensionDescription> <VersionDescription /> - <DevelopmentStatus>Beta</DevelopmentStatus> + <DevelopmentStatus>Stable</DevelopmentStatus> <OnlineLocation>https://mp-plugins.svn.sourceforge.net/svnroot/mp-plugins/trunk/plugins/Burner/MpeRelease/Burner_1.0.0.4223.mpe1</OnlineLocation> <ReleaseDate>2011-05-26T19:33:19.421875+04:00</ReleaseDate> <Tags>burn dvd cd</Tags> @@ -733,413 +677,346 @@ <ZipFileName>Installer{CopyFile}\{125af905-c6e4-4f74-a5e2-87297c53a547}-hover_my burner.png</ZipFileName> <DestinationFilename>%Skin%\DefaultWide\Media\hover_my burner.png</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\burn.bat</LocalFileName> - <ZipFileName>Installer{CopyFile}\{d563c994-6082-46f9-9a95-a9159a76fe67}-burn.bat</ZipFileName> + <ZipFileName>Installer{CopyFile}\{a97fa310-4391-4a1a-92a5-f818e68f300e}-burn.bat</ZipFileName> <DestinationFilename>%Base%\Burner\burn.bat</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\colors.mgk</LocalFileName> - <ZipFileName>Installer{CopyFile}\{c16d3221-a73d-4247-a91a-79637975523d}-colors.mgk</ZipFileName> + <ZipFileName>Installer{CopyFile}\{00a57a68-2841-407a-82f3-af3861bf3a51}-colors.mgk</ZipFileName> <DestinationFilename>%Base%\Burner\colors.mgk</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygfreetype-6.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{728eedcc-3483-4177-9a48-2e91b433c068}-cygfreetype-6.dll</ZipFileName> + <ZipFileName>Installer{CopyFile}\{63aac570-b5f3-4e72-926f-51bfdc243a16}-cygfreetype-6.dll</ZipFileName> <DestinationFilename>%Base%\Burner\cygfreetype-6.dll</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygiconv-2.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{00856f60-c53d-44c6-b19e-67b0c194e4cd}-cygiconv-2.dll</ZipFileName> + <ZipFileName>Installer{CopyFile}\{80b8ed33-e3db-4a9f-953b-6fbb11d87f53}-cygiconv-2.dll</ZipFileName> <DestinationFilename>%Base%\Burner\cygiconv-2.dll</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygintl-1.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{0f01fbed-4d7e-4f8d-a080-be3e7fcd614c}-cygintl-1.dll</ZipFileName> + <ZipFileName>Installer{CopyFile}\{c8141136-d7e6-48a1-a49c-8abfaa696078}-cygintl-1.dll</ZipFileName> <DestinationFilename>%Base%\Burner\cygintl-1.dll</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygjasper-1-701-1.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{aeb6b20a-e5bd-4ff6-9c26-ab7277ba8424}-cygjasper-1-701-1.dll</ZipFileName> + <ZipFileName>Installer{CopyFile}\{a3a46c45-a99e-4010-b733-7c1dfd741774}-cygjasper-1-701-1.dll</ZipFileName> <DestinationFilename>%Base%\Burner\cygjasper-1-701-1.dll</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygjpeg-62.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{805e0b05-e2a0-4081-9551-52cdddd76edd}-cygjpeg-62.dll</ZipFileName> - <DestinationFilename>%Base%\Burner\cygjpeg-62.dll</DestinationFilename> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygjpeg6b.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{d533b2ba-c101-4671-8bbf-66a0f3362d79}-cygjpeg6b.dll</ZipFileName> + <DestinationFilename>%Base%\Burner\cygjpeg6b.dll</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygjpeg6b.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{32870af9-d923-4d7a-8280-a29c0f3d0f7b}-cygjpeg6b.dll</ZipFileName> - <DestinationFilename>%Base%\Burner\cygjpeg6b.dll</DestinationFilename> + <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygjpeg-62.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{cc600eb2-fbb6-47d5-a9ea-0c31c986fe1d}-cygjpeg-62.dll</ZipFileName> + <DestinationFilename>%Base%\Burner\cygjpeg-62.dll</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygpng12.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{4af817fc-3fa2-4d06-8edf-b64f6a28de48}-cygpng12.dll</ZipFileName> + <ZipFileName>Installer{CopyFile}\{184788b9-08f1-4a85-bdd6-bcafdcd69191}-cygpng12.dll</ZipFileName> <DestinationFilename>%Base%\Burner\cygpng12.dll</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygwin1.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{2fe7b565-5650-43e6-844c-73d93f8c01f3}-cygwin1.dll</ZipFileName> + <ZipFileName>Installer{CopyFile}\{20d890ae-107c-4655-9851-7a3b06bd55de}-cygwin1.dll</ZipFileName> <DestinationFilename>%Base%\Burner\cygwin1.dll</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygwmflite-0-2-7.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{55bd37e1-8ea3-4c93-8b1d-f4128d45a4e6}-cygwmflite-0-2-7.dll</ZipFileName> + <ZipFileName>Installer{CopyFile}\{39626cfd-9086-49fe-a871-91c41eb027a5}-cygwmflite-0-2-7.dll</ZipFileName> <DestinationFilename>%Base%\Burner\cygwmflite-0-2-7.dll</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygxml2-2.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{a5f4dd12-767a-418c-b7e4-06d3557c6817}-cygxml2-2.dll</ZipFileName> + <ZipFileName>Installer{CopyFile}\{749bb2dc-7047-46d1-9cde-629b70cfe542}-cygxml2-2.dll</ZipFileName> <DestinationFilename>%Base%\Burner\cygxml2-2.dll</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygz.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{7e1863cf-12cc-48ad-bcd1-455783296c7a}-cygz.dll</ZipFileName> + <ZipFileName>Installer{CopyFile}\{00f68d4f-cc18-42ea-812a-004a84e0025f}-cygz.dll</ZipFileName> <DestinationFilename>%Base%\Burner\cygz.dll</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\dvd.bat</LocalFileName> - <ZipFileName>Installer{CopyFile}\{011c4951-6c01-4502-9060-d1c4e2640e6a}-dvd.bat</ZipFileName> + <ZipFileName>Installer{CopyFile}\{af682c06-8fcf-48d2-8f93-1d21d5acfd53}-dvd.bat</ZipFileName> <DestinationFilename>%Base%\Burner\dvd.bat</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\dvdauthor.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{5098d331-8796-49fc-b2c1-2b3e42dc1adc}-dvdauthor.exe</ZipFileName> + <ZipFileName>Installer{CopyFile}\{8fe90035-e2d8-4f2c-b8a9-c6d34d28220d}-dvdauthor.exe</ZipFileName> <DestinationFilename>%Base%\Burner\dvdauthor.exe</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\gm.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{8f97e517-cb68-49ad-95da-1bd8b1609cd6}-gm.exe</ZipFileName> + <ZipFileName>Installer{CopyFile}\{f7b8f022-56c9-4889-977b-de39b66bcd40}-gm.exe</ZipFileName> <DestinationFilename>%Base%\Burner\gm.exe</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\iso.bat</LocalFileName> - <ZipFileName>Installer{CopyFile}\{1b454dfb-e5cf-4437-a0ee-91e08b2e921a}-iso.bat</ZipFileName> + <ZipFileName>Installer{CopyFile}\{7437a816-608a-490c-ab25-4fb85c2fb44a}-iso.bat</ZipFileName> <DestinationFilename>%Base%\Burner\iso.bat</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\jpeg2yuv.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{3f6dc314-beba-4f48-aaaf-a07179c13a70}-jpeg2yuv.exe</ZipFileName> + <ZipFileName>Installer{CopyFile}\{1cc6e5df-d801-4fa2-8bf2-d0cb13f64779}-jpeg2yuv.exe</ZipFileName> <DestinationFilename>%Base%\Burner\jpeg2yuv.exe</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\libpng12.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{cd669e72-54ff-431f-9dce-e93ab9a454fb}-libpng12.dll</ZipFileName> + <ZipFileName>Installer{CopyFile}\{8750c4b9-7d12-4fc2-b07f-8b3db21fbaf7}-libpng12.dll</ZipFileName> <DestinationFilename>%Base%\Burner\libpng12.dll</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\libz.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{5e3e9e0d-5906-4767-8c89-b90388c34eb3}-libz.dll</ZipFileName> + <ZipFileName>Installer{CopyFile}\{aecf2909-d815-4897-b9a1-a79a2a109b62}-libz.dll</ZipFileName> <DestinationFilename>%Base%\Burner\libz.dll</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\magic.mgk</LocalFileName> - <ZipFileName>Installer{CopyFile}\{72efaeb6-f061-4705-8143-fe5ac9368ce3}-magic.mgk</ZipFileName> + <ZipFileName>Installer{CopyFile}\{da7b297a-769d-4b9e-965e-b7d3dcc74d3a}-magic.mgk</ZipFileName> <DestinationFilename>%Base%\Burner\magic.mgk</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\mat.bat</LocalFileName> - <ZipFileName>Installer{CopyFile}\{066432f9-6bd5-426d-af84-e7c73e41e56a}-mat.bat</ZipFileName> + <ZipFileName>Installer{CopyFile}\{7914d306-881d-447b-b8a3-8577e8b332ea}-mat.bat</ZipFileName> <DestinationFilename>%Base%\Burner\mat.bat</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\mencoder.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{fc40160c-08dc-4407-864f-9191ef09d4b2}-mencoder.exe</ZipFileName> + <ZipFileName>Installer{CopyFile}\{1b852037-c008-4051-932d-6a31d1733dc1}-mencoder.exe</ZipFileName> <DestinationFilename>%Base%\Burner\mencoder.exe</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\mencoder_copy.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{ff2c241b-c503-4fd8-81d0-c05704a1346c}-mencoder_copy.exe</ZipFileName> + <ZipFileName>Installer{CopyFile}\{051a0375-631a-49ee-baa8-91f91a48a6a0}-mencoder_copy.exe</ZipFileName> <DestinationFilename>%Base%\Burner\mencoder_copy.exe</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\menuGen.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{a3343c1d-b657-4637-b904-9cee4d55972d}-menuGen.exe</ZipFileName> + <ZipFileName>Installer{CopyFile}\{e5907668-6c35-4745-a079-886e24490e68}-menuGen.exe</ZipFileName> <DestinationFilename>%Base%\Burner\menuGen.exe</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\mkisofs.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{d1e7aaf1-4c66-46b4-bf2f-2a999eb4fed2}-mkisofs.exe</ZipFileName> + <ZipFileName>Installer{CopyFile}\{a7c0ea63-4fd2-43fb-91e0-d86862a0e996}-mkisofs.exe</ZipFileName> <DestinationFilename>%Base%\Burner\mkisofs.exe</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\modules.mgk</LocalFileName> - <ZipFileName>Installer{CopyFile}\{11125907-ac0e-43f8-afff-bf3f5dd52f40}-modules.mgk</ZipFileName> + <ZipFileName>Installer{CopyFile}\{7b0b4eda-33b0-42fe-90a5-a0d27942ff2d}-modules.mgk</ZipFileName> <DestinationFilename>%Base%\Burner\modules.mgk</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder<... [truncated message content] |
From: <ro...@us...> - 2011-05-28 19:58:36
|
Revision: 4233 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=4233&view=rev Author: rolenof Date: 2011-05-28 19:58:30 +0000 (Sat, 28 May 2011) Log Message: ----------- Modified Paths: -------------- trunk/plugins/Burner/MpeRelease/update.xml trunk/plugins/Burner/burner.xmp2 Added Paths: ----------- trunk/plugins/Burner/MpeRelease/Burner_1.0.1.4232.mpe1 Added: trunk/plugins/Burner/MpeRelease/Burner_1.0.1.4232.mpe1 =================================================================== (Binary files differ) Property changes on: trunk/plugins/Burner/MpeRelease/Burner_1.0.1.4232.mpe1 ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Modified: trunk/plugins/Burner/MpeRelease/update.xml =================================================================== --- trunk/plugins/Burner/MpeRelease/update.xml 2011-05-28 19:48:51 UTC (rev 4232) +++ trunk/plugins/Burner/MpeRelease/update.xml 2011-05-28 19:58:30 UTC (rev 4233) @@ -116,5 +116,120 @@ <FolderGroups /> </ProjectSettings> </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="Skin"> + <DisplayName>Skin</DisplayName> + <DefaulChecked>true</DefaulChecked> + <Description>Skin</Description> + <Files> + <Items /> + </Files> + </GroupItem> + <GroupItem Name="support"> + <DisplayName>support</DisplayName> + <DefaulChecked>true</DefaulChecked> + <Description>support</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>0</Build> + <Revision>6</Revision> + </MinVersion> + <MaxVersion> + <Major>1</Major> + <Minor>1</Minor> + <Build>0</Build> + <Revision>6</Revision> + </MaxVersion> + <WarnOnly>true</WarnOnly> + <Message>Need version of MediaPortal with version 1.1.0.6</Message> + <Name>MediaPortal</Name> + </DependencyItem> + </Items> + </Dependencies> + <GeneralInfo> + <Name>Burner</Name> + <Id>df4d06b5-b67b-413a-86de-3d161b2ae3d6</Id> + <Author>Mat, MP team, Sergey Filippov</Author> + <HomePage /> + <ForumPage /> + <UpdateUrl>https://mp-plugins.svn.sourceforge.com/svnroot/mp-plugins/trunk/plugins/Burner/MpeRelease/update.xml</UpdateUrl> + <Version> + <Major>1</Major> + <Minor>0</Minor> + <Build>1</Build> + <Revision>4232</Revision> + </Version> + <ExtensionDescription>Burner will allow you to burn audio, video and data CDs and DVDs</ExtensionDescription> + <VersionDescription /> + <DevelopmentStatus>Stable</DevelopmentStatus> + <OnlineLocation>https://mp-plugins.svn.sourceforge.net/svnroot/mp-plugins/trunk/plugins/Burner/MpeRelease/Burner_1.0.0.4223.mpe1</OnlineLocation> + <ReleaseDate>2011-05-26T19:33:19.421875+04:00</ReleaseDate> + <Tags>burn dvd cd</Tags> + <Location>I:\MP-Burner\MpeRelease\Burner_1.0.1.4232.mpe1</Location> + <Params> + <Items> + <SectionParam Name="Icon"> + <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 have .exe extension the will be executed + If have .dll extension used like MP plugin configuration</Description> + </SectionParam> + <SectionParam Name="Online Screenshots"> + <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> + </PackageClass> </Items> </ExtensionCollection> \ No newline at end of file Modified: trunk/plugins/Burner/burner.xmp2 =================================================================== --- trunk/plugins/Burner/burner.xmp2 2011-05-28 19:48:51 UTC (rev 4232) +++ trunk/plugins/Burner/burner.xmp2 2011-05-28 19:58:30 UTC (rev 4233) @@ -24,6 +24,13 @@ <ZipFileName>Installer{CopyFile}\{235a2607-49ec-4fde-a2a4-1c002606ee3c}-XPBurnComponent.dll</ZipFileName> <DestinationFilename>%Plugins%\Windows\XPBurnComponent.dll</DestinationFilename> </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>trunk\MediaInfo.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{97205b23-774c-4606-99a6-3b8b6d9ec9fe}-MediaInfo.dll</ZipFileName> + <DestinationFilename>%Plugins%\Windows\MediaInfo.dll</DestinationFilename> + </FileItem> </Items> </Files> </GroupItem> @@ -453,7 +460,11 @@ <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> +Click Next to continue or Cancel to exit Setup. + +Changelog: +Improved methods to get duration of file with mediainfo lib +Some minor changes</Value> <ValueType>String</ValueType> <Description /> </SectionParam> @@ -577,8 +588,8 @@ <Version> <Major>1</Major> <Minor>0</Minor> - <Build>0</Build> - <Revision>4223</Revision> + <Build>1</Build> + <Revision>4232</Revision> </Version> <ExtensionDescription>Burner will allow you to burn audio, video and data CDs and DVDs</ExtensionDescription> <VersionDescription /> @@ -586,7 +597,7 @@ <OnlineLocation>https://mp-plugins.svn.sourceforge.net/svnroot/mp-plugins/trunk/plugins/Burner/MpeRelease/Burner_1.0.0.4223.mpe1</OnlineLocation> <ReleaseDate>2011-05-26T19:33:19.421875+04:00</ReleaseDate> <Tags>burn dvd cd</Tags> - <Location>I:\MP-Burner\MpeRelease\Burner_1.0.0.4223.mpe1</Location> + <Location>I:\MP-Burner\MpeRelease\Burner_1.0.1.4232.mpe1</Location> <Params> <Items> <SectionParam Name="Icon"> @@ -638,6 +649,13 @@ <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>trunk\MediaInfo.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{97205b23-774c-4606-99a6-3b8b6d9ec9fe}-MediaInfo.dll</ZipFileName> + <DestinationFilename>%Plugins%\Windows\MediaInfo.dll</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>trunk\Skin\Blue3\myburner.xml</LocalFileName> <ZipFileName>Installer{CopyFile}\{a402e729-251c-4784-ac30-0ee473c5bf09}-myburner.xml</ZipFileName> <DestinationFilename>%Skin%\default\myburner.xml</DestinationFilename> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ro...@us...> - 2011-05-29 11:20:24
|
Revision: 4235 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=4235&view=rev Author: rolenof Date: 2011-05-29 11:20:18 +0000 (Sun, 29 May 2011) Log Message: ----------- Modified Paths: -------------- trunk/plugins/Burner/MpeRelease/Burner_1.0.1.4232.mpe1 trunk/plugins/Burner/MpeRelease/update.xml trunk/plugins/Burner/burner.xmp2 Modified: trunk/plugins/Burner/MpeRelease/Burner_1.0.1.4232.mpe1 =================================================================== (Binary files differ) Modified: trunk/plugins/Burner/MpeRelease/update.xml =================================================================== --- trunk/plugins/Burner/MpeRelease/update.xml 2011-05-29 09:43:03 UTC (rev 4234) +++ trunk/plugins/Burner/MpeRelease/update.xml 2011-05-29 11:20:18 UTC (rev 4235) @@ -177,8 +177,8 @@ <Id>df4d06b5-b67b-413a-86de-3d161b2ae3d6</Id> <Author>Mat, MP team, Sergey Filippov</Author> <HomePage /> - <ForumPage /> - <UpdateUrl>https://mp-plugins.svn.sourceforge.com/svnroot/mp-plugins/trunk/plugins/Burner/MpeRelease/update.xml</UpdateUrl> + <ForumPage>http://forum.team-mediaportal.com/mediaportal-plugins-47/plugin-burner-97106/</ForumPage> + <UpdateUrl>https://mp-plugins.svn.sourceforge.net/svnroot/mp-plugins/trunk/plugins/Burner/MpeRelease/update.xml</UpdateUrl> <Version> <Major>1</Major> <Minor>0</Minor> Modified: trunk/plugins/Burner/burner.xmp2 =================================================================== --- trunk/plugins/Burner/burner.xmp2 2011-05-29 09:43:03 UTC (rev 4234) +++ trunk/plugins/Burner/burner.xmp2 2011-05-29 11:20:18 UTC (rev 4235) @@ -460,10 +460,10 @@ <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. - -Changelog: -Improved methods to get duration of file with mediainfo lib +Click Next to continue or Cancel to exit Setup. + +Changelog: +Improved methods to get duration of file with mediainfo lib Some minor changes</Value> <ValueType>String</ValueType> <Description /> @@ -583,8 +583,8 @@ <Id>df4d06b5-b67b-413a-86de-3d161b2ae3d6</Id> <Author>Mat, MP team, Sergey Filippov</Author> <HomePage /> - <ForumPage /> - <UpdateUrl>https://mp-plugins.svn.sourceforge.com/svnroot/mp-plugins/trunk/plugins/Burner/MpeRelease/update.xml</UpdateUrl> + <ForumPage>http://forum.team-mediaportal.com/mediaportal-plugins-47/plugin-burner-97106/</ForumPage> + <UpdateUrl>https://mp-plugins.svn.sourceforge.net/svnroot/mp-plugins/trunk/plugins/Burner/MpeRelease/update.xml</UpdateUrl> <Version> <Major>1</Major> <Minor>0</Minor> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ro...@us...> - 2011-06-12 16:44:42
|
Revision: 4246 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=4246&view=rev Author: rolenof Date: 2011-06-12 16:44:33 +0000 (Sun, 12 Jun 2011) Log Message: ----------- Added Paths: ----------- trunk/plugins/Burner/dep/Burner/ trunk/plugins/Burner/dep/Burner/Silence.ac3 trunk/plugins/Burner/dep/Burner/burn.bat trunk/plugins/Burner/dep/Burner/colors.mgk trunk/plugins/Burner/dep/Burner/cygfreetype-6.dll trunk/plugins/Burner/dep/Burner/cygiconv-2.dll trunk/plugins/Burner/dep/Burner/cygintl-1.dll trunk/plugins/Burner/dep/Burner/cygjasper-1-701-1.dll trunk/plugins/Burner/dep/Burner/cygjpeg-62.dll trunk/plugins/Burner/dep/Burner/cygjpeg6b.dll trunk/plugins/Burner/dep/Burner/cygpng12.dll trunk/plugins/Burner/dep/Burner/cygwin1.dll trunk/plugins/Burner/dep/Burner/cygwmflite-0-2-7.dll trunk/plugins/Burner/dep/Burner/cygxml2-2.dll trunk/plugins/Burner/dep/Burner/cygz.dll trunk/plugins/Burner/dep/Burner/dvd.bat trunk/plugins/Burner/dep/Burner/dvdauthor.exe trunk/plugins/Burner/dep/Burner/gm.exe trunk/plugins/Burner/dep/Burner/iso.bat trunk/plugins/Burner/dep/Burner/jpeg2yuv.exe trunk/plugins/Burner/dep/Burner/libpng12.dll trunk/plugins/Burner/dep/Burner/libz.dll trunk/plugins/Burner/dep/Burner/magic.mgk trunk/plugins/Burner/dep/Burner/mat.bat trunk/plugins/Burner/dep/Burner/mencoder.exe trunk/plugins/Burner/dep/Burner/mencoder_copy.exe trunk/plugins/Burner/dep/Burner/menuGen.exe trunk/plugins/Burner/dep/Burner/mkisofs.exe trunk/plugins/Burner/dep/Burner/modules.mgk trunk/plugins/Burner/dep/Burner/mpeg2desc.exe trunk/plugins/Burner/dep/Burner/mpeg2enc.exe trunk/plugins/Burner/dep/Burner/mpgtx.exe trunk/plugins/Burner/dep/Burner/mplex.exe trunk/plugins/Burner/dep/Burner/msvcp60.dll trunk/plugins/Burner/dep/Burner/msvcrt.dll trunk/plugins/Burner/dep/Burner/navButton.png trunk/plugins/Burner/dep/Burner/png2yuv.exe trunk/plugins/Burner/dep/Burner/pthreadGC2.dll trunk/plugins/Burner/dep/Burner/pxsup2dast.exe trunk/plugins/Burner/dep/Burner/scanbus.bat trunk/plugins/Burner/dep/Burner/spumux.exe trunk/plugins/Burner/dep/Burner/spuunmux.exe trunk/plugins/Burner/dep/Burner/submux.exe trunk/plugins/Burner/dep/Burner/tcmplex.exe trunk/plugins/Burner/dep/Burner/type-ghostscript.mgk trunk/plugins/Burner/dep/Burner/type-solaris.mgk trunk/plugins/Burner/dep/Burner/type-windows.mgk trunk/plugins/Burner/dep/Burner/type.mgk trunk/plugins/Burner/dep/Burner/zlib.dll trunk/plugins/Burner/tags/1.1.3fix/Burner/obj/ trunk/plugins/Burner/tags/1.1.3fix/Burner/obj/Debug/ trunk/plugins/Burner/tags/1.1.3fix/XPImapiBurner/bin/ trunk/plugins/Burner/tags/1.1.3fix/XPImapiBurner/bin/Debug/ trunk/plugins/Burner/tags/1.1.3fix/XPImapiBurner/obj/ trunk/plugins/Burner/tags/1.1.3fix/XPImapiBurner/obj/Debug/ Added: trunk/plugins/Burner/dep/Burner/Silence.ac3 =================================================================== (Binary files differ) Property changes on: trunk/plugins/Burner/dep/Burner/Silence.ac3 ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: trunk/plugins/Burner/dep/Burner/burn.bat =================================================================== --- trunk/plugins/Burner/dep/Burner/burn.bat (rev 0) +++ trunk/plugins/Burner/dep/Burner/burn.bat 2011-06-12 16:44:33 UTC (rev 4246) @@ -0,0 +1 @@ +mencoder_bob.exe "-oac lavc -ovc lavc -of mpeg -mpegopts format=dvd:tsaf -vf scale=720:576,harddup -srate 48000 -af lavcresample=48000 -lavcopts vcodec=mpeg2video:vrc_buf_size=1835:vrc_maxrate=9800:vbitrate=5000:keyint=15:acodec=ac3:abitrate=192:aspect=4/3 -ofps 25 -o I:\WINDOWS\TEMP\DVD\F1.mpg I:\temp\T\xA8\xF0\xF3\xF8 - \xA6\xBA\x{3E6AEA8}\xF0 - 2011-03-14.ts\T\xA8\xF0\xF3\xF8 - \xA6\xBA\x{3E6AEA8}\xF0 - 2011-03-14.ts" \ No newline at end of file Added: trunk/plugins/Burner/dep/Burner/colors.mgk =================================================================== --- trunk/plugins/Burner/dep/Burner/colors.mgk (rev 0) +++ trunk/plugins/Burner/dep/Burner/colors.mgk 2011-06-12 16:44:33 UTC (rev 4246) @@ -0,0 +1,682 @@ +<?xml version="1.0"?> +<colormap> + <color name="AliceBlue" red="240" green="248" blue="255" compliance="SVG, X11, XPM" /> + <color name="AntiqueWhite" red="250" green="235" blue="215" compliance="SVG, X11, XPM" /> + <color name="AntiqueWhite1" red="255" green="239" blue="219" compliance="X11" /> + <color name="AntiqueWhite2" red="238" green="223" blue="204" compliance="X11" /> + <color name="AntiqueWhite3" red="205" green="192" blue="176" compliance="X11" /> + <color name="AntiqueWhite4" red="139" green="131" blue="120" compliance="X11" /> + <color name="aqua" red="0" green="255" blue="255" compliance="SVG" /> + <color name="aquamarine" red="127" green="255" blue="212" compliance="SVG, X11, XPM" /> + <color name="aquamarine1" red="127" green="255" blue="212" compliance="X11" /> + <color name="aquamarine2" red="118" green="238" blue="198" compliance="X11" /> + <color name="aquamarine3" red="102" green="205" blue="170" compliance="X11" /> + <color name="aquamarine4" red="69" green="139" blue="116" compliance="X11" /> + <color name="azure" red="240" green="255" blue="255" compliance="SVG, X11, XPM" /> + <color name="azure1" red="240" green="255" blue="255" compliance="X11" /> + <color name="azure2" red="224" green="238" blue="238" compliance="X11" /> + <color name="azure3" red="193" green="205" blue="205" compliance="X11" /> + <color name="azure4" red="131" green="139" blue="139" compliance="X11" /> + <color name="beige" red="245" green="245" blue="220" compliance="SVG, X11, XPM" /> + <color name="bisque" red="255" green="228" blue="196" compliance="SVG, X11, XPM" /> + <color name="bisque1" red="255" green="228" blue="196" compliance="X11" /> + <color name="bisque2" red="238" green="213" blue="183" compliance="X11" /> + <color name="bisque3" red="205" green="183" blue="158" compliance="X11" /> + <color name="bisque4" red="139" green="125" blue="107" compliance="X11" /> + <color name="black" red="0" green="0" blue="0" compliance="SVG, X11, XPM" /> + <color name="BlanchedAlmond" red="255" green="235" blue="205" compliance="SVG, X11, XPM" /> + <color name="blue" red="0" green="0" blue="255" compliance="SVG, X11, XPM" /> + <color name="blue1" red="0" green="0" blue="255" compliance="X11" /> + <color name="blue2" red="0" green="0" blue="238" compliance="X11" /> + <color name="blue3" red="0" green="0" blue="205" compliance="X11" /> + <color name="blue4" red="0" green="0" blue="139" compliance="X11" /> + <color name="BlueViolet" red="138" green="43" blue="226" compliance="SVG, X11, XPM" /> + <color name="brown" red="165" green="42" blue="42" compliance="SVG, X11, XPM" /> + <color name="brown1" red="255" green="64" blue="64" compliance="X11" /> + <color name="brown2" red="238" green="59" blue="59" compliance="X11" /> + <color name="brown3" red="205" green="51" blue="51" compliance="X11" /> + <color name="brown4" red="139" green="35" blue="35" compliance="X11" /> + <color name="burlywood" red="222" green="184" blue="135" compliance="SVG, X11, XPM" /> + <color name="burlywood1" red="255" green="211" blue="155" compliance="X11" /> + <color name="burlywood2" red="238" green="197" blue="145" compliance="X11" /> + <color name="burlywood3" red="205" green="170" blue="125" compliance="X11" /> + <color name="burlywood4" red="139" green="115" blue="85" compliance="X11" /> + <color name="cadet blue" red="95" green="158" blue="160" compliance="X11" /> + <color name="CadetBlue" red="95" green="158" blue="160" compliance="SVG, X11, XPM" /> + <color name="CadetBlue1" red="152" green="245" blue="255" compliance="X11" /> + <color name="CadetBlue2" red="142" green="229" blue="238" compliance="X11" /> + <color name="CadetBlue3" red="122" green="197" blue="205" compliance="X11" /> + <color name="CadetBlue4" red="83" green="134" blue="139" compliance="X11" /> + <color name="chartreuse" red="127" green="255" blue="0" compliance="SVG, X11, XPM" /> + <color name="chartreuse1" red="127" green="255" blue="0" compliance="X11" /> + <color name="chartreuse2" red="118" green="238" blue="0" compliance="X11" /> + <color name="chartreuse3" red="102" green="205" blue="0" compliance="X11" /> + <color name="chartreuse4" red="69" green="139" blue="0" compliance="X11" /> + <color name="chocolate" red="210" green="105" blue="30" compliance="SVG, X11, XPM" /> + <color name="chocolate1" red="255" green="127" blue="36" compliance="X11" /> + <color name="chocolate2" red="238" green="118" blue="33" compliance="X11" /> + <color name="chocolate3" red="205" green="102" blue="29" compliance="X11" /> + <color name="chocolate4" red="139" green="69" blue="19" compliance="X11" /> + <color name="coral" red="255" green="127" blue="80" compliance="SVG, X11, XPM" /> + <color name="coral1" red="255" green="114" blue="86" compliance="X11" /> + <color name="coral2" red="238" green="106" blue="80" compliance="X11" /> + <color name="coral3" red="205" green="91" blue="69" compliance="X11" /> + <color name="coral4" red="139" green="62" blue="47" compliance="X11" /> + <color name="CornflowerBlue" red="100" green="149" blue="237" compliance="SVG, X11, XPM" /> + <color name="cornsilk" red="255" green="248" blue="220" compliance="SVG, X11, XPM" /> + <color name="cornsilk1" red="255" green="248" blue="220" compliance="X11" /> + <color name="cornsilk2" red="238" green="232" blue="205" compliance="X11" /> + <color name="cornsilk3" red="205" green="200" blue="177" compliance="X11" /> + <color name="cornsilk4" red="139" green="136" blue="120" compliance="X11" /> + <color name="crimson" red="220" green="20" blue="60" compliance="SVG" /> + <color name="cyan" red="0" green="255" blue="255" compliance="SVG, X11, XPM" /> + <color name="cyan1" red="0" green="255" blue="255" compliance="X11" /> + <color name="cyan2" red="0" green="238" blue="238" compliance="X11" /> + <color name="cyan3" red="0" green="205" blue="205" compliance="X11" /> + <color name="cyan4" red="0" green="139" blue="139" compliance="X11" /> + <color name="dark violet" red="148" green="0" blue="211" compliance="X11" /> + <color name="DarkBlue" red="0" green="0" blue="139" compliance="SVG, X11" /> + <color name="DarkCyan" red="0" green="139" blue="139" compliance="SVG, X11" /> + <color name="DarkGoldenrod" red="184" green="134" blue="11" compliance="SVG, X11, XPM" /> + <color name="DarkGoldenrod1" red="255" green="185" blue="15" compliance="X11" /> + <color name="DarkGoldenrod2" red="238" green="173" blue="14" compliance="X11" /> + <color name="DarkGoldenrod3" red="205" green="149" blue="12" compliance="X11" /> + <color name="DarkGoldenrod4" red="139" green="101" blue="8" compliance="X11" /> + <color name="DarkGray" red="169" green="169" blue="169" compliance="SVG, X11" /> + <color name="DarkGreen" red="0" green="100" blue="0" compliance="SVG, X11, XPM" /> + <color name="DarkGrey" red="169" green="169" blue="169" compliance="SVG, X11" /> + <color name="DarkKhaki" red="189" green="183" blue="107" compliance="SVG, X11, XPM" /> + <color name="DarkMagenta" red="139" green="0" blue="139" compliance="SVG, X11" /> + <color name="DarkOliveGreen" red="85" green="107" blue="47" compliance="SVG, X11, XPM" /> + <color name="DarkOliveGreen1" red="202" green="255" blue="112" compliance="X11" /> + <color name="DarkOliveGreen2" red="188" green="238" blue="104" compliance="X11" /> + <color name="DarkOliveGreen3" red="162" green="205" blue="90" compliance="X11" /> + <color name="DarkOliveGreen4" red="110" green="139" blue="61" compliance="X11" /> + <color name="DarkOrange" red="255" green="140" blue="0" compliance="SVG, X11, XPM" /> + <color name="DarkOrange1" red="255" green="127" blue="0" compliance="X11" /> + <color name="DarkOrange2" red="238" green="118" blue="0" compliance="X11" /> + <color name="DarkOrange3" red="205" green="102" blue="0" compliance="X11" /> + <color name="DarkOrange4" red="139" green="69" blue="0" compliance="X11" /> + <color name="DarkOrchid" red="153" green="50" blue="204" compliance="SVG, X11, XPM" /> + <color name="DarkOrchid1" red="191" green="62" blue="255" compliance="X11" /> + <color name="DarkOrchid2" red="178" green="58" blue="238" compliance="X11" /> + <color name="DarkOrchid3" red="154" green="50" blue="205" compliance="X11" /> + <color name="DarkOrchid4" red="104" green="34" blue="139" compliance="X11" /> + <color name="DarkRed" red="139" green="0" blue="0" compliance="SVG, X11" /> + <color name="DarkSalmon" red="233" green="150" blue="122" compliance="SVG, X11, XPM" /> + <color name="DarkSeaGreen" red="143" green="188" blue="143" compliance="SVG, X11, XPM" /> + <color name="DarkSeaGreen1" red="193" green="255" blue="193" compliance="X11" /> + <color name="DarkSeaGreen2" red="180" green="238" blue="180" compliance="X11" /> + <color name="DarkSeaGreen3" red="155" green="205" blue="155" compliance="X11" /> + <color name="DarkSeaGreen4" red="105" green="139" blue="105" compliance="X11" /> + <color name="DarkSlateBlue" red="72" green="61" blue="139" compliance="SVG, X11, XPM" /> + <color name="DarkSlateGray" red="47" green="79" blue="79" compliance="SVG, X11, XPM" /> + <color name="DarkSlateGray1" red="151" green="255" blue="255" compliance="X11" /> + <color name="DarkSlateGray2" red="141" green="238" blue="238" compliance="X11" /> + <color name="DarkSlateGray3" red="121" green="205" blue="205" compliance="X11" /> + <color name="DarkSlateGray4" red="82" green="139" blue="139" compliance="X11" /> + <color name="DarkSlateGrey" red="47" green="79" blue="79" compliance="SVG, X11" /> + <color name="DarkTurquoise" red="0" green="206" blue="209" compliance="SVG, X11, XPM" /> + <color name="DarkViolet" red="148" green="0" blue="211" compliance="SVG, X11, XPM" /> + <color name="DeepPink" red="255" green="20" blue="147" compliance="SVG, X11, XPM" /> + <color name="DeepPink1" red="255" green="20" blue="147" compliance="X11" /> + <color name="DeepPink2" red="238" green="18" blue="137" compliance="X11" /> + <color name="DeepPink3" red="205" green="16" blue="118" compliance="X11" /> + <color name="DeepPink4" red="139" green="10" blue="80" compliance="X11" /> + <color name="DeepSkyBlue" red="0" green="191" blue="255" compliance="SVG, X11, XPM" /> + <color name="DeepSkyBlue1" red="0" green="191" blue="255" compliance="X11" /> + <color name="DeepSkyBlue2" red="0" green="178" blue="238" compliance="X11" /> + <color name="DeepSkyBlue3" red="0" green="154" blue="205" compliance="X11" /> + <color name="DeepSkyBlue4" red="0" green="104" blue="139" compliance="X11" /> + <color name="DimGray" red="105" green="105" blue="105" compliance="SVG, X11, XPM" /> + <color name="DimGrey" red="105" green="105" blue="105" compliance="SVG, X11" /> + <color name="DodgerBlue" red="30" green="144" blue="255" compliance="SVG, X11, XPM" /> + <color name="DodgerBlue1" red="30" green="144" blue="255" compliance="X11" /> + <color name="DodgerBlue2" red="28" green="134" blue="238" compliance="X11" /> + <color name="DodgerBlue3" red="24" green="116" blue="205" compliance="X11" /> + <color name="DodgerBlue4" red="16" green="78" blue="139" compliance="X11" /> + <color name="firebrick" red="178" green="34" blue="34" compliance="SVG, X11, XPM" /> + <color name="firebrick1" red="255" green="48" blue="48" compliance="X11" /> + <color name="firebrick2" red="238" green="44" blue="44" compliance="X11" /> + <color name="firebrick3" red="205" green="38" blue="38" compliance="X11" /> + <color name="firebrick4" red="139" green="26" blue="26" compliance="X11" /> + <color name="FloralWhite" red="255" green="250" blue="240" compliance="SVG, X11, XPM" /> + <color name="ForestGreen" red="34" green="139" blue="34" compliance="SVG, X11, XPM" /> + <color name="fractal" red="128" green="128" blue="128" compliance="SVG" /> + <color name="fuchsia" red="255" green="0" blue="255" compliance="SVG" /> + <color name="gainsboro" red="220" green="220" blue="220" compliance="SVG, X11, XPM" /> + <color name="GhostWhite" red="248" green="248" blue="255" compliance="SVG, X11, XPM" /> + <color name="gold" red="255" green="215" blue="0 " compliance="X11, XPM" /> + <color name="gold1" red="255" green="215" blue="0" compliance="SVG, X11" /> + <color name="gold2" red="238" green="201" blue="0" compliance="X11" /> + <color name="gold3" red="205" green="173" blue="0" compliance="X11" /> + <color name="gold4" red="139" green="117" blue="0" compliance="X11" /> + <color name="goldenrod" red="218" green="165" blue="32" compliance="SVG, X11, XPM" /> + <color name="goldenrod1" red="255" green="193" blue="37" compliance="X11" /> + <color name="goldenrod2" red="238" green="180" blue="34" compliance="X11" /> + <color name="goldenrod3" red="205" green="155" blue="29" compliance="X11" /> + <color name="goldenrod4" red="139" green="105" blue="20" compliance="X11" /> + <color name="gray" red="126" green="126" blue="126" compliance="SVG" /> + <color name="gray" red="190" green="190" blue="190" compliance="X11, XPM" /> + <color name="gray0" red="0" green="0" blue="0" compliance="X11, XPM" /> + <color name="gray1" red="3" green="3" blue="3" compliance="X11, XPM" /> + <color name="gray10" red="26" green="26" blue="26 " compliance="X11, XPM" /> + <color name="gray100" red="255" green="255" blue="255 " compliance="X11, XPM" /> + <color name="gray100" red="255" green="255" blue="255 " compliance="X11, XPM" /> + <color name="gray11" red="28" green="28" blue="28 " compliance="X11, XPM" /> + <color name="gray12" red="31" green="31" blue="31 " compliance="X11, XPM" /> + <color name="gray13" red="33" green="33" blue="33 " compliance="X11, XPM" /> + <color name="gray14" red="36" green="36" blue="36 " compliance="X11, XPM" /> + <color name="gray15" red="38" green="38" blue="38 " compliance="X11, XPM" /> + <color name="gray16" red="41" green="41" blue="41 " compliance="X11, XPM" /> + <color name="gray17" red="43" green="43" blue="43 " compliance="X11, XPM" /> + <color name="gray18" red="46" green="46" blue="46 " compliance="X11, XPM" /> + <color name="gray19" red="48" green="48" blue="48 " compliance="X11, XPM" /> + <color name="gray2" red="5" green="5" blue="5" compliance="X11, XPM" /> + <color name="gray20" red="51" green="51" blue="51 " compliance="X11, XPM" /> + <color name="gray21" red="54" green="54" blue="54 " compliance="X11, XPM" /> + <color name="gray22" red="56" green="56" blue="56 " compliance="X11, XPM" /> + <color name="gray23" red="59" green="59" blue="59 " compliance="X11, XPM" /> + <color name="gray24" red="61" green="61" blue="61 " compliance="X11, XPM" /> + <color name="gray25" red="64" green="64" blue="64 " compliance="X11, XPM" /> + <color name="gray26" red="66" green="66" blue="66 " compliance="X11, XPM" /> + <color name="gray27" red="69" green="69" blue="69 " compliance="X11, XPM" /> + <color name="gray28" red="71" green="71" blue="71 " compliance="X11, XPM" /> + <color name="gray29" red="74" green="74" blue="74 " compliance="X11, XPM" /> + <color name="gray3" red="8" green="8" blue="8" compliance="X11, XPM" /> + <color name="gray30" red="77" green="77" blue="77 " compliance="X11, XPM" /> + <color name="gray31" red="79" green="79" blue="79 " compliance="X11, XPM" /> + <color name="gray32" red="82" green="82" blue="82 " compliance="X11, XPM" /> + <color name="gray33" red="84" green="84" blue="84 " compliance="X11, XPM" /> + <color name="gray34" red="87" green="87" blue="87 " compliance="X11, XPM" /> + <color name="gray35" red="89" green="89" blue="89 " compliance="X11, XPM" /> + <color name="gray36" red="92" green="92" blue="92 " compliance="X11, XPM" /> + <color name="gray37" red="94" green="94" blue="94 " compliance="X11, XPM" /> + <color name="gray38" red="97" green="97" blue="97 " compliance="X11, XPM" /> + <color name="gray39" red="99" green="99" blue="99 " compliance="X11, XPM" /> + <color name="gray4" red="10" green="10" blue="10 " compliance="X11, XPM" /> + <color name="gray40" red="102" green="102" blue="102 " compliance="X11, XPM" /> + <color name="gray41" red="105" green="105" blue="105 " compliance="X11, XPM" /> + <color name="gray42" red="107" green="107" blue="107 " compliance="X11, XPM" /> + <color name="gray43" red="110" green="110" blue="110 " compliance="X11, XPM" /> + <color name="gray44" red="112" green="112" blue="112 " compliance="X11, XPM" /> + <color name="gray45" red="115" green="115" blue="115 " compliance="X11, XPM" /> + <color name="gray46" red="117" green="117" blue="117 " compliance="X11, XPM" /> + <color name="gray47" red="120" green="120" blue="120 " compliance="X11, XPM" /> + <color name="gray48" red="122" green="122" blue="122 " compliance="X11, XPM" /> + <color name="gray49" red="125" green="125" blue="125 " compliance="X11, XPM" /> + <color name="gray5" red="13" green="13" blue="13 " compliance="X11, XPM" /> + <color name="gray50" red="127" green="127" blue="127 " compliance="X11, XPM" /> + <color name="gray51" red="130" green="130" blue="130 " compliance="X11, XPM" /> + <color name="gray52" red="133" green="133" blue="133 " compliance="X11, XPM" /> + <color name="gray53" red="135" green="135" blue="135 " compliance="X11, XPM" /> + <color name="gray54" red="138" green="138" blue="138 " compliance="X11, XPM" /> + <color name="gray55" red="140" green="140" blue="140 " compliance="X11, XPM" /> + <color name="gray56" red="143" green="143" blue="143 " compliance="X11, XPM" /> + <color name="gray57" red="145" green="145" blue="145 " compliance="X11, XPM" /> + <color name="gray58" red="148" green="148" blue="148 " compliance="X11, XPM" /> + <color name="gray59" red="150" green="150" blue="150 " compliance="X11, XPM" /> + <color name="gray6" red="15" green="15" blue="15 " compliance="X11, XPM" /> + <color name="gray60" red="153" green="153" blue="153 " compliance="X11, XPM" /> + <color name="gray61" red="156" green="156" blue="156 " compliance="X11, XPM" /> + <color name="gray62" red="158" green="158" blue="158 " compliance="X11, XPM" /> + <color name="gray63" red="161" green="161" blue="161 " compliance="X11, XPM" /> + <color name="gray64" red="163" green="163" blue="163 " compliance="X11, XPM" /> + <color name="gray65" red="166" green="166" blue="166 " compliance="X11, XPM" /> + <color name="gray66" red="168" green="168" blue="168 " compliance="X11, XPM" /> + <color name="gray67" red="171" green="171" blue="171 " compliance="X11, XPM" /> + <color name="gray68" red="173" green="173" blue="173 " compliance="X11, XPM" /> + <color name="gray69" red="176" green="176" blue="176 " compliance="X11, XPM" /> + <color name="gray7" red="18" green="18" blue="18 " compliance="X11, XPM" /> + <color name="gray70" red="179" green="179" blue="179 " compliance="X11, XPM" /> + <color name="gray71" red="181" green="181" blue="181 " compliance="X11, XPM" /> + <color name="gray72" red="184" green="184" blue="184 " compliance="X11, XPM" /> + <color name="gray73" red="186" green="186" blue="186 " compliance="X11, XPM" /> + <color name="gray74" red="189" green="189" blue="189 " compliance="X11, XPM" /> + <color name="gray75" red="191" green="191" blue="191 " compliance="X11, XPM" /> + <color name="gray76" red="194" green="194" blue="194 " compliance="X11, XPM" /> + <color name="gray77" red="196" green="196" blue="196 " compliance="X11, XPM" /> + <color name="gray78" red="199" green="199" blue="199 " compliance="X11, XPM" /> + <color name="gray79" red="201" green="201" blue="201 " compliance="X11, XPM" /> + <color name="gray8" red="20" green="20" blue="20 " compliance="X11, XPM" /> + <color name="gray80" red="204" green="204" blue="204 " compliance="X11, XPM" /> + <color name="gray81" red="207" green="207" blue="207 " compliance="X11, XPM" /> + <color name="gray82" red="209" green="209" blue="209 " compliance="X11, XPM" /> + <color name="gray83" red="212" green="212" blue="212 " compliance="X11, XPM" /> + <color name="gray84" red="214" green="214" blue="214 " compliance="X11, XPM" /> + <color name="gray85" red="217" green="217" blue="217 " compliance="X11, XPM" /> + <color name="gray86" red="219" green="219" blue="219 " compliance="X11, XPM" /> + <color name="gray87" red="222" green="222" blue="222 " compliance="X11, XPM" /> + <color name="gray88" red="224" green="224" blue="224 " compliance="X11, XPM" /> + <color name="gray89" red="227" green="227" blue="227 " compliance="X11, XPM" /> + <color name="gray9" red="23" green="23" blue="23 " compliance="X11, XPM" /> + <color name="gray90" red="229" green="229" blue="229 " compliance="X11, XPM" /> + <color name="gray91" red="232" green="232" blue="232 " compliance="X11, XPM" /> + <color name="gray92" red="235" green="235" blue="235 " compliance="X11, XPM" /> + <color name="gray93" red="237" green="237" blue="237 " compliance="X11, XPM" /> + <color name="gray94" red="240" green="240" blue="240 " compliance="X11, XPM" /> + <color name="gray95" red="242" green="242" blue="242 " compliance="X11, XPM" /> + <color name="gray96" red="245" green="245" blue="245 " compliance="X11, XPM" /> + <color name="gray97" red="247" green="247" blue="247 " compliance="X11, XPM" /> + <color name="gray98" red="250" green="250" blue="250 " compliance="X11, XPM" /> + <color name="gray99" red="252" green="252" blue="252 " compliance="X11, XPM" /> + <color name="green" red="0" green="128" blue="0" compliance="SVG" /> + <color name="green" red="0" green="255" blue="0" compliance="X11, XPM" /> + <color name="green1" red="0" green="255" blue="0" compliance="X11" /> + <color name="green2" red="0" green="238" blue="0" compliance="X11" /> + <color name="green3" red="0" green="205" blue="0" compliance="X11" /> + <color name="green4" red="0" green="139" blue="0" compliance="X11" /> + <color name="GreenYellow" red="173" green="255" blue="47" compliance="X11, XPM" /> + <color name="grey" red="190" green="190" blue="190" compliance="SVG, X11" /> + <color name="grey0" red="0" green="0" blue="0" compliance="SVG, X11" /> + <color name="grey1" red="3" green="3" blue="3" compliance="SVG, X11" /> + <color name="grey10" red="26" green="26" blue="26 " compliance="SVG, X11" /> + <color name="grey100" red="255" green="255" blue="255 " compliance="SVG, X11" /> + <color name="grey11" red="28" green="28" blue="28 " compliance="SVG, X11" /> + <color name="grey12" red="31" green="31" blue="31 " compliance="SVG, X11" /> + <color name="grey13" red="33" green="33" blue="33 " compliance="SVG, X11" /> + <color name="grey14" red="36" green="36" blue="36 " compliance="SVG, X11" /> + <color name="grey15" red="38" green="38" blue="38 " compliance="SVG, X11" /> + <color name="grey16" red="41" green="41" blue="41 " compliance="SVG, X11" /> + <color name="grey17" red="43" green="43" blue="43 " compliance="SVG, X11" /> + <color name="grey18" red="46" green="46" blue="46 " compliance="SVG, X11" /> + <color name="grey19" red="48" green="48" blue="48 " compliance="SVG, X11" /> + <color name="grey2" red="5" green="5" blue="5" compliance="SVG, X11" /> + <color name="grey20" red="51" green="51" blue="51 " compliance="SVG, X11" /> + <color name="grey21" red="54" green="54" blue="54 " compliance="SVG, X11" /> + <color name="grey22" red="56" green="56" blue="56 " compliance="SVG, X11" /> + <color name="grey23" red="59" green="59" blue="59 " compliance="SVG, X11" /> + <color name="grey24" red="61" green="61" blue="61 " compliance="SVG, X11" /> + <color name="grey25" red="64" green="64" blue="64 " compliance="SVG, X11" /> + <color name="grey26" red="66" green="66" blue="66 " compliance="SVG, X11" /> + <color name="grey27" red="69" green="69" blue="69 " compliance="SVG, X11" /> + <color name="grey28" red="71" green="71" blue="71 " compliance="SVG, X11" /> + <color name="grey29" red="74" green="74" blue="74 " compliance="SVG, X11" /> + <color name="grey3" red="8" green="8" blue="8" compliance="SVG, X11" /> + <color name="grey30" red="77" green="77" blue="77 " compliance="SVG, X11" /> + <color name="grey31" red="79" green="79" blue="79 " compliance="SVG, X11" /> + <color name="grey32" red="82" green="82" blue="82 " compliance="SVG, X11" /> + <color name="grey33" red="84" green="84" blue="84 " compliance="SVG, X11" /> + <color name="grey34" red="87" green="87" blue="87 " compliance="SVG, X11" /> + <color name="grey35" red="89" green="89" blue="89 " compliance="SVG, X11" /> + <color name="grey36" red="92" green="92" blue="92 " compliance="SVG, X11" /> + <color name="grey37" red="94" green="94" blue="94 " compliance="SVG, X11" /> + <color name="grey38" red="97" green="97" blue="97 " compliance="SVG, X11" /> + <color name="grey39" red="99" green="99" blue="99 " compliance="SVG, X11" /> + <color name="grey4" red="10" green="10" blue="10 " compliance="SVG, X11" /> + <color name="grey40" red="102" green="102" blue="102 " compliance="SVG, X11" /> + <color name="grey41" red="105" green="105" blue="105 " compliance="SVG, X11" /> + <color name="grey42" red="107" green="107" blue="107 " compliance="SVG, X11" /> + <color name="grey43" red="110" green="110" blue="110 " compliance="SVG, X11" /> + <color name="grey44" red="112" green="112" blue="112 " compliance="SVG, X11" /> + <color name="grey45" red="115" green="115" blue="115 " compliance="SVG, X11" /> + <color name="grey46" red="117" green="117" blue="117 " compliance="SVG, X11" /> + <color name="grey47" red="120" green="120" blue="120 " compliance="SVG, X11" /> + <color name="grey48" red="122" green="122" blue="122 " compliance="SVG, X11" /> + <color name="grey49" red="125" green="125" blue="125 " compliance="SVG, X11" /> + <color name="grey5" red="13" green="13" blue="13 " compliance="SVG, X11" /> + <color name="grey50" red="127" green="127" blue="127 " compliance="SVG, X11" /> + <color name="grey51" red="130" green="130" blue="130 " compliance="SVG, X11" /> + <color name="grey52" red="133" green="133" blue="133 " compliance="SVG, X11" /> + <color name="grey53" red="135" green="135" blue="135 " compliance="SVG, X11" /> + <color name="grey54" red="138" green="138" blue="138 " compliance="SVG, X11" /> + <color name="grey55" red="140" green="140" blue="140 " compliance="SVG, X11" /> + <color name="grey56" red="143" green="143" blue="143 " compliance="SVG, X11" /> + <color name="grey57" red="145" green="145" blue="145 " compliance="SVG, X11" /> + <color name="grey58" red="148" green="148" blue="148 " compliance="SVG, X11" /> + <color name="grey59" red="150" green="150" blue="150 " compliance="SVG, X11" /> + <color name="grey6" red="15" green="15" blue="15 " compliance="SVG, X11" /> + <color name="grey60" red="153" green="153" blue="153 " compliance="SVG, X11" /> + <color name="grey61" red="156" green="156" blue="156 " compliance="SVG, X11" /> + <color name="grey62" red="158" green="158" blue="158 " compliance="SVG, X11" /> + <color name="grey63" red="161" green="161" blue="161 " compliance="SVG, X11" /> + <color name="grey64" red="163" green="163" blue="163 " compliance="SVG, X11" /> + <color name="grey65" red="166" green="166" blue="166 " compliance="SVG, X11" /> + <color name="grey66" red="168" green="168" blue="168 " compliance="SVG, X11" /> + <color name="grey67" red="171" green="171" blue="171 " compliance="SVG, X11" /> + <color name="grey68" red="173" green="173" blue="173 " compliance="SVG, X11" /> + <color name="grey69" red="176" green="176" blue="176 " compliance="SVG, X11" /> + <color name="grey7" red="18" green="18" blue="18 " compliance="SVG, X11" /> + <color name="grey70" red="179" green="179" blue="179 " compliance="SVG, X11" /> + <color name="grey71" red="181" green="181" blue="181 " compliance="SVG, X11" /> + <color name="grey72" red="184" green="184" blue="184 " compliance="SVG, X11" /> + <color name="grey73" red="186" green="186" blue="186 " compliance="SVG, X11" /> + <color name="grey74" red="189" green="189" blue="189 " compliance="SVG, X11" /> + <color name="grey75" red="191" green="191" blue="191 " compliance="SVG, X11" /> + <color name="grey76" red="194" green="194" blue="194 " compliance="SVG, X11" /> + <color name="grey77" red="196" green="196" blue="196 " compliance="SVG, X11" /> + <color name="grey78" red="199" green="199" blue="199 " compliance="SVG, X11" /> + <color name="grey79" red="201" green="201" blue="201 " compliance="SVG, X11" /> + <color name="grey8" red="20" green="20" blue="20 " compliance="SVG, X11" /> + <color name="grey80" red="204" green="204" blue="204 " compliance="SVG, X11" /> + <color name="grey81" red="207" green="207" blue="207 " compliance="SVG, X11" /> + <color name="grey82" red="209" green="209" blue="209 " compliance="SVG, X11" /> + <color name="grey83" red="212" green="212" blue="212 " compliance="SVG, X11" /> + <color name="grey84" red="214" green="214" blue="214 " compliance="SVG, X11" /> + <color name="grey85" red="217" green="217" blue="217 " compliance="SVG, X11" /> + <color name="grey86" red="219" green="219" blue="219 " compliance="SVG, X11" /> + <color name="grey87" red="222" green="222" blue="222 " compliance="SVG, X11" /> + <color name="grey88" red="224" green="224" blue="224 " compliance="SVG, X11" /> + <color name="grey89" red="227" green="227" blue="227 " compliance="SVG, X11" /> + <color name="grey9" red="23" green="23" blue="23 " compliance="SVG, X11" /> + <color name="grey90" red="229" green="229" blue="229 " compliance="SVG, X11" /> + <color name="grey91" red="232" green="232" blue="232 " compliance="SVG, X11" /> + <color name="grey92" red="235" green="235" blue="235 " compliance="SVG, X11" /> + <color name="grey93" red="237" green="237" blue="237 " compliance="SVG, X11" /> + <color name="grey94" red="240" green="240" blue="240 " compliance="SVG, X11" /> + <color name="grey95" red="242" green="242" blue="242 " compliance="SVG, X11" /> + <color name="grey96" red="245" green="245" blue="245 " compliance="SVG, X11" /> + <color name="grey97" red="247" green="247" blue="247 " compliance="SVG, X11" /> + <color name="grey98" red="250" green="250" blue="250 " compliance="SVG, X11" /> + <color name="grey99" red="252" green="252" blue="252 " compliance="SVG, X11" /> + <color name="honeydew" red="240" green="255" blue="240" compliance="SVG, X11, XPM" /> + <color name="honeydew1" red="240" green="255" blue="240" compliance="X11" /> + <color name="honeydew2" red="224" green="238" blue="224" compliance="X11" /> + <color name="honeydew3" red="193" green="205" blue="193" compliance="X11" /> + <color name="honeydew4" red="131" green="139" blue="131" compliance="X11" /> + <color name="HotPink" red="255" green="105" blue="180" compliance="SVG, X11, XPM" /> + <color name="HotPink1" red="255" green="110" blue="180" compliance="X11" /> + <color name="HotPink2" red="238" green="106" blue="167" compliance="X11" /> + <color name="HotPink3" red="205" green="96" blue="144" compliance="X11" /> + <color name="HotPink4" red="139" green="58" blue="98" compliance="X11" /> + <color name="IndianRed" red="205" green="92" blue="92" compliance="SVG, X11, XPM" /> + <color name="IndianRed1" red="255" green="106" blue="106" compliance="X11" /> + <color name="IndianRed2" red="238" green="99" blue="99" compliance="X11" /> + <color name="IndianRed3" red="205" green="85" blue="85" compliance="X11" /> + <color name="IndianRed4" red="139" green="58" blue="58" compliance="X11" /> + <color name="indigo" red="75" green="0" blue="130" compliance="SVG" /> + <color name="ivory" red="255" green="255" blue="240" compliance="SVG, X11, XPM" /> + <color name="ivory1" red="255" green="255" blue="240" compliance="X11" /> + <color name="ivory2" red="238" green="238" blue="224" compliance="X11" /> + <color name="ivory3" red="205" green="205" blue="193" compliance="X11" /> + <color name="ivory4" red="139" green="139" blue="131" compliance="X11" /> + <color name="khaki" red="240" green="230" blue="140" compliance="SVG, X11, XPM" /> + <color name="khaki1" red="255" green="246" blue="143" compliance="X11" /> + <color name="khaki2" red="238" green="230" blue="133" compliance="X11" /> + <color name="khaki3" red="205" green="198" blue="115" compliance="X11" /> + <color name="khaki4" red="139" green="134" blue="78" compliance="X11" /> + <color name="lavender" red="230" green="230" blue="250" compliance="SVG, X11, XPM" /> + <color name="LavenderBlush" red="255" green="240" blue="245" compliance="SVG, X11, XPM" /> + <color name="LavenderBlush1" red="255" green="240" blue="245" compliance="X11" /> + <color name="LavenderBlush2" red="238" green="224" blue="229" compliance="X11" /> + <color name="LavenderBlush3" red="205" green="193" blue="197" compliance="X11" /> + <color name="LavenderBlush4" red="139" green="131" blue="134" compliance="X11" /> + <color name="LawnGreen" red="124" green="252" blue="0" compliance="SVG, X11, XPM" /> + <color name="LemonChiffon" red="255" green="250" blue="205" compliance="SVG, X11, XPM" /> + <color name="LemonChiffon1" red="255" green="250" blue="205" compliance="X11" /> + <color name="LemonChiffon2" red="238" green="233" blue="191" compliance="X11" /> + <color name="LemonChiffon3" red="205" green="201" blue="165" compliance="X11" /> + <color name="LemonChiffon4" red="139" green="137" blue="112" compliance="X11" /> + <color name="LightBlue" red="173" green="216" blue="230" compliance="SVG, X11, XPM" /> + <color name="LightBlue1" red="191" green="239" blue="255" compliance="X11" /> + <color name="LightBlue2" red="178" green="223" blue="238" compliance="X11" /> + <color name="LightBlue3" red="154" green="192" blue="205" compliance="X11" /> + <color name="LightBlue4" red="104" green="131" blue="139" compliance="X11" /> + <color name="LightCoral" red="240" green="128" blue="128" compliance="SVG, X11, XPM" /> + <color name="LightCyan" red="224" green="255" blue="255" compliance="SVG, X11, XPM" /> + <color name="LightCyan1" red="224" green="255" blue="255" compliance="X11" /> + <color name="LightCyan2" red="209" green="238" blue="238" compliance="X11" /> + <color name="LightCyan3" red="180" green="205" blue="205" compliance="X11" /> + <color name="LightCyan4" red="122" green="139" blue="139" compliance="X11" /> + <color name="LightGoldenrod" red="238" green="221" blue="130" compliance="X11, XPM" /> + <color name="LightGoldenrod1" red="255" green="236" blue="139" compliance="X11" /> + <color name="LightGoldenrod2" red="238" green="220" blue="130" compliance="X11" /> + <color name="LightGoldenrod3" red="205" green="190" blue="112" compliance="X11" /> + <color name="LightGoldenrod4" red="139" green="129" blue="76" compliance="X11" /> + <color name="LightGoldenrodYellow" red="250" green="250" blue="210" compliance="SVG, X11, XPM" /> + <color name="LightGray" red="211" green="211" blue="211" compliance="SVG, X11, XPM" /> + <color name="LightGreen" red="144" green="238" blue="144" compliance="SVG, X11" /> + <color name="LightGrey" red="211" green="211" blue="211" compliance="SVG, X11" /> + <color name="LightPink" red="255" green="182" blue="193" compliance="SVG, X11, XPM" /> + <color name="LightPink1" red="255" green="174" blue="185" compliance="X11" /> + <color name="LightPink2" red="238" green="162" blue="173" compliance="X11" /> + <color name="LightPink3" red="205" green="140" blue="149" compliance="X11" /> + <color name="LightPink4" red="139" green="95" blue="101" compliance="X11" /> + <color name="LightSalmon" red="255" green="160" blue="122" compliance="SVG, X11, XPM" /> + <color name="LightSalmon1" red="255" green="160" blue="122" compliance="X11" /> + <color name="LightSalmon2" red="238" green="149" blue="114" compliance="X11" /> + <color name="LightSalmon3" red="205" green="129" blue="98" compliance="X11" /> + <color name="LightSalmon4" red="139" green="87" blue="66" compliance="X11" /> + <color name="LightSeaGreen" red="32" green="178" blue="170" compliance="SVG, X11, XPM" /> + <color name="LightSkyBlue" red="135" green="206" blue="250" compliance="SVG, X11, XPM" /> + <color name="LightSkyBlue1" red="176" green="226" blue="255" compliance="X11" /> + <color name="LightSkyBlue2" red="164" green="211" blue="238" compliance="X11" /> + <color name="LightSkyBlue3" red="141" green="182" blue="205" compliance="X11" /> + <color name="LightSkyBlue4" red="96" green="123" blue="139" compliance="X11" /> + <color name="LightSlateBlue" red="132" green="112" blue="255" compliance="X11, XPM" /> + <color name="LightSlateGray" red="119" green="136" blue="153" compliance="SVG, X11, XPM" /> + <color name="LightSlateGrey" red="119" green="136" blue="153" compliance="SVG, X11" /> + <color name="LightSteelBlue" red="176" green="196" blue="222" compliance="SVG, X11, XPM" /> + <color name="LightSteelBlue1" red="202" green="225" blue="255" compliance="X11" /> + <color name="LightSteelBlue2" red="188" green="210" blue="238" compliance="X11" /> + <color name="LightSteelBlue3" red="162" green="181" blue="205" compliance="X11" /> + <color name="LightSteelBlue4" red="110" green="123" blue="139" compliance="X11" /> + <color name="LightYellow" red="255" green="255" blue="224" compliance="SVG, X11, XPM" /> + <color name="LightYellow1" red="255" green="255" blue="224" compliance="X11" /> + <color name="LightYellow2" red="238" green="238" blue="209" compliance="X11" /> + <color name="LightYellow3" red="205" green="205" blue="180" compliance="X11" /> + <color name="LightYellow4" red="139" green="139" blue="122" compliance="X11" /> + <color name="lime" red="0" green="255" blue="0" compliance="SVG" /> + <color name="LimeGreen" red="50" green="205" blue="50" compliance="SVG, X11, XPM" /> + <color name="linen" red="250" green="240" blue="230" compliance="SVG, X11, XPM" /> + <color name="magenta" red="255" green="0" blue="255" compliance="SVG" /> + <color name="magenta" red="255" green="0" blue="255" compliance="X11, XPM" /> + <color name="magenta1" red="255" green="0" blue="255" compliance="X11" /> + <color name="magenta2" red="238" green="0" blue="238" compliance="X11" /> + <color name="magenta3" red="205" green="0" blue="205" compliance="X11" /> + <color name="magenta4" red="139" green="0" blue="139" compliance="X11" /> + <color name="maroon" red="128" green="0" blue="0" compliance="SVG" /> + <color name="maroon" red="176" green="48" blue="96" compliance="X11, XPM" /> + <color name="maroon1" red="255" green="52" blue="179" compliance="X11" /> + <color name="maroon2" red="238" green="48" blue="167" compliance="X11" /> + <color name="maroon3" red="205" green="41" blue="144" compliance="X11" /> + <color name="maroon4" red="139" green="28" blue="98" compliance="X11" /> + <color name="MediumAquamarine" red="102" green="205" blue="170" compliance="SVG, X11, XPM" /> + <color name="MediumBlue" red="0" green="0" blue="205" compliance="SVG, X11, XPM" /> + <color name="MediumForestGreen" red="50" green="129" blue="75" compliance="X11, XPM" /> + <color name="MediumGoldenRod" red="209" green="193" blue="102" compliance="X11, XPM" /> + <color name="MediumOrchid" red="186" green="85" blue="211" compliance="SVG, X11, XPM" /> + <color name="MediumOrchid1" red="224" green="102" blue="255" compliance="X11" /> + <color name="MediumOrchid2" red="209" green="95" blue="238" compliance="X11" /> + <color name="MediumOrchid3" red="180" green="82" blue="205" compliance="X11" /> + <color name="MediumOrchid4" red="122" green="55" blue="139" compliance="X11" /> + <color name="MediumPurple" red="147" green="112" blue="219" compliance="SVG, X11, XPM" /> + <color name="MediumPurple1" red="171" green="130" blue="255" compliance="X11" /> + <color name="MediumPurple2" red="159" green="121" blue="238" compliance="X11" /> + <color name="MediumPurple3" red="137" green="104" blue="205" compliance="X11" /> + <color name="MediumPurple4" red="93" green="71" blue="139" compliance="X11" /> + <color name="MediumSeaGreen" red="60" green="179" blue="113" compliance="SVG, X11, XPM" /> + <color name="MediumSlateBlue" red="123" green="104" blue="238" compliance="SVG, X11, XPM" /> + <color name="MediumSpringGreen" red="0" green="250" blue="154" compliance="SVG, X11, XPM" /> + <color name="MediumTurquoise" red="72" green="209" blue="204" compliance="SVG, X11, XPM" /> + <color name="MediumVioletRed" red="199" green="21" blue="133" compliance="SVG, X11, XPM" /> + <color name="MidnightBlue" red="25" green="25" blue="112" compliance="SVG, X11, XPM" /> + <color name="MintCream" red="245" green="255" blue="250" compliance="SVG, X11, XPM" /> + <color name="MistyRose" red="255" green="228" blue="225" compliance="SVG, X11, XPM" /> + <color name="MistyRose1" red="255" green="228" blue="225" compliance="X11" /> + <color name="MistyRose2" red="238" green="213" blue="210" compliance="X11" /> + <color name="MistyRose3" red="205" green="183" blue="181" compliance="X11" /> + <color name="MistyRose4" red="139" green="125" blue="123" compliance="X11" /> + <color name="moccasin" red="255" green="228" blue="181" compliance="SVG, X11, XPM" /> + <color name="NavajoWhite" red="255" green="222" blue="173" compliance="SVG, X11, XPM" /> + <color name="NavajoWhite1" red="255" green="222" blue="173" compliance="X11" /> + <color name="NavajoWhite2" red="238" green="207" blue="161" compliance="X11" /> + <color name="NavajoWhite3" red="205" green="179" blue="139" compliance="X11" /> + <color name="NavajoWhite4" red="139" green="121" blue="94" compliance="X11" /> + <color name="navy" red="0" green="0" blue="128" compliance="SVG, X11, XPM" /> + <color name="NavyBlue" red="0" green="0" blue="128" compliance="X11, XPM" /> + <color name="none" red="0" green="0" blue="0" opacity="255" compliance="SVG" /> + <color name="OldLace" red="253" green="245" blue="230" compliance="SVG, X11, XPM" /> + <color name="olive" red="128" green="128" blue="0" compliance="SVG" /> + <color name="OliveDrab" red="107" green="142" blue="35" compliance="SVG, X11, XPM" /> + <color name="OliveDrab1" red="192" green="255" blue="62" compliance="X11" /> + <color name="OliveDrab2" red="179" green="238" blue="58" compliance="X11" /> + <color name="OliveDrab3" red="154" green="205" blue="50" compliance="X11" /> + <color name="OliveDrab4" red="105" green="139" blue="34" compliance="X11" /> + <color name="opaque" opacity="0" compliance="SVG" /> + <color name="orange" red="255" green="165" blue="0" compliance="SVG, X11, XPM" /> + <color name="orange1" red="255" green="165" blue="0" compliance="X11" /> + <color name="orange2" red="238" green="154" blue="0" compliance="X11" /> + <color name="orange3" red="205" green="133" blue="0" compliance="X11" /> + <color name="orange4" red="139" green="90" blue="0" compliance="X11" /> + <color name="OrangeRed" red="255" green="69" blue="0" compliance="SVG, X11, XPM" /> + <color name="OrangeRed1" red="255" green="69" blue="0" compliance="X11" /> + <color name="OrangeRed2" red="238" green="64" blue="0" compliance="X11" /> + <color name="OrangeRed3" red="205" green="55" blue="0" compliance="X11" /> + <color name="OrangeRed4" red="139" green="37" blue="0" compliance="X11" /> + <color name="orchid" red="218" green="112" blue="214" compliance="SVG, X11, XPM" /> + <color name="orchid1" red="255" green="131" blue="250" compliance="X11" /> + <color name="orchid2" red="238" green="122" blue="233" compliance="X11" /> + <color name="orchid3" red="205" green="105" blue="201" compliance="X11" /> + <color name="orchid4" red="139" green="71" blue="137" compliance="X11" /> + <color name="PaleGoldenrod" red="238" green="232" blue="170" compliance="SVG, X11, XPM" /> + <color name="PaleGreen" red="152" green="251" blue="152" compliance="SVG, X11, XPM" /> + <color name="PaleGreen1" red="154" green="255" blue="154" compliance="X11" /> + <color name="PaleGreen2" red="144" green="238" blue="144" compliance="X11" /> + <color name="PaleGreen3" red="124" green="205" blue="124" compliance="X11" /> + <color name="PaleGreen4" red="84" green="139" blue="84" compliance="X11" /> + <color name="PaleTurquoise" red="175" green="238" blue="238" compliance="SVG, X11, XPM" /> + <color name="PaleTurquoise1" red="187" green="255" blue="255" compliance="X11" /> + <color name="PaleTurquoise2" red="174" green="238" blue="238" compliance="X11" /> + <color name="PaleTurquoise3" red="150" green="205" blue="205" compliance="X11" /> + <color name="PaleTurquoise4" red="102" green="139" blue="139" compliance="X11" /> + <color name="PaleVioletRed" red="219" green="112" blue="147" compliance="SVG, X11, XPM" /> + <color name="PaleVioletRed1" red="255" green="130" blue="171" compliance="X11" /> + <color name="PaleVioletRed2" red="238" green="121" blue="159" compliance="X11" /> + <color name="PaleVioletRed3" red="205" green="104" blue="137" compliance="X11" /> + <color name="PaleVioletRed4" red="139" green="71" blue="93" compliance="X11" /> + <color name="PapayaWhip" red="255" green="239" blue="213" compliance="SVG, X11, XPM" /> + <color name="PeachPuff" red="255" green="218" blue="185" compliance="SVG, X11, XPM" /> + <color name="PeachPuff1" red="255" green="218" blue="185" compliance="X11" /> + <color name="PeachPuff2" red="238" green="203" blue="173" compliance="X11" /> + <color name="PeachPuff3" red="205" green="175" blue="149" compliance="X11" /> + <color name="PeachPuff4" red="139" green="119" blue="101" compliance="X11" /> + <color name="peru" red="205" green="133" blue="63" compliance="SVG, X11, XPM" /> + <color name="pink" red="255" green="192" blue="203" compliance="SVG, X11, XPM" /> + <color name="pink1" red="255" green="181" blue="197" compliance="X11" /> + <color name="pink2" red="238" green="169" blue="184" compliance="X11" /> + <color name="pink3" red="205" green="145" blue="158" compliance="X11" /> + <color name="pink4" red="139" green="99" blue="108" compliance="X11" /> + <color name="plum" red="221" green="160" blue="221" compliance="SVG, X11, XPM" /> + <color name="plum1" red="255" green="187" blue="255" compliance="X11" /> + <color name="plum2" red="238" green="174" blue="238" compliance="X11" /> + <color name="plum3" red="205" green="150" blue="205" compliance="X11" /> + <color name="plum4" red="139" green="102" blue="139" compliance="X11" /> + <color name="PowderBlue" red="176" green="224" blue="230" compliance="SVG, X11, XPM" /> + <color name="purple" red="128" green="0" blue="128" compliance="SVG" /> + <color name="purple" red="160" green="32" blue="240" compliance="X11, XPM" /> + <color name="purple1" red="155" green="48" blue="255" compliance="X11" /> + <color name="purple2" red="145" green="44" blue="238" compliance="X11" /> + <color name="purple3" red="125" green="38" blue="205" compliance="X11" /> + <color name="purple4" red="85" green="26" blue="139" compliance="X11" /> + <color name="red" red="255" green="0" blue="0" compliance="SVG, X11, XPM" /> + <color name="red1" red="255" green="0" blue="0" compliance="X11" /> + <color name="red2" red="238" green="0" blue="0" compliance="X11" /> + <color name="red3" red="205" green="0" blue="0" compliance="X11" /> + <color name="red4" red="139" green="0" blue="0" compliance="X11" /> + <color name="RosyBrown" red="188" green="143" blue="143" compliance="SVG, X11, XPM" /> + <color name="RosyBrown1" red="255" green="193" blue="193" compliance="X11" /> + <color name="RosyBrown2" red="238" green="180" blue="180" compliance="X11" /> + <color name="RosyBrown3" red="205" green="155" blue="155" compliance="X11" /> + <color name="RosyBrown4" red="139" green="105" blue="105" compliance="X11" /> + <color name="RoyalBlue" red="65" green="105" blue="225" compliance="SVG, X11, XPM" /> + <color name="RoyalBlue1" red="72" green="118" blue="255" compliance="X11" /> + <color name="RoyalBlue2" red="67" green="110" blue="238" compliance="X11" /> + <color name="RoyalBlue3" red="58" green="95" blue="205" compliance="X11" /> + <color name="RoyalBlue4" red="39" green="64" blue="139" compliance="X11" /> + <color name="SaddleBrown" red="139" green="69" blue="19" compliance="SVG, X11, XPM" /> + <color name="salmon" red="250" green="128" blue="114" compliance="SVG, X11, XPM" /> + <color name="salmon1" red="255" green="140" blue="105" compliance="X11" /> + <color name="salmon2" red="238" green="130" blue="98" compliance="X11" /> + <color name="salmon3" red="205" green="112" blue="84" compliance="X11" /> + <color name="salmon4" red="139" green="76" blue="57" compliance="X11" /> + <color name="SandyBrown" red="244" green="164" blue="96" compliance="SVG, X11, XPM" /> + <color name="SeaGreen" red="46" green="139" blue="87" compliance="SVG, X11, XPM" /> + <color name="SeaGreen1" red="84" green="255" blue="159" compliance="X11" /> + <color name="SeaGreen2" red="78" green="238" blue="148" compliance="X11" /> + <color name="SeaGreen3" red="67" green="205" blue="128" compliance="X11" /> + <color name="SeaGreen4" red="46" green="139" blue="87" compliance="X11" /> + <color name="seashell" red="255" green="245" blue="238" compliance="SVG, X11, XPM" /> + <color name="seashell1" red="255" green="245" blue="238" compliance="X11" /> + <color name="seashell2" red="238" green="229" blue="222" compliance="X11" /> + <color name="seashell3" red="205" green="197" blue="191" compliance="X11" /> + <color name="seashell4" red="139" green="134" blue="130" compliance="X11" /> + <color name="sienna" red="160" green="82" blue="45" compliance="SVG, X11, XPM" /> + <color name="sienna1" red="255" green="130" blue="71" compliance="X11" /> + <color name="sienna2" red="238" green="121" blue="66" compliance="X11" /> + <color name="sienna3" red="205" green="104" blue="57" compliance="X11" /> + <color name="sienna4" red="139" green="71" blue="38" compliance="X11" /> + <color name="silver" red="192" green="192" blue="192" compliance="SVG" /> + <color name="SkyBlue" red="135" green="206" blue="235" compliance="SVG, X11, XPM" /> + <color name="SkyBlue1" red="135" green="206" blue="255" compliance="X11" /> + <color name="SkyBlue2" red="126" green="192" blue="238" compliance="X11" /> + <color name="SkyBlue3" red="108" green="166" blue="205" compliance="X11" /> + <color name="SkyBlue4" red="74" green="112" blue="139" compliance="X11" /> + <color name="SlateBlue" red="106" green="90" blue="205" compliance="SVG, X11, XPM" /> + <color name="SlateBlue1" red="131" green="111" blue="255" compliance="X11" /> + <color name="SlateBlue2" red="122" green="103" blue="238" compliance="X11" /> + <color name="SlateBlue3" red="105" green="89" blue="205" compliance="X11" /> + <color name="SlateBlue4" red="71" green="60" blue="139" compliance="X11" /> + <color name="SlateGray" red="112" green="128" blue="144" compliance="SVG, X11, XPM" /> + <color name="SlateGray1" red="198" green="226" blue="255" compliance="X11" /> + <color name="SlateGray2" red="185" green="211" blue="238" compliance="X11" /> + <color name="SlateGray3" red="159" green="182" blue="205" compliance="X11" /> + <color name="SlateGray4" red="108" green="123" blue="139" compliance="X11" /> + <color name="SlateGrey" red="112" green="128" blue="144" compliance="SVG, X11" /> + <color name="snow" red="255" green="250" blue="250" compliance="SVG, X11, XPM" /> + <color name="snow1" red="255" green="250" blue="250" compliance="X11" /> + <color name="snow2" red="238" green="233" blue="233" compliance="X11" /> + <color name="snow3" red="205" green="201" blue="201" compliance="X11" /> + <color name="snow4" red="139" green="137" blue="137" compliance="X11" /> + <color name="SpringGreen" red="0" green="255" blue="127" compliance="SVG, X11, XPM" /> + <color name="SpringGreen1" red="0" green="255" blue="127" compliance="X11" /> + <color name="SpringGreen2" red="0" green="238" blue="118" compliance="X11" /> + <color name="SpringGreen3" red="0" green="205" blue="102" compliance="X11" /> + <color name="SpringGreen4" red="0" green="139" blue="69" compliance="X11" /> + <color name="SteelBlue" red="70" green="130" blue="180" compliance="SVG, X11, XPM" /> + <color name="SteelBlue1" red="99" green="184" blue="255" compliance="X11" /> + <color name="SteelBlue2" red="92" green="172" blue="238" compliance="X11" /> + <color name="SteelBlue3" red="79" green="148" blue="205" compliance="X11" /> + <color name="SteelBlue4" red="54" green="100" blue="139" compliance="X11" /> + <color name="tan" red="210" green="180" blue="140" compliance="SVG, X11, XPM" /> + <color name="tan1" red="255" green="165" blue="79" compliance="X11" /> + <color name="tan2" red="238" green="154" blue="73" compliance="X11" /> + <color name="tan3" red="205" green="133" blue="63" compliance="X11" /> + <color name="tan4" red="139" green="90" blue="43" compliance="X11" /> + <color name="teal" red="0" green="128" blue="128" compliance="SVG" /> + <color name="thistle" red="216" green="191" blue="216" compliance="SVG, X11, XPM" /> + <color name="thistle1" red="255" green="225" blue="255" compliance="X11" /> + <color name="thistle2" red="238" green="210" blue="238" compliance="X11" /> + <color name="thistle3" red="205" green="181" blue="205" compliance="X11" /> + <color name="thistle4" red="139" green="123" blue="139" compliance="X11" /> + <color name="tomato" red="255" green="99" blue="71" compliance="SVG, X11, XPM" /> + <color name="tomato1" red="255" green="99" blue="71" compliance="X11" /> + <color name="tomato2" red="238" green="92" blue="66" compliance="X11" /> + <color name="tomato3" red="205" green="79" blue="57" compliance="X11" /> + <color name="tomato4" red="139" green="54" blue="38" compliance="X11" /> + <color name="transparent" opacity="255" compliance="SVG" /> + <color name="turquoise" red="64" green="224" blue="208" compliance="SVG, X11, XPM" /> + <color name="turquoise1" red="0" green="245" blue="255" compliance="X11" /> + <color name="turquoise2" red="0" green="229" blue="238" compliance="X11" /> + <color name="turquoise3" red="0" green="197" blue="205" compliance="X11" /> + <color name="turquoise4" red="0" green="134" blue="139" compliance="X11" /> + <color name="violet" red="238" green="130" blue="238" compliance="SVG, X11, XPM" /> + <color name="VioletRed" red="208" green="32" blue="144" compliance="X11, XPM" /> + <color name="VioletRed1" red="255" green="62" blue="150" compliance="X11" /> + <color name="VioletRed2" red="238" green="58" blue="140" compliance="X11" /> + <color name="VioletRed3" red="205" green="50" blue="120" compliance="X11" /> + <color name="VioletRed4" red="139" green="34" blue="82" compliance="X11" /> + <color name="wheat" red="245" green="222" blue="179" compliance="SVG, X11, XPM" /> + <color name="wheat1" red="255" green="231" blue="186" compliance="X11" /> + <color name="wheat2" red="238" green="216" blue="174" compliance="X11" /> + <color name="wheat3" red="205" green="186" blue="150" compliance="X11" /> + <color name="wheat4" red="139" green="126" blue="102" compliance="X11" /> + <color name="white" red="255" green="255" blue="255" compliance="SVG, X11" /> + <color name="WhiteSmoke" red="245" green="245" blue="245" compliance="SVG, X11, XPM" /> + <color name="yellow" red="255" green="255" blue="0" compliance="SVG, X11, XPM" /> + <color name="yellow1" red="255" green="255" blue="0" compliance="X11" /> + <color name="yellow2" red="238" green="238" blue="0" compliance="X11" /> + <color name="yellow3" red="205" green="205" blue="0" compliance="X11" /> + <color name="yellow4" red="139" green="139" blue="0" compliance="X11" /> + <color name="YellowGreen" red="154" green="205" blue="50" compliance="SVG, X11, XPM" /> +</colormap> Added: trunk/plugins/Burner/dep/Burner/cygfreetype-6.dll =================================================================== (Binary files differ) Property changes on: trunk/plugins/Burner/dep/Burner/cygfreetype-6.dll ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: trunk/plugins/Burner/dep/Burner/cygiconv-2.dll =================================================================== (Binary files differ) Property changes on: trunk/plugins/Burner/dep/Burner/cygiconv-2.dll ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: trunk/plugins/Burner/dep/Burner/cygintl-1.dll ====================... [truncated message content] |
From: <ro...@us...> - 2011-06-14 17:26:33
|
Revision: 4254 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=4254&view=rev Author: rolenof Date: 2011-06-14 17:26:27 +0000 (Tue, 14 Jun 2011) Log Message: ----------- Modified Paths: -------------- trunk/plugins/Burner/dep/Burner/cygfreetype-6.dll trunk/plugins/Burner/dep/Burner/cygiconv-2.dll trunk/plugins/Burner/dep/Burner/cygpng12.dll trunk/plugins/Burner/dep/Burner/cygwin1.dll trunk/plugins/Burner/dep/Burner/cygxml2-2.dll trunk/plugins/Burner/dep/Burner/cygz.dll trunk/plugins/Burner/dep/Burner/dvdauthor.exe trunk/plugins/Burner/dep/Burner/spumux.exe trunk/plugins/Burner/dep/Burner.7z trunk/plugins/Burner/trunk/Burner/GUIBurner.cs trunk/plugins/Burner/trunk/Burner/MediaInfoDLL.cs trunk/plugins/Burner/trunk/Burner/MenuGenerator.cs trunk/plugins/Burner/trunk/Burner/Properties/AssemblyInfo.cs trunk/plugins/Burner/trunk/TODO.txt Added Paths: ----------- trunk/plugins/Burner/dep/Burner/cyggcc_s-1.dll trunk/plugins/Burner/dep/Burner/imagequ.exe trunk/plugins/Burner/dep/Burner/wodim.exe Removed Paths: ------------- trunk/plugins/Burner/dep/Burner/burn.bat trunk/plugins/Burner/dep/Burner/dvd.bat trunk/plugins/Burner/dep/Burner/gm.exe trunk/plugins/Burner/dep/Burner/iso.bat trunk/plugins/Burner/dep/Burner/jpeg2yuv.exe trunk/plugins/Burner/dep/Burner/mat.bat trunk/plugins/Burner/dep/Burner/mencoder_copy.exe trunk/plugins/Burner/dep/Burner/menuGen.exe trunk/plugins/Burner/dep/Burner/mpeg2desc.exe trunk/plugins/Burner/dep/Burner/mpgtx.exe trunk/plugins/Burner/dep/Burner/pxsup2dast.exe trunk/plugins/Burner/dep/Burner/scanbus.bat trunk/plugins/Burner/dep/Burner/spuunmux.exe trunk/plugins/Burner/trunk/MediaInfo.dll Deleted: trunk/plugins/Burner/dep/Burner/burn.bat =================================================================== --- trunk/plugins/Burner/dep/Burner/burn.bat 2011-06-14 11:05:06 UTC (rev 4253) +++ trunk/plugins/Burner/dep/Burner/burn.bat 2011-06-14 17:26:27 UTC (rev 4254) @@ -1 +0,0 @@ -mencoder_bob.exe "-oac lavc -ovc lavc -of mpeg -mpegopts format=dvd:tsaf -vf scale=720:576,harddup -srate 48000 -af lavcresample=48000 -lavcopts vcodec=mpeg2video:vrc_buf_size=1835:vrc_maxrate=9800:vbitrate=5000:keyint=15:acodec=ac3:abitrate=192:aspect=4/3 -ofps 25 -o I:\WINDOWS\TEMP\DVD\F1.mpg I:\temp\T\xA8\xF0\xF3\xF8 - \xA6\xBA\x{3E6AEA8}\xF0 - 2011-03-14.ts\T\xA8\xF0\xF3\xF8 - \xA6\xBA\x{3E6AEA8}\xF0 - 2011-03-14.ts" \ No newline at end of file Modified: trunk/plugins/Burner/dep/Burner/cygfreetype-6.dll =================================================================== (Binary files differ) Added: trunk/plugins/Burner/dep/Burner/cyggcc_s-1.dll =================================================================== (Binary files differ) Property changes on: trunk/plugins/Burner/dep/Burner/cyggcc_s-1.dll ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Modified: trunk/plugins/Burner/dep/Burner/cygiconv-2.dll =================================================================== (Binary files differ) Modified: trunk/plugins/Burner/dep/Burner/cygpng12.dll =================================================================== (Binary files differ) Modified: trunk/plugins/Burner/dep/Burner/cygwin1.dll =================================================================== (Binary files differ) Modified: trunk/plugins/Burner/dep/Burner/cygxml2-2.dll =================================================================== (Binary files differ) Modified: trunk/plugins/Burner/dep/Burner/cygz.dll =================================================================== (Binary files differ) Deleted: trunk/plugins/Burner/dep/Burner/dvd.bat =================================================================== --- trunk/plugins/Burner/dep/Burner/dvd.bat 2011-06-14 11:05:06 UTC (rev 4253) +++ trunk/plugins/Burner/dep/Burner/dvd.bat 2011-06-14 17:26:27 UTC (rev 4254) @@ -1,2 +0,0 @@ - -dvdauthor -o c:\temp\dvd\DVD_Image -x c:\temp\dvd\config.xml Modified: trunk/plugins/Burner/dep/Burner/dvdauthor.exe =================================================================== (Binary files differ) Deleted: trunk/plugins/Burner/dep/Burner/gm.exe =================================================================== (Binary files differ) Added: trunk/plugins/Burner/dep/Burner/imagequ.exe =================================================================== (Binary files differ) Property changes on: trunk/plugins/Burner/dep/Burner/imagequ.exe ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Deleted: trunk/plugins/Burner/dep/Burner/iso.bat =================================================================== --- trunk/plugins/Burner/dep/Burner/iso.bat 2011-06-14 11:05:06 UTC (rev 4253) +++ trunk/plugins/Burner/dep/Burner/iso.bat 2011-06-14 17:26:27 UTC (rev 4254) @@ -1,2 +0,0 @@ - -mkisofs -V "MyDVD" -o "c:\temp\DVD\dvd.iso" -dvd-video "c:\temp\DVD\dvd_image" Deleted: trunk/plugins/Burner/dep/Burner/jpeg2yuv.exe =================================================================== (Binary files differ) Deleted: trunk/plugins/Burner/dep/Burner/mat.bat =================================================================== --- trunk/plugins/Burner/dep/Burner/mat.bat 2011-06-14 11:05:06 UTC (rev 4253) +++ trunk/plugins/Burner/dep/Burner/mat.bat 2011-06-14 17:26:27 UTC (rev 4254) @@ -1,3 +0,0 @@ - -dvdauthor -o c:\temp\dvd\DVD_Image -x c:\temp\dvd\config.xml -mkisofs -V "MyDVD" -o c:\temp\dvd\dvd.iso -dvd-video c:\temp\dvd\dvd_image \ No newline at end of file Deleted: trunk/plugins/Burner/dep/Burner/mencoder_copy.exe =================================================================== (Binary files differ) Deleted: trunk/plugins/Burner/dep/Burner/menuGen.exe =================================================================== (Binary files differ) Deleted: trunk/plugins/Burner/dep/Burner/mpeg2desc.exe =================================================================== (Binary files differ) Deleted: trunk/plugins/Burner/dep/Burner/mpgtx.exe =================================================================== (Binary files differ) Deleted: trunk/plugins/Burner/dep/Burner/pxsup2dast.exe =================================================================== (Binary files differ) Deleted: trunk/plugins/Burner/dep/Burner/scanbus.bat =================================================================== --- trunk/plugins/Burner/dep/Burner/scanbus.bat 2011-06-14 11:05:06 UTC (rev 4253) +++ trunk/plugins/Burner/dep/Burner/scanbus.bat 2011-06-14 17:26:27 UTC (rev 4254) @@ -1,2 +0,0 @@ -cdrecord.exe -scanbus -ping -t localhost > nul Modified: trunk/plugins/Burner/dep/Burner/spumux.exe =================================================================== (Binary files differ) Deleted: trunk/plugins/Burner/dep/Burner/spuunmux.exe =================================================================== (Binary files differ) Added: trunk/plugins/Burner/dep/Burner/wodim.exe =================================================================== (Binary files differ) Property changes on: trunk/plugins/Burner/dep/Burner/wodim.exe ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Modified: trunk/plugins/Burner/dep/Burner.7z =================================================================== (Binary files differ) Modified: trunk/plugins/Burner/trunk/Burner/GUIBurner.cs =================================================================== --- trunk/plugins/Burner/trunk/Burner/GUIBurner.cs 2011-06-14 11:05:06 UTC (rev 4253) +++ trunk/plugins/Burner/trunk/Burner/GUIBurner.cs 2011-06-14 17:26:27 UTC (rev 4254) @@ -323,6 +323,8 @@ case States.STATE_MAKE_AUDIO_CD: burnType = BurnTypes.AUDIO_CD; BurnCD(burnType); + /*Clear(); + Load(GUIGraphicsContext.Skin + @"\myburner.xml");*/ break; // If on Data CD Menu Modified: trunk/plugins/Burner/trunk/Burner/MediaInfoDLL.cs =================================================================== --- trunk/plugins/Burner/trunk/Burner/MediaInfoDLL.cs 2011-06-14 11:05:06 UTC (rev 4253) +++ trunk/plugins/Burner/trunk/Burner/MediaInfoDLL.cs 2011-06-14 17:26:27 UTC (rev 4254) @@ -86,51 +86,51 @@ public class MediaInfo { //Import of DLL functions. DO NOT USE until you know what you do (MediaInfo DLL do NOT use CoTaskMemAlloc to allocate memory) - [DllImport("MediaInfo.dll")] + [DllImport("..\\..\\MediaInfo.dll")] private static extern IntPtr MediaInfo_New(); - [DllImport("MediaInfo.dll")] + [DllImport("..\\..\\MediaInfo.dll")] private static extern void MediaInfo_Delete(IntPtr Handle); - [DllImport("MediaInfo.dll")] + [DllImport("..\\..\\MediaInfo.dll")] private static extern IntPtr MediaInfo_Open(IntPtr Handle, [MarshalAs(UnmanagedType.LPWStr)] string FileName); - [DllImport("MediaInfo.dll")] + [DllImport("..\\..\\MediaInfo.dll")] private static extern IntPtr MediaInfoA_Open(IntPtr Handle, IntPtr FileName); - [DllImport("MediaInfo.dll")] + [DllImport("..\\..\\MediaInfo.dll")] private static extern IntPtr MediaInfo_Open_Buffer_Init(IntPtr Handle, Int64 File_Size, Int64 File_Offset); - [DllImport("MediaInfo.dll")] + [DllImport("..\\..\\MediaInfo.dll")] private static extern IntPtr MediaInfoA_Open(IntPtr Handle, Int64 File_Size, Int64 File_Offset); - [DllImport("MediaInfo.dll")] + [DllImport("..\\..\\MediaInfo.dll")] private static extern IntPtr MediaInfo_Open_Buffer_Continue(IntPtr Handle, IntPtr Buffer, IntPtr Buffer_Size); - [DllImport("MediaInfo.dll")] + [DllImport("..\\..\\MediaInfo.dll")] private static extern IntPtr MediaInfoA_Open_Buffer_Continue(IntPtr Handle, Int64 File_Size, byte[] Buffer, IntPtr Buffer_Size); - [DllImport("MediaInfo.dll")] + [DllImport("..\\..\\MediaInfo.dll")] private static extern Int64 MediaInfo_Open_Buffer_Continue_GoTo_Get(IntPtr Handle); - [DllImport("MediaInfo.dll")] + [DllImport("..\\..\\MediaInfo.dll")] private static extern Int64 MediaInfoA_Open_Buffer_Continue_GoTo_Get(IntPtr Handle); - [DllImport("MediaInfo.dll")] + [DllImport("..\\..\\MediaInfo.dll")] private static extern IntPtr MediaInfo_Open_Buffer_Finalize(IntPtr Handle); - [DllImport("MediaInfo.dll")] + [DllImport("..\\..\\MediaInfo.dll")] private static extern IntPtr MediaInfoA_Open_Buffer_Finalize(IntPtr Handle); - [DllImport("MediaInfo.dll")] + [DllImport("..\\..\\MediaInfo.dll")] private static extern void MediaInfo_Close(IntPtr Handle); - [DllImport("MediaInfo.dll")] + [DllImport("..\\..\\MediaInfo.dll")] private static extern IntPtr MediaInfo_Inform(IntPtr Handle, IntPtr Reserved); - [DllImport("MediaInfo.dll")] + [DllImport("..\\..\\MediaInfo.dll")] private static extern IntPtr MediaInfoA_Inform(IntPtr Handle, IntPtr Reserved); - [DllImport("MediaInfo.dll")] + [DllImport("..\\..\\MediaInfo.dll")] private static extern IntPtr MediaInfo_GetI(IntPtr Handle, IntPtr StreamKind, IntPtr StreamNumber, IntPtr Parameter, IntPtr KindOfInfo); - [DllImport("MediaInfo.dll")] + [DllImport("..\\..\\MediaInfo.dll")] private static extern IntPtr MediaInfoA_GetI(IntPtr Handle, IntPtr StreamKind, IntPtr StreamNumber, IntPtr Parameter, IntPtr KindOfInfo); - [DllImport("MediaInfo.dll")] + [DllImport("..\\..\\MediaInfo.dll")] private static extern IntPtr MediaInfo_Get(IntPtr Handle, IntPtr StreamKind, IntPtr StreamNumber, [MarshalAs(UnmanagedType.LPWStr)] string Parameter, IntPtr KindOfInfo, IntPtr KindOfSearch); - [DllImport("MediaInfo.dll")] + [DllImport("..\\..\\MediaInfo.dll")] private static extern IntPtr MediaInfoA_Get(IntPtr Handle, IntPtr StreamKind, IntPtr StreamNumber, IntPtr Parameter, IntPtr KindOfInfo, IntPtr KindOfSearch); - [DllImport("MediaInfo.dll")] + [DllImport("..\\..\\MediaInfo.dll")] private static extern IntPtr MediaInfo_Option(IntPtr Handle, [MarshalAs(UnmanagedType.LPWStr)] string Option, [MarshalAs(UnmanagedType.LPWStr)] string Value); - [DllImport("MediaInfo.dll")] + [DllImport("..\\..\\MediaInfo.dll")] private static extern IntPtr MediaInfoA_Option(IntPtr Handle, IntPtr Option, IntPtr Value); - [DllImport("MediaInfo.dll")] + [DllImport("..\\..\\MediaInfo.dll")] private static extern IntPtr MediaInfo_State_Get(IntPtr Handle); - [DllImport("MediaInfo.dll")] + [DllImport("..\\..\\MediaInfo.dll")] private static extern IntPtr MediaInfo_Count_Get(IntPtr Handle, IntPtr StreamKind, IntPtr StreamNumber); //MediaInfo class @@ -261,25 +261,25 @@ public class MediaInfoList { //Import of DLL functions. DO NOT USE until you know what you do (MediaInfo DLL do NOT use CoTaskMemAlloc to allocate memory) - [DllImport("MediaInfo.dll")] + [DllImport("..\\..\\MediaInfo.dll")] private static extern IntPtr MediaInfoList_New(); - [DllImport("MediaInfo.dll")] + [DllImport("..\\..\\MediaInfo.dll")] private static extern void MediaInfoList_Delete(IntPtr Handle); - [DllImport("MediaInfo.dll")] + [DllImport("..\\..\\MediaInfo.dll")] private static extern IntPtr MediaInfoList_Open(IntPtr Handle, [MarshalAs(UnmanagedType.LPWStr)] string FileName, IntPtr Options); - [DllImport("MediaInfo.dll")] + [DllImport("..\\..\\MediaInfo.dll")] private static extern void MediaInfoList_Close(IntPtr Handle, IntPtr FilePos); - [DllImport("MediaInfo.dll")] + [DllImport("..\\..\\MediaInfo.dll")] private static extern IntPtr MediaInfoList_Inform(IntPtr Handle, IntPtr FilePos, IntPtr Reserved); - [DllImport("MediaInfo.dll")] + [DllImport("..\\..\\MediaInfo.dll")] private static extern IntPtr MediaInfoList_GetI(IntPtr Handle, IntPtr FilePos, IntPtr StreamKind, IntPtr StreamNumber, IntPtr Parameter, IntPtr KindOfInfo); - [DllImport("MediaInfo.dll")] + [DllImport("..\\..\\MediaInfo.dll")] private static extern IntPtr MediaInfoList_Get(IntPtr Handle, IntPtr FilePos, IntPtr StreamKind, IntPtr StreamNumber, [MarshalAs(UnmanagedType.LPWStr)] string Parameter, IntPtr KindOfInfo, IntPtr KindOfSearch); - [DllImport("MediaInfo.dll")] + [DllImport("..\\..\\MediaInfo.dll")] private static extern IntPtr MediaInfoList_Option(IntPtr Handle, [MarshalAs(UnmanagedType.LPWStr)] string Option, [MarshalAs(UnmanagedType.LPWStr)] string Value); - [DllImport("MediaInfo.dll")] + [DllImport("..\\..\\MediaInfo.dll")] private static extern IntPtr MediaInfoList_State_Get(IntPtr Handle); - [DllImport("MediaInfo.dll")] + [DllImport("..\\..\\MediaInfo.dll")] private static extern IntPtr MediaInfoList_Count_Get(IntPtr Handle, IntPtr FilePos, IntPtr StreamKind, IntPtr StreamNumber); //MediaInfo class Modified: trunk/plugins/Burner/trunk/Burner/MenuGenerator.cs =================================================================== --- trunk/plugins/Burner/trunk/Burner/MenuGenerator.cs 2011-06-14 11:05:06 UTC (rev 4253) +++ trunk/plugins/Burner/trunk/Burner/MenuGenerator.cs 2011-06-14 17:26:27 UTC (rev 4254) @@ -28,15 +28,8 @@ AllFinished = 6 } - /* private enum MenuSteps - { - GenBackground = 0, - Buttons = 1, - Text = 2 - }*/ + #endregion - #endregion - # region Class Variables private Process MGProcess; // Will run the external processes in another thread @@ -46,8 +39,6 @@ private List<string> _SubMenuStr; // 'Main menu','Play Show','Episodes' private bool _InDebugMode; // true if in debug mode private MenuGenarationState _MenuGenState; // States for whole menu generation - // private MenuSteps _CurMenuSteps; // states for current menu (sub or main) - // private int _curNum; // will hold number of current show private bool _AllFinished; // will be true when all submenus will be finished private Image menuBackground; // will store background image private Image Button; // will store button image for menus @@ -72,7 +63,6 @@ _ShowNames = ShowNames; _SubMenuStr = SubMenuStr; _InDebugMode = DebugMode; -// _curNum = 0; _MenuGenState = MenuGenarationState.MainMenuGen; Modified: trunk/plugins/Burner/trunk/Burner/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/Burner/trunk/Burner/Properties/AssemblyInfo.cs 2011-06-14 11:05:06 UTC (rev 4253) +++ trunk/plugins/Burner/trunk/Burner/Properties/AssemblyInfo.cs 2011-06-14 17:26:27 UTC (rev 4254) @@ -15,7 +15,7 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Burner")] -[assembly: AssemblyCopyright("Copyright © 2010")] +[assembly: AssemblyCopyright("Copyright © 2011")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] Deleted: trunk/plugins/Burner/trunk/MediaInfo.dll =================================================================== (Binary files differ) Modified: trunk/plugins/Burner/trunk/TODO.txt =================================================================== --- trunk/plugins/Burner/trunk/TODO.txt 2011-06-14 11:05:06 UTC (rev 4253) +++ trunk/plugins/Burner/trunk/TODO.txt 2011-06-14 17:26:27 UTC (rev 4254) @@ -1,47 +1,4 @@ -1. Background generation - gm.exe convert -resize 720x576! "I:\Documents and Settings\All Users\Application Data\Team MediaPortal\MediaPortal\Skin\DefaultWide\media\background.png" "I:\temp\DVD\menuBackground.png" -# TODO: Add background image selection - -2. Generating Main Menu Nav Buttons - gm.exe convert -quality 100 -size "720x576" xc:transparent "I:\temp\DVD\navButtonStamp.png" // \xEF\xF0\xEE\xE7\xF0\xE0\xF7\xED\xFB\xE9 \xEB\xE8\xF1\xF2 - gm.exe composite -geometry +60+42 -filter Point -resize "50x" "I:\Program Files\Team MediaPortal\MediaPortal\Burner\navButton.png" "I:\temp\DVD\navButtonStamp.png" "I:\temp\DVD\navButtonStamp.png" - // \xE4\xEE\xE1\xE0\xE2\xEB\xE5\xED\xE8\xE5 "\xF1\xF2\xF0\xE5\xEB\xEE\xF7\xE5\xEA" \xED\xE0 \xEF\xF0\xEE\xE7\xF0\xE0\xF7\xED\xFB\xE9 \xEB\xE8\xF1\xF2 -# NOTE: Move every next nav_button to 55 pix on y - -3. Generating Sub Menu Nav Buttons - gm.exe convert -quality 100 -size "720x576" xc:transparent "I:\temp\DVD\subMenuNavButtonStamp.png" // \xEF\xF0\xEE\xE7\xF0\xE0\xF7\xED\xFB\xE9 \xEB\xE8\xF1\xF2 \xE4\xEB\xFF \xF1\xF3\xE1 \xEC\xE5\xED\xFE - gm.exe composite -geometry +60+317 -filter Point -resize "50x" "I:\Program Files\Team MediaPortal\MediaPortal\Burner\navButton.png" "I:\temp\DVD\subMenuNavButtonStamp.png" "I:\temp\DVD\subMenuNavButtonStamp.png" - gm.exe composite -geometry +60+372 -filter Point -resize "50x" "I:\Program Files\Team MediaPortal\MediaPortal\Burner\navButton.png" "I:\temp\DVD\subMenuNavButtonStamp.png" "I:\temp\DVD\subMenuNavButtonStamp.png" - // \xE4\xEE\xE1\xE0\xE2\xEB\xE5\xED\xE8\xE5 "\xF1\xF2\xF0\xE5\xEB\xEE\xF7\xE5\xEA" \xED\xE0 \xEF\xF0\xEE\xE7\xF0\xE0\xF7\xED\xFB\xE9 \xEB\xE8\xF1\xF2 -# TODO: Unnessesary to generate it every time. We could store it in %Skin%\Media\Burner folder - -4. Generating Submenu Template - gm.exe composite -resize 720x576! "menuBackground.png" "subMenuNoBackground.png" "I:\temp\DVD\subMenuBackgroundTemplate.png" - gm.exe convert -quality 100 -size "720x576" xc:transparent -font "C:\WINDOWS\Fonts\tahomabd.ttf" -pointsize 28 -fill white -draw "text 110,357 'Play Show'" "I:\temp\DVD\stamp.png" - gm.exe convert -quality 100 -size "720x576" xc:transparent -font "C:\WINDOWS\Fonts\tahomabd.ttf" -pointsize 28 -fill white -draw "text 100,412 'Main Menu'" "I:\temp\DVD\stamp.png" -# TODO: Add posibility to change 'Play Show' and 'Main menu' text - // \xED\xE0\xEB\xEE\xE6\xE5\xED\xE8\xE5 \xED\xE0\xE4\xEF\xE8\xF1\xE5\xE9 "Main menu" \xE8 "Play Show" - -5. Generating Submenus( should be done for every file in list) - gm.exe convert -quality 100 -size "720x576" xc:transparent -font "C:\WINDOWS\Fonts\tahomabd.ttf" -pointsize 22 -fill white -draw "text +130+130 'Series: \xD5\xEB\xE5\xE1\xF6\xFB \xF5\xF0\xF3\xF1\xF2\xFF\xF9\xE8\xE5 Episode: '" "I:\temp\DVD\stamp.png" -# TODO: Add posibility to change text - gm.exe composite -quality 100 "I:\temp\DVD\stamp.png" "I:\temp\DVD\subMenuBackgroundTemplate.png" "I:\temp\DVD\subMenuBackground.0.png" - png2yuv.exe" -n 30 -I p -f 25 -j "I:\temp\DVD\subMenuBackground.0.png" | "I:\Program Files\Team MediaPortal\MediaPortal\Burner\mpeg2enc.exe" -n p -f 8 -o "I:\temp\DVD\subMenuBackground.0.m2v" - mplex.exe" -f 8 -o "I:\temp\DVD\subMenuBackground.0.menu_temp.mpg" "I:\temp\DVD\subMenuBackground.0.m2v" "I:\Program Files\Team MediaPortal\MediaPortal\Burner\Silence.ac3" - -6. Spumux generation -# generate subMenuBackground.0.menu.config.xml for every movie in list -# generate menuBackground.menu.config.xml for main menu - spumux.exe -v 1 "I:\temp\DVD\subMenuBackground.0.menu.config.xml" < "I:\temp\DVD\subMenuBackground.0.menu_temp.mpg" > "I:\temp\DVD\subMenuBackground.0.menu.mpg" - -7. Main menu template generation - gm.exe composite -dissolve 100% -geometry +535+100 -resize "175x" "I:\Documents and Settings\All Users\Application Data\Team MediaPortal\MediaPortal\Skin\DefaultWide\media\hp_start.png" "I:\temp\DVD\menuBackground.png" "I:\temp\DVD\menuBackground.png" - gm.exe composite -dissolve 100% -geometry +535+250 -resize "175x" "I:\Documents and Settings\All Users\Application Data\Team MediaPortal\MediaPortal\Skin\DefaultWide\media\hover_my videos.png" "I:\temp\DVD\menuBackground.png" "I:\temp\DVD\menuBackground.png" - gm.exe composite -dissolve 100% -geometry +65+50 -resize 450x50! "I:\Documents and Settings\All Users\Application Data\Team MediaPortal\MediaPortal\Skin\DefaultWide\media\button_green_focus_165x32.png" "I:\temp\DVD\menuBackground.png" "I:\temp\DVD\menuBackground.png" -# TODO: Add background image selection - -8. Add text with file names on main menu background - gm.exe convert -quality 100 -size "720x576" xc:transparent -font "C:\WINDOWS\Fonts\tahomabd.ttf" -pointsize 19 -fill white -draw "text 100,69 ' \xD5\xEB\xE5\xE1\xF6\xFB \xF5\xF0\xF3\xF1\xF2\xFF\xF9\xE8\xE5'" "I:\temp\DVD\stamp.png" - gm.exe composite -quality 100 "I:\temp\DVD\stamp.png" "I:\temp\DVD\menuBackground.png" "I:\temp\DVD\menuBackground.png" - gm.exe convert -quality 100 -size "720x576" xc:transparent -font "C:\WINDOWS\Fonts\tahomabd.ttf" -pointsize 19 -fill white -draw "text 109,91 ''" "I:\temp\DVD\stamp.png" - gm.exe composite -quality 100 "I:\temp\DVD\stamp.png" "I:\temp\DVD\menuBackground.png" "I:\temp\DVD\menuBackground.png" \ No newline at end of file ++ Plugin maker: remove MediaInfo.dll ++ Plugin maker: remove unneeded dependencies ++ Make screen with background choosing ++ Make screen with selection of bitrate \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ro...@us...> - 2011-06-21 20:07:52
|
Revision: 4255 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=4255&view=rev Author: rolenof Date: 2011-06-21 20:07:41 +0000 (Tue, 21 Jun 2011) Log Message: ----------- Release 1.1.0.18 + Added dialog for DVD menu modification + Added option to change bitrate, now you can place on single DVD up to 6 hours of video + Rewritten process of menu generation for more control on this process + Now you don't need to install windows package with dvdburn.exe + A lot of minor changes 14.06.2011 i moved burner to burner-for-mp.googlecode.com, and ther is a bug tracker, so i'm waiting for your feedback Modified Paths: -------------- trunk/plugins/Burner/MpeRelease/update.xml trunk/plugins/Burner/burner.xmp2 trunk/plugins/Burner/dep/Burner.7z trunk/plugins/Burner/trunk/Burner/BurnVideoDVD.cs trunk/plugins/Burner/trunk/Burner/Burner.csproj trunk/plugins/Burner/trunk/Burner/GUIBurner.cs trunk/plugins/Burner/trunk/Burner/MediaInfoDLL.cs trunk/plugins/Burner/trunk/Burner/MenuGenerator.cs trunk/plugins/Burner/trunk/Burner/SetupForm.cs trunk/plugins/Burner/trunk/Skin/Blue3/myburner.xml trunk/plugins/Burner/trunk/Skin/Blue3wide/myburner.xml Added Paths: ----------- trunk/plugins/Burner/MpeRelease/Burner_1.1.0.18.mpe1 trunk/plugins/Burner/trunk/BitRate.txt trunk/plugins/Burner/trunk/Burner/GUIBurnerVideoMod.cs trunk/plugins/Burner/trunk/MediaInfo.dll trunk/plugins/Burner/trunk/Skin/Blue3/myburner.videomod.xml trunk/plugins/Burner/trunk/Skin/Blue3wide/myburner.videomod.xml trunk/plugins/Burner/trunk/burner.xmp2 Removed Paths: ------------- trunk/plugins/Burner/dep/Burner/colors.mgk trunk/plugins/Burner/dep/Burner/magic.mgk trunk/plugins/Burner/dep/Burner/modules.mgk trunk/plugins/Burner/dep/Burner/type-ghostscript.mgk trunk/plugins/Burner/dep/Burner/type-solaris.mgk trunk/plugins/Burner/dep/Burner/type-windows.mgk trunk/plugins/Burner/dep/Burner/type.mgk Added: trunk/plugins/Burner/MpeRelease/Burner_1.1.0.18.mpe1 =================================================================== (Binary files differ) Property changes on: trunk/plugins/Burner/MpeRelease/Burner_1.1.0.18.mpe1 ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Modified: trunk/plugins/Burner/MpeRelease/update.xml =================================================================== --- trunk/plugins/Burner/MpeRelease/update.xml 2011-06-14 17:26:27 UTC (rev 4254) +++ trunk/plugins/Burner/MpeRelease/update.xml 2011-06-21 20:07:41 UTC (rev 4255) @@ -231,5 +231,126 @@ <FolderGroups /> </ProjectSettings> </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="Skin"> + <DisplayName>Skin</DisplayName> + <DefaulChecked>true</DefaulChecked> + <Description>Skin</Description> + <Files> + <Items /> + </Files> + </GroupItem> + <GroupItem Name="support"> + <DisplayName>support</DisplayName> + <DefaulChecked>true</DefaulChecked> + <Description>support</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>0</Build> + <Revision>6</Revision> + </MinVersion> + <MaxVersion> + <Major>1</Major> + <Minor>1</Minor> + <Build>0</Build> + <Revision>6</Revision> + </MaxVersion> + <WarnOnly>true</WarnOnly> + <Message>Need version of MediaPortal with version 1.1.0.6</Message> + <Name>MediaPortal</Name> + </DependencyItem> + </Items> + </Dependencies> + <GeneralInfo> + <Name>Burner</Name> + <Id>df4d06b5-b67b-413a-86de-3d161b2ae3d6</Id> + <Author>Mat, MP team, Sergey Filippov</Author> + <HomePage>burner-for-mp.googlecode.com</HomePage> + <ForumPage>http://forum.team-mediaportal.com/mediaportal-plugins-47/plugin-burner-97106/</ForumPage> + <UpdateUrl>https://mp-plugins.svn.sourceforge.net/svnroot/mp-plugins/trunk/plugins/Burner/MpeRelease/update.xml</UpdateUrl> + <Version> + <Major>1</Major> + <Minor>1</Minor> + <Build>0</Build> + <Revision>18</Revision> + </Version> + <ExtensionDescription>Burner will allow you to burn audio, video and data CDs and DVDs</ExtensionDescription> + <VersionDescription>+ Added dialog for DVD menu modification ++ Added option to change bitrate, now you can place on single DVD up to 6 hours of video ++ Rewritten process of menu generation for more control on this process ++ Now you don't need to install windows package with dvdburn.exe ++ A lot of minor changes + +14.06.2011 i moved burner to burner-for-mp.googlecode.com, and ther is a bug tracker, so i'm waiting for your feedback</VersionDescription> + <DevelopmentStatus>Stable</DevelopmentStatus> + <OnlineLocation>https://mp-plugins.svn.sourceforge.net/svnroot/mp-plugins/trunk/plugins/Burner/MpeRelease/Burner_1.0.0.4223.mpe1</OnlineLocation> + <ReleaseDate>2011-06-21T19:33:19</ReleaseDate> + <Tags>burn dvd cd</Tags> + <Location>I:\MP-Burner\MpeRelease\Burner_1.1.0.18.mpe1</Location> + <Params> + <Items> + <SectionParam Name="Icon"> + <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 have .exe extension the will be executed + If have .dll extension used like MP plugin configuration</Description> + </SectionParam> + <SectionParam Name="Online Screenshots"> + <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> + </PackageClass> </Items> </ExtensionCollection> \ No newline at end of file Modified: trunk/plugins/Burner/burner.xmp2 =================================================================== --- trunk/plugins/Burner/burner.xmp2 2011-06-14 17:26:27 UTC (rev 4254) +++ trunk/plugins/Burner/burner.xmp2 2011-06-21 20:07:41 UTC (rev 4255) @@ -13,23 +13,23 @@ <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>trunk\Burner\bin\Debug\Burner.dll</LocalFileName> + <LocalFileName>Burner\bin\Debug\Burner.dll</LocalFileName> <ZipFileName>Installer{CopyFile}\{c7900b3d-1d84-4a2b-9e4c-114e53898590}-Burner.dll</ZipFileName> - <DestinationFilename>%Plugins%\Windows\Burner.dll</DestinationFilename> + <DestinationFilename>%Base%\Burner.dll</DestinationFilename> </FileItem> <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>trunk\Burner\bin\Debug\XPBurnComponent.dll</LocalFileName> + <LocalFileName>Burner\bin\Debug\XPBurnComponent.dll</LocalFileName> <ZipFileName>Installer{CopyFile}\{235a2607-49ec-4fde-a2a4-1c002606ee3c}-XPBurnComponent.dll</ZipFileName> - <DestinationFilename>%Plugins%\Windows\XPBurnComponent.dll</DestinationFilename> + <DestinationFilename>%Base%\XPBurnComponent.dll</DestinationFilename> </FileItem> <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>trunk\MediaInfo.dll</LocalFileName> + <LocalFileName>MediaInfo.dll</LocalFileName> <ZipFileName>Installer{CopyFile}\{97205b23-774c-4606-99a6-3b8b6d9ec9fe}-MediaInfo.dll</ZipFileName> - <DestinationFilename>%Plugins%\Windows\MediaInfo.dll</DestinationFilename> + <DestinationFilename>%Base%\Burner\MediaInfo.dll</DestinationFilename> </FileItem> </Items> </Files> @@ -44,58 +44,58 @@ <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>trunk\Skin\Blue3\myburner.xml</LocalFileName> + <LocalFileName>Skin\Blue3\myburner.xml</LocalFileName> <ZipFileName>Installer{CopyFile}\{a402e729-251c-4784-ac30-0ee473c5bf09}-myburner.xml</ZipFileName> <DestinationFilename>%Skin%\default\myburner.xml</DestinationFilename> </FileItem> <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>trunk\Skin\Blue3\Media\burn_logo.png</LocalFileName> + <LocalFileName>Skin\Blue3\Media\burn_logo.png</LocalFileName> <ZipFileName>Installer{CopyFile}\{3e39958d-dda9-4c9e-a77d-48e056024de6}-burn_logo.png</ZipFileName> <DestinationFilename>%Skin%\default\Media\burn_logo.png</DestinationFilename> </FileItem> <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>trunk\Skin\Blue3\Media\hover_my burner.png</LocalFileName> + <LocalFileName>Skin\Blue3\Media\hover_my burner.png</LocalFileName> <ZipFileName>Installer{CopyFile}\{f6d4ad48-0571-47fc-8d43-eadd8d2a941d}-hover_my burner.png</ZipFileName> - <DestinationFilename>%Skin%\Default\Media\hover_my burner.png</DestinationFilename> + <DestinationFilename>%Skin%\default\Media\hover_my burner.png</DestinationFilename> </FileItem> <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>trunk\Skin\Blue3\Media\burn_logo.png</LocalFileName> - <ZipFileName>Installer{CopyFile}\{981bb0a7-570a-4df7-a3c8-0eb66690ddb1}-burn_logo.png</ZipFileName> - <DestinationFilename>%Skin%\Default\burn_logo.png</DestinationFilename> + <LocalFileName>Skin\Blue3wide\myburner.xml</LocalFileName> + <ZipFileName>Installer{CopyFile}\{72f407d6-cbd8-4b5a-8b0d-14adbdb38b2c}-myburner.xml</ZipFileName> + <DestinationFilename>%Skin%\DefaultWide\myburner.xml</DestinationFilename> </FileItem> <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>trunk\Skin\Blue3\Media\hover_my burner.png</LocalFileName> - <ZipFileName>Installer{CopyFile}\{c21c4baf-870b-4df7-9323-3d432aed7493}-hover_my burner.png</ZipFileName> - <DestinationFilename>%Skin%\Default\hover_my burner.png</DestinationFilename> + <LocalFileName>Skin\Blue3wide\Media\burn_logo.png</LocalFileName> + <ZipFileName>Installer{CopyFile}\{c0974068-6e38-44c4-b92f-0e9343a26a36}-burn_logo.png</ZipFileName> + <DestinationFilename>%Skin%\DefaultWide\Media\burn_logo.png</DestinationFilename> </FileItem> <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>trunk\Skin\Blue3wide\myburner.xml</LocalFileName> - <ZipFileName>Installer{CopyFile}\{72f407d6-cbd8-4b5a-8b0d-14adbdb38b2c}-myburner.xml</ZipFileName> - <DestinationFilename>%Skin%\DefaultWide\myburner.xml</DestinationFilename> + <LocalFileName>Skin\Blue3wide\Media\hover_my burner.png</LocalFileName> + <ZipFileName>Installer{CopyFile}\{125af905-c6e4-4f74-a5e2-87297c53a547}-hover_my burner.png</ZipFileName> + <DestinationFilename>%Skin%\DefaultWide\Media\hover_my burner.png</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>trunk\Skin\Blue3wide\Media\burn_logo.png</LocalFileName> - <ZipFileName>Installer{CopyFile}\{c0974068-6e38-44c4-b92f-0e9343a26a36}-burn_logo.png</ZipFileName> - <DestinationFilename>%Skin%\DefaultWide\Media\burn_logo.png</DestinationFilename> + <LocalFileName>Skin\Blue3\myburner.videomod.xml</LocalFileName> + <ZipFileName>Installer{CopyFile}\{5adfff34-8877-4742-ab9c-be9d6149a65b}-myburner.videomod.xml</ZipFileName> + <DestinationFilename>%Skin%\default\myburner.videomod.xml</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>trunk\Skin\Blue3wide\Media\hover_my burner.png</LocalFileName> - <ZipFileName>Installer{CopyFile}\{125af905-c6e4-4f74-a5e2-87297c53a547}-hover_my burner.png</ZipFileName> - <DestinationFilename>%Skin%\DefaultWide\Media\hover_my burner.png</DestinationFilename> + <LocalFileName>Skin\Blue3wide\myburner.videomod.xml</LocalFileName> + <ZipFileName>Installer{CopyFile}\{c60b0bea-bf99-42d0-9008-d94b31407cdc}-myburner.videomod.xml</ZipFileName> + <DestinationFilename>%Skin%\DefaultWide\myburner.videomod.xml</DestinationFilename> </FileItem> </Items> </Files> @@ -106,340 +106,221 @@ <Description>support</Description> <Files> <Items> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\burn.bat</LocalFileName> - <ZipFileName>Installer{CopyFile}\{a97fa310-4391-4a1a-92a5-f818e68f300e}-burn.bat</ZipFileName> - <DestinationFilename>%Base%\Burner\burn.bat</DestinationFilename> + <LocalFileName>..\dep\Burner\cygfreetype-6.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{7ff967a6-691b-4777-8d99-6bf4379ce848}-cygfreetype-6.dll</ZipFileName> + <DestinationFilename>%Base%\Burner\cygfreetype-6.dll</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\colors.mgk</LocalFileName> - <ZipFileName>Installer{CopyFile}\{00a57a68-2841-407a-82f3-af3861bf3a51}-colors.mgk</ZipFileName> - <DestinationFilename>%Base%\Burner\colors.mgk</DestinationFilename> + <LocalFileName>..\dep\Burner\cyggcc_s-1.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{3b2171ad-4524-4c2e-ba48-5aa7aa3e5b42}-cyggcc_s-1.dll</ZipFileName> + <DestinationFilename>%Base%\Burner\cyggcc_s-1.dll</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygfreetype-6.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{63aac570-b5f3-4e72-926f-51bfdc243a16}-cygfreetype-6.dll</ZipFileName> - <DestinationFilename>%Base%\Burner\cygfreetype-6.dll</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygiconv-2.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{80b8ed33-e3db-4a9f-953b-6fbb11d87f53}-cygiconv-2.dll</ZipFileName> + <LocalFileName>..\dep\Burner\cygiconv-2.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{07d5e6b7-ddb3-4680-a4b4-79c487e876ed}-cygiconv-2.dll</ZipFileName> <DestinationFilename>%Base%\Burner\cygiconv-2.dll</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygintl-1.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{c8141136-d7e6-48a1-a49c-8abfaa696078}-cygintl-1.dll</ZipFileName> + <LocalFileName>..\dep\Burner\cygintl-1.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{7fd92aa8-93bf-44ea-81cc-dfba2469133e}-cygintl-1.dll</ZipFileName> <DestinationFilename>%Base%\Burner\cygintl-1.dll</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygjasper-1-701-1.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{a3a46c45-a99e-4010-b733-7c1dfd741774}-cygjasper-1-701-1.dll</ZipFileName> + <LocalFileName>..\dep\Burner\cygjasper-1-701-1.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{db30989d-42a5-48af-961b-b4389c043988}-cygjasper-1-701-1.dll</ZipFileName> <DestinationFilename>%Base%\Burner\cygjasper-1-701-1.dll</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygjpeg6b.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{d533b2ba-c101-4671-8bbf-66a0f3362d79}-cygjpeg6b.dll</ZipFileName> - <DestinationFilename>%Base%\Burner\cygjpeg6b.dll</DestinationFilename> + <LocalFileName>..\dep\Burner\cygjpeg-62.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{5d4589ab-abde-4402-a1ac-0b2dea240c73}-cygjpeg-62.dll</ZipFileName> + <DestinationFilename>%Base%\Burner\cygjpeg-62.dll</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygjpeg-62.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{cc600eb2-fbb6-47d5-a9ea-0c31c986fe1d}-cygjpeg-62.dll</ZipFileName> - <DestinationFilename>%Base%\Burner\cygjpeg-62.dll</DestinationFilename> + <LocalFileName>..\dep\Burner\cygjpeg6b.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{5ef42ff1-81e9-43a8-9df4-f30105cf0b60}-cygjpeg6b.dll</ZipFileName> + <DestinationFilename>%Base%\Burner\cygjpeg6b.dll</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygpng12.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{184788b9-08f1-4a85-bdd6-bcafdcd69191}-cygpng12.dll</ZipFileName> + <LocalFileName>..\dep\Burner\cygpng12.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{0d5df643-849e-4242-bec0-33894a06ed95}-cygpng12.dll</ZipFileName> <DestinationFilename>%Base%\Burner\cygpng12.dll</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygwin1.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{20d890ae-107c-4655-9851-7a3b06bd55de}-cygwin1.dll</ZipFileName> + <LocalFileName>..\dep\Burner\cygwin1.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{21feaf48-e649-46df-9507-99a05c3a57ea}-cygwin1.dll</ZipFileName> <DestinationFilename>%Base%\Burner\cygwin1.dll</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygwmflite-0-2-7.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{39626cfd-9086-49fe-a871-91c41eb027a5}-cygwmflite-0-2-7.dll</ZipFileName> + <LocalFileName>..\dep\Burner\cygwmflite-0-2-7.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{09da92a3-346e-4607-8b3c-7ee246f5113d}-cygwmflite-0-2-7.dll</ZipFileName> <DestinationFilename>%Base%\Burner\cygwmflite-0-2-7.dll</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygxml2-2.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{749bb2dc-7047-46d1-9cde-629b70cfe542}-cygxml2-2.dll</ZipFileName> + <LocalFileName>..\dep\Burner\cygxml2-2.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{68a7dcab-a97b-49fa-959b-2c02640d304e}-cygxml2-2.dll</ZipFileName> <DestinationFilename>%Base%\Burner\cygxml2-2.dll</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygz.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{00f68d4f-cc18-42ea-812a-004a84e0025f}-cygz.dll</ZipFileName> + <LocalFileName>..\dep\Burner\cygz.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{e9296987-d17c-489d-939b-0509dc983ad6}-cygz.dll</ZipFileName> <DestinationFilename>%Base%\Burner\cygz.dll</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\dvd.bat</LocalFileName> - <ZipFileName>Installer{CopyFile}\{af682c06-8fcf-48d2-8f93-1d21d5acfd53}-dvd.bat</ZipFileName> - <DestinationFilename>%Base%\Burner\dvd.bat</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\dvdauthor.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{8fe90035-e2d8-4f2c-b8a9-c6d34d28220d}-dvdauthor.exe</ZipFileName> + <LocalFileName>..\dep\Burner\dvdauthor.exe</LocalFileName> + <ZipFileName>Installer{CopyFile}\{24038bc2-8e27-47f0-a18c-51f97c4e5253}-dvdauthor.exe</ZipFileName> <DestinationFilename>%Base%\Burner\dvdauthor.exe</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\gm.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{f7b8f022-56c9-4889-977b-de39b66bcd40}-gm.exe</ZipFileName> - <DestinationFilename>%Base%\Burner\gm.exe</DestinationFilename> + <LocalFileName>..\dep\Burner\imagequ.exe</LocalFileName> + <ZipFileName>Installer{CopyFile}\{0a7a0cf2-518e-4a53-b403-33318f96cbb8}-imagequ.exe</ZipFileName> + <DestinationFilename>%Base%\Burner\imagequ.exe</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\iso.bat</LocalFileName> - <ZipFileName>Installer{CopyFile}\{7437a816-608a-490c-ab25-4fb85c2fb44a}-iso.bat</ZipFileName> - <DestinationFilename>%Base%\Burner\iso.bat</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\jpeg2yuv.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{1cc6e5df-d801-4fa2-8bf2-d0cb13f64779}-jpeg2yuv.exe</ZipFileName> - <DestinationFilename>%Base%\Burner\jpeg2yuv.exe</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\libpng12.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{8750c4b9-7d12-4fc2-b07f-8b3db21fbaf7}-libpng12.dll</ZipFileName> + <LocalFileName>..\dep\Burner\libpng12.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{5434b30f-c46c-475c-aa2f-522c41106d5b}-libpng12.dll</ZipFileName> <DestinationFilename>%Base%\Burner\libpng12.dll</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\libz.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{aecf2909-d815-4897-b9a1-a79a2a109b62}-libz.dll</ZipFileName> + <LocalFileName>..\dep\Burner\libz.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{1b2469f5-6fea-4494-b90a-4d2914723ce6}-libz.dll</ZipFileName> <DestinationFilename>%Base%\Burner\libz.dll</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\magic.mgk</LocalFileName> - <ZipFileName>Installer{CopyFile}\{da7b297a-769d-4b9e-965e-b7d3dcc74d3a}-magic.mgk</ZipFileName> - <DestinationFilename>%Base%\Burner\magic.mgk</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\mat.bat</LocalFileName> - <ZipFileName>Installer{CopyFile}\{7914d306-881d-447b-b8a3-8577e8b332ea}-mat.bat</ZipFileName> - <DestinationFilename>%Base%\Burner\mat.bat</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\mencoder.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{1b852037-c008-4051-932d-6a31d1733dc1}-mencoder.exe</ZipFileName> + <LocalFileName>..\dep\Burner\mencoder.exe</LocalFileName> + <ZipFileName>Installer{CopyFile}\{38e2253a-68af-4254-ac31-d71af885125f}-mencoder.exe</ZipFileName> <DestinationFilename>%Base%\Burner\mencoder.exe</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\mencoder_copy.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{051a0375-631a-49ee-baa8-91f91a48a6a0}-mencoder_copy.exe</ZipFileName> - <DestinationFilename>%Base%\Burner\mencoder_copy.exe</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\menuGen.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{e5907668-6c35-4745-a079-886e24490e68}-menuGen.exe</ZipFileName> - <DestinationFilename>%Base%\Burner\menuGen.exe</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\mkisofs.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{a7c0ea63-4fd2-43fb-91e0-d86862a0e996}-mkisofs.exe</ZipFileName> + <LocalFileName>..\dep\Burner\mkisofs.exe</LocalFileName> + <ZipFileName>Installer{CopyFile}\{f769cb05-e0b9-43cc-9bae-b7b5f187bb6a}-mkisofs.exe</ZipFileName> <DestinationFilename>%Base%\Burner\mkisofs.exe</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\modules.mgk</LocalFileName> - <ZipFileName>Installer{CopyFile}\{7b0b4eda-33b0-42fe-90a5-a0d27942ff2d}-modules.mgk</ZipFileName> - <DestinationFilename>%Base%\Burner\modules.mgk</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\mpeg2desc.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{f31ef279-fb02-4960-83a8-9bc594336e5b}-mpeg2desc.exe</ZipFileName> - <DestinationFilename>%Base%\Burner\mpeg2desc.exe</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\mpeg2enc.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{2aa34912-d4f4-463c-912f-f5bd4faa4e23}-mpeg2enc.exe</ZipFileName> + <LocalFileName>..\dep\Burner\mpeg2enc.exe</LocalFileName> + <ZipFileName>Installer{CopyFile}\{bacf02f3-e961-49b3-aab3-3205dbda179a}-mpeg2enc.exe</ZipFileName> <DestinationFilename>%Base%\Burner\mpeg2enc.exe</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\mpgtx.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{0d4020e1-80c2-448e-8d39-9ee17c906a8f}-mpgtx.exe</ZipFileName> - <DestinationFilename>%Base%\Burner\mpgtx.exe</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\mplex.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{ad6cf692-825f-4fcf-a13d-b7a2d2d00761}-mplex.exe</ZipFileName> + <LocalFileName>..\dep\Burner\mplex.exe</LocalFileName> + <ZipFileName>Installer{CopyFile}\{e77ea0df-001d-4c99-9060-a21a58cc1ca3}-mplex.exe</ZipFileName> <DestinationFilename>%Base%\Burner\mplex.exe</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\msvcp60.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{2d0db5aa-29e1-46e9-9805-a0c64445dadb}-msvcp60.dll</ZipFileName> + <LocalFileName>..\dep\Burner\msvcp60.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{5f00a660-3b24-45f0-a889-abaa4be1a7ef}-msvcp60.dll</ZipFileName> <DestinationFilename>%Base%\Burner\msvcp60.dll</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\msvcrt.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{f509be8f-b184-4812-8938-80ce63b369e6}-msvcrt.dll</ZipFileName> + <LocalFileName>..\dep\Burner\msvcrt.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{95bb069e-3721-44c3-9fe1-e67ed1496b13}-msvcrt.dll</ZipFileName> <DestinationFilename>%Base%\Burner\msvcrt.dll</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\navButton.png</LocalFileName> - <ZipFileName>Installer{CopyFile}\{ac45474c-aaea-42dc-817f-8448b069314a}-navButton.png</ZipFileName> + <LocalFileName>..\dep\Burner\navButton.png</LocalFileName> + <ZipFileName>Installer{CopyFile}\{3c4fe971-a703-4b29-91d0-abc0228f23a6}-navButton.png</ZipFileName> <DestinationFilename>%Base%\Burner\navButton.png</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\png2yuv.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{6713095f-903e-4079-b87a-6e7add18020c}-png2yuv.exe</ZipFileName> + <LocalFileName>..\dep\Burner\png2yuv.exe</LocalFileName> + <ZipFileName>Installer{CopyFile}\{1abc2e19-590c-4fcf-8d6e-0f4fee275a4c}-png2yuv.exe</ZipFileName> <DestinationFilename>%Base%\Burner\png2yuv.exe</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\pthreadGC2.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{d0c65997-dec4-4361-95a0-a67493cd5394}-pthreadGC2.dll</ZipFileName> + <LocalFileName>..\dep\Burner\pthreadGC2.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{4474058d-5ab3-4968-9fc2-1de00a28fc55}-pthreadGC2.dll</ZipFileName> <DestinationFilename>%Base%\Burner\pthreadGC2.dll</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\pxsup2dast.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{aecd67ee-ac32-4d2c-8ac0-8a688b76ebda}-pxsup2dast.exe</ZipFileName> - <DestinationFilename>%Base%\Burner\pxsup2dast.exe</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\scanbus.bat</LocalFileName> - <ZipFileName>Installer{CopyFile}\{6c6b8a29-d0fc-4fd9-82b0-6d178d912283}-scanbus.bat</ZipFileName> - <DestinationFilename>%Base%\Burner\scanbus.bat</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\Silence.ac3</LocalFileName> - <ZipFileName>Installer{CopyFile}\{f0c686af-c79e-4cb5-830d-4ba2b81f6e47}-Silence.ac3</ZipFileName> + <LocalFileName>..\dep\Burner\Silence.ac3</LocalFileName> + <ZipFileName>Installer{CopyFile}\{c604f3a6-cf5e-40c8-8ab0-9348d413cd7b}-Silence.ac3</ZipFileName> <DestinationFilename>%Base%\Burner\Silence.ac3</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\spumux.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{a69476af-a41e-43c4-b733-b19c77572187}-spumux.exe</ZipFileName> + <LocalFileName>..\dep\Burner\spumux.exe</LocalFileName> + <ZipFileName>Installer{CopyFile}\{c64cea2c-1ac8-46f7-b6a5-fc6210bc5d86}-spumux.exe</ZipFileName> <DestinationFilename>%Base%\Burner\spumux.exe</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\spuunmux.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{08033507-92a5-47b1-9571-0c0c7dd77b0c}-spuunmux.exe</ZipFileName> - <DestinationFilename>%Base%\Burner\spuunmux.exe</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\submux.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{15774289-6688-4efc-8759-810c9ebba935}-submux.exe</ZipFileName> + <LocalFileName>..\dep\Burner\submux.exe</LocalFileName> + <ZipFileName>Installer{CopyFile}\{230c9b1d-e34e-46eb-ad18-eb955f1f40bd}-submux.exe</ZipFileName> <DestinationFilename>%Base%\Burner\submux.exe</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\tcmplex.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{55a4050b-1939-47ee-b139-4bb8b553f061}-tcmplex.exe</ZipFileName> + <LocalFileName>..\dep\Burner\tcmplex.exe</LocalFileName> + <ZipFileName>Installer{CopyFile}\{eb12e1c4-efdb-4f2f-ae99-8edeab535138}-tcmplex.exe</ZipFileName> <DestinationFilename>%Base%\Burner\tcmplex.exe</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\type.mgk</LocalFileName> - <ZipFileName>Installer{CopyFile}\{5c4fcc5a-c030-407c-b05b-45b0e919515c}-type.mgk</ZipFileName> - <DestinationFilename>%Base%\Burner\type.mgk</DestinationFilename> + <LocalFileName>..\dep\Burner\wodim.exe</LocalFileName> + <ZipFileName>Installer{CopyFile}\{ddf792e2-3887-49e5-8f56-8ab9698cad2d}-wodim.exe</ZipFileName> + <DestinationFilename>%Base%\Burner\wodim.exe</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\type-ghostscript.mgk</LocalFileName> - <ZipFileName>Installer{CopyFile}\{63d11825-0dcd-4312-b99c-fb95ff5ecc84}-type-ghostscript.mgk</ZipFileName> - <DestinationFilename>%Base%\Burner\type-ghostscript.mgk</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\type-solaris.mgk</LocalFileName> - <ZipFileName>Installer{CopyFile}\{b1d5fb6b-d3ed-47fe-849a-fe9d5f18a7c0}-type-solaris.mgk</ZipFileName> - <DestinationFilename>%Base%\Burner\type-solaris.mgk</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\type-windows.mgk</LocalFileName> - <ZipFileName>Installer{CopyFile}\{ab35339b-c646-48b0-a78a-0e9bfa1faa7e}-type-windows.mgk</ZipFileName> - <DestinationFilename>%Base%\Burner\type-windows.mgk</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\zlib.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{225cd585-d093-4e65-9219-ab68a718ae98}-zlib.dll</ZipFileName> + <LocalFileName>..\dep\Burner\zlib.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{05a3cab6-05df-4b46-80f7-09be48361dcb}-zlib.dll</ZipFileName> <DestinationFilename>%Base%\Burner\zlib.dll</DestinationFilename> </FileItem> </Items> @@ -582,20 +463,26 @@ <Name>Burner</Name> <Id>df4d06b5-b67b-413a-86de-3d161b2ae3d6</Id> <Author>Mat, MP team, Sergey Filippov</Author> - <HomePage /> + <HomePage>burner-for-mp.googlecode.com</HomePage> <ForumPage>http://forum.team-mediaportal.com/mediaportal-plugins-47/plugin-burner-97106/</ForumPage> <UpdateUrl>https://mp-plugins.svn.sourceforge.net/svnroot/mp-plugins/trunk/plugins/Burner/MpeRelease/update.xml</UpdateUrl> <Version> <Major>1</Major> - <Minor>0</Minor> - <Build>1</Build> - <Revision>4232</Revision> + <Minor>1</Minor> + <Build>0</Build> + <Revision>18</Revision> </Version> <ExtensionDescription>Burner will allow you to burn audio, video and data CDs and DVDs</ExtensionDescription> - <VersionDescription /> + <VersionDescription>+ Added dialog for DVD menu modification ++ Added option to change bitrate, now you can place on single DVD up to 6 hours of video ++ Rewritten process of menu generation for more control on this process ++ Now you don't need to install windows package with dvdburn.exe ++ A lot of minor changes + +14.06.2011 i moved burner to burner-for-mp.googlecode.com, and ther is a bug tracker, so i'm waiting for your feedback</VersionDescription> <DevelopmentStatus>Stable</DevelopmentStatus> <OnlineLocation>https://mp-plugins.svn.sourceforge.net/svnroot/mp-plugins/trunk/plugins/Burner/MpeRelease/Burner_1.0.0.4223.mpe1</OnlineLocation> - <ReleaseDate>2011-05-26T19:33:19.421875+04:00</ReleaseDate> + <ReleaseDate>2011-06-21T19:33:19</ReleaseDate> <Tags>burn dvd cd</Tags> <Location>I:\MP-Burner\MpeRelease\Burner_1.0.1.4232.mpe1</Location> <Params> @@ -635,407 +522,313 @@ <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>trunk\Burner\bin\Debug\Burner.dll</LocalFileName> + <LocalFileName>Burner\bin\Debug\Burner.dll</LocalFileName> <ZipFileName>Installer{CopyFile}\{c7900b3d-1d84-4a2b-9e4c-114e53898590}-Burner.dll</ZipFileName> - <DestinationFilename>%Plugins%\Windows\Burner.dll</DestinationFilename> + <DestinationFilename>%Base%\Burner.dll</DestinationFilename> </FileItem> <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>trunk\Burner\bin\Debug\XPBurnComponent.dll</LocalFileName> + <LocalFileName>Burner\bin\Debug\XPBurnComponent.dll</LocalFileName> <ZipFileName>Installer{CopyFile}\{235a2607-49ec-4fde-a2a4-1c002606ee3c}-XPBurnComponent.dll</ZipFileName> - <DestinationFilename>%Plugins%\Windows\XPBurnComponent.dll</DestinationFilename> + <DestinationFilename>%Base%\XPBurnComponent.dll</DestinationFilename> </FileItem> <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>trunk\MediaInfo.dll</LocalFileName> + <LocalFileName>MediaInfo.dll</LocalFileName> <ZipFileName>Installer{CopyFile}\{97205b23-774c-4606-99a6-3b8b6d9ec9fe}-MediaInfo.dll</ZipFileName> - <DestinationFilename>%Plugins%\Windows\MediaInfo.dll</DestinationFilename> + <DestinationFilename>%Base%\Burner\MediaInfo.dll</DestinationFilename> </FileItem> <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>trunk\Skin\Blue3\myburner.xml</LocalFileName> + <LocalFileName>Skin\Blue3\myburner.xml</LocalFileName> <ZipFileName>Installer{CopyFile}\{a402e729-251c-4784-ac30-0ee473c5bf09}-myburner.xml</ZipFileName> <DestinationFilename>%Skin%\default\myburner.xml</DestinationFilename> </FileItem> <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>trunk\Skin\Blue3\Media\burn_logo.png</LocalFileName> + <LocalFileName>Skin\Blue3\Media\burn_logo.png</LocalFileName> <ZipFileName>Installer{CopyFile}\{3e39958d-dda9-4c9e-a77d-48e056024de6}-burn_logo.png</ZipFileName> <DestinationFilename>%Skin%\default\Media\burn_logo.png</DestinationFilename> </FileItem> <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>trunk\Skin\Blue3\Media\hover_my burner.png</LocalFileName> + <LocalFileName>Skin\Blue3\Media\hover_my burner.png</LocalFileName> <ZipFileName>Installer{CopyFile}\{f6d4ad48-0571-47fc-8d43-eadd8d2a941d}-hover_my burner.png</ZipFileName> - <DestinationFilename>%Skin%\Default\Media\hover_my burner.png</DestinationFilename> + <DestinationFilename>%Skin%\default\Media\hover_my burner.png</DestinationFilename> </FileItem> <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>trunk\Skin\Blue3wide\myburner.xml</LocalFileName> + <LocalFileName>Skin\Blue3wide\myburner.xml</LocalFileName> <ZipFileName>Installer{CopyFile}\{72f407d6-cbd8-4b5a-8b0d-14adbdb38b2c}-myburner.xml</ZipFileName> <DestinationFilename>%Skin%\DefaultWide\myburner.xml</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>trunk\Skin\Blue3wide\Media\burn_logo.png</LocalFileName> + <LocalFileName>Skin\Blue3wide\Media\burn_logo.png</LocalFileName> <ZipFileName>Installer{CopyFile}\{c0974068-6e38-44c4-b92f-0e9343a26a36}-burn_logo.png</ZipFileName> <DestinationFilename>%Skin%\DefaultWide\Media\burn_logo.png</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>trunk\Skin\Blue3wide\Media\hover_my burner.png</LocalFileName> + <LocalFileName>Skin\Blue3wide\Media\hover_my burner.png</LocalFileName> <ZipFileName>Installer{CopyFile}\{125af905-c6e4-4f74-a5e2-87297c53a547}-hover_my burner.png</ZipFileName> <DestinationFilename>%Skin%\DefaultWide\Media\hover_my burner.png</DestinationFilename> </FileItem> <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\burn.bat</LocalFileName> - <ZipFileName>Installer{CopyFile}\{a97fa310-4391-4a1a-92a5-f818e68f300e}-burn.bat</ZipFileName> - <DestinationFilename>%Base%\Burner\burn.bat</DestinationFilename> + <LocalFileName>Skin\Blue3\myburner.videomod.xml</LocalFileName> + <ZipFileName>Installer{CopyFile}\{5adfff34-8877-4742-ab9c-be9d6149a65b}-myburner.videomod.xml</ZipFileName> + <DestinationFilename>%Skin%\default\myburner.videomod.xml</DestinationFilename> </FileItem> <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\colors.mgk</LocalFileName> - <ZipFileName>Installer{CopyFile}\{00a57a68-2841-407a-82f3-af3861bf3a51}-colors.mgk</ZipFileName> - <DestinationFilename>%Base%\Burner\colors.mgk</DestinationFilename> + <LocalFileName>Skin\Blue3wide\myburner.videomod.xml</LocalFileName> + <ZipFileName>Installer{CopyFile}\{c60b0bea-bf99-42d0-9008-d94b31407cdc}-myburner.videomod.xml</ZipFileName> + <DestinationFilename>%Skin%\DefaultWide\myburner.videomod.xml</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygfreetype-6.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{63aac570-b5f3-4e72-926f-51bfdc243a16}-cygfreetype-6.dll</ZipFileName> + <LocalFileName>..\dep\Burner\cygfreetype-6.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{7ff967a6-691b-4777-8d99-6bf4379ce848}-cygfreetype-6.dll</ZipFileName> <DestinationFilename>%Base%\Burner\cygfreetype-6.dll</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygiconv-2.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{80b8ed33-e3db-4a9f-953b-6fbb11d87f53}-cygiconv-2.dll</ZipFileName> + <LocalFileName>..\dep\Burner\cyggcc_s-1.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{3b2171ad-4524-4c2e-ba48-5aa7aa3e5b42}-cyggcc_s-1.dll</ZipFileName> + <DestinationFilename>%Base%\Burner\cyggcc_s-1.dll</DestinationFilename> + </FileItem> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> + <Param1 /> + <UpdateOption>OverwriteIfOlder</UpdateOption> + <LocalFileName>..\dep\Burner\cygiconv-2.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{07d5e6b7-ddb3-4680-a4b4-79c487e876ed}-cygiconv-2.dll</ZipFileName> <DestinationFilename>%Base%\Burner\cygiconv-2.dll</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygintl-1.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{c8141136-d7e6-48a1-a49c-8abfaa696078}-cygintl-1.dll</ZipFileName> + <LocalFileName>..\dep\Burner\cygintl-1.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{7fd92aa8-93bf-44ea-81cc-dfba2469133e}-cygintl-1.dll</ZipFileName> <DestinationFilename>%Base%\Burner\cygintl-1.dll</DestinationFilename> </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> + <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\Program Files\Team MediaPortal\MediaPortal\Burner\cygjasper-1-701-1.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{a3a46c45-a99e-4010-b733-7c1dfd741774}-cygjasper-1-701-1.dll</ZipFileName> + <LocalFileName>..\dep\Burner\cygjasper-1-701-1.dll</LocalFileName> + <ZipFileName>Installer{CopyFile}\{db30989d-42a5-48af-961b-b4389c043988}-cygjasper-1... [truncated message content] |
From: <ro...@us...> - 2011-06-22 16:40:07
|
Revision: 4261 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=4261&view=rev Author: rolenof Date: 2011-06-22 16:40:01 +0000 (Wed, 22 Jun 2011) Log Message: ----------- Modified Paths: -------------- trunk/plugins/Burner/MpeRelease/Burner_1.1.0.18.mpe1 trunk/plugins/Burner/MpeRelease/update.xml trunk/plugins/Burner/burner.xmp2 Modified: trunk/plugins/Burner/MpeRelease/Burner_1.1.0.18.mpe1 =================================================================== (Binary files differ) Modified: trunk/plugins/Burner/MpeRelease/update.xml =================================================================== --- trunk/plugins/Burner/MpeRelease/update.xml 2011-06-22 07:30:22 UTC (rev 4260) +++ trunk/plugins/Burner/MpeRelease/update.xml 2011-06-22 16:40:01 UTC (rev 4261) @@ -312,7 +312,11 @@ <OnlineLocation>https://mp-plugins.svn.sourceforge.net/svnroot/mp-plugins/trunk/plugins/Burner/MpeRelease/Burner_1.1.0.18.mpe1</OnlineLocation> <ReleaseDate>2011-06-21T19:33:19</ReleaseDate> <Tags>burn dvd cd</Tags> +<<<<<<< .mine + <Location>I:\MP-Burner\MpeRelease\Burner_1.1.0.18.mpe1</Location> +======= <Location>C:\workspace\MP-Burner\MpeRelease\Burner_1.1.0.18.mpe1</Location> +>>>>>>> .r4260 <Params> <Items> <SectionParam Name="Icon"> @@ -338,7 +342,7 @@ <Description>Online stored screenshot urls separated by ; </Description> </SectionParam> <SectionParam Name="Force to uninstall on update"> - <Value>yes</Value> + <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> Modified: trunk/plugins/Burner/burner.xmp2 =================================================================== --- trunk/plugins/Burner/burner.xmp2 2011-06-22 07:30:22 UTC (rev 4260) +++ trunk/plugins/Burner/burner.xmp2 2011-06-22 16:40:01 UTC (rev 4261) @@ -15,14 +15,14 @@ <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\workspace\burner-for-mp\trunk\Burner\bin\Debug\Burner.dll</LocalFileName> <ZipFileName>Installer{CopyFile}\{c7900b3d-1d84-4a2b-9e4c-114e53898590}-Burner.dll</ZipFileName> - <DestinationFilename>%Base%\Burner.dll</DestinationFilename> + <DestinationFilename>%Plugins%\windows\Burner.dll</DestinationFilename> </FileItem> <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\workspace\burner-for-mp\trunk\Burner\bin\Debug\XPBurnComponent.dll</LocalFileName> <ZipFileName>Installer{CopyFile}\{235a2607-49ec-4fde-a2a4-1c002606ee3c}-XPBurnComponent.dll</ZipFileName> - <DestinationFilename>%Base%\XPBurnComponent.dll</DestinationFilename> + <DestinationFilename>%Plugins%\windows\XPBurnComponent.dll</DestinationFilename> </FileItem> <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> @@ -344,8 +344,13 @@ Click Next to continue or Cancel to exit Setup. Changelog: -Improved methods to get duration of file with mediainfo lib -Some minor changes</Value> ++ Added dialog for DVD menu modification ++ Added option to change bitrate, now you can place on single DVD up to 6 hours of video ++ Rewritten process of menu generation for more control on this process ++ Now you don't need to install windows package with dvdburn.exe ++ A lot of minor changes + +14.06.2011 i moved burner to burner-for-mp.googlecode.com, and ther is a bug tracker, so i'm waiting for your feedback</Value> <ValueType>String</ValueType> <Description /> </SectionParam> @@ -484,7 +489,7 @@ <OnlineLocation>https://mp-plugins.svn.sourceforge.net/svnroot/mp-plugins/trunk/plugins/Burner/MpeRelease/Burner_1.1.0.18.mpe1</OnlineLocation> <ReleaseDate>2011-06-21T19:33:19</ReleaseDate> <Tags>burn dvd cd</Tags> - <Location>I:\MP-Burner\MpeRelease\Burner_1.0.1.4232.mpe1</Location> + <Location>I:\MP-Burner\MpeRelease\Burner_1.1.0.18.mpe1</Location> <Params> <Items> <SectionParam Name="Icon"> @@ -510,7 +515,7 @@ <Description>Online stored screenshot urls separated by ; </Description> </SectionParam> <SectionParam Name="Force to uninstall on update"> - <Value>yes</Value> + <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> @@ -524,14 +529,14 @@ <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\workspace\burner-for-mp\trunk\Burner\bin\Debug\Burner.dll</LocalFileName> <ZipFileName>Installer{CopyFile}\{c7900b3d-1d84-4a2b-9e4c-114e53898590}-Burner.dll</ZipFileName> - <DestinationFilename>%Base%\Burner.dll</DestinationFilename> + <DestinationFilename>%Plugins%\windows\Burner.dll</DestinationFilename> </FileItem> <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> <UpdateOption>OverwriteIfOlder</UpdateOption> <LocalFileName>..\workspace\burner-for-mp\trunk\Burner\bin\Debug\XPBurnComponent.dll</LocalFileName> <ZipFileName>Installer{CopyFile}\{235a2607-49ec-4fde-a2a4-1c002606ee3c}-XPBurnComponent.dll</ZipFileName> - <DestinationFilename>%Base%\XPBurnComponent.dll</DestinationFilename> + <DestinationFilename>%Plugins%\windows\XPBurnComponent.dll</DestinationFilename> </FileItem> <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> <Param1 /> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ro...@us...> - 2011-09-17 07:21:02
|
Revision: 4291 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=4291&view=rev Author: rolenof Date: 2011-09-17 07:20:53 +0000 (Sat, 17 Sep 2011) Log Message: ----------- Modified Paths: -------------- trunk/plugins/Burner/MpeRelease/Burner_1.1.0.18.mpe1 trunk/plugins/Burner/MpeRelease/update.xml trunk/plugins/Burner/trunk/Burner/GUIBurner.cs trunk/plugins/Burner/trunk/Burner/GUIBurnerVideoMod.cs trunk/plugins/Burner/trunk/Burner/MenuGenerator.cs trunk/plugins/Burner/trunk/Skin/Blue3/myburner.videomod.xml trunk/plugins/Burner/trunk/Skin/Blue3/myburner.xml trunk/plugins/Burner/trunk/Skin/Blue3wide/myburner.videomod.xml trunk/plugins/Burner/trunk/Skin/Blue3wide/myburner.xml trunk/plugins/Burner/trunk/burner.xmp2 Added Paths: ----------- trunk/plugins/Burner/MpeRelease/Burner_1.1.0.21.mpe1 trunk/plugins/Burner/MpeRelease/Burner_1.1.0.22.mpe1 trunk/plugins/Burner/trunk/Skin/Blue3wide/Media/background.png trunk/plugins/Burner/trunk/Skin/StreamedMP/ trunk/plugins/Burner/trunk/Skin/StreamedMP/Media/ trunk/plugins/Burner/trunk/Skin/StreamedMP/Media/hover_my burner.png trunk/plugins/Burner/trunk/Skin/StreamedMP/myburner.videomod.xml trunk/plugins/Burner/trunk/Skin/StreamedMP/myburner.xml Removed Paths: ------------- trunk/plugins/Burner/burner.xmp2 trunk/plugins/Burner/trunk/TODO.txt trunk/plugins/Burner/trunk/menuGen.log Modified: trunk/plugins/Burner/MpeRelease/Burner_1.1.0.18.mpe1 =================================================================== (Binary files differ) Added: trunk/plugins/Burner/MpeRelease/Burner_1.1.0.21.mpe1 =================================================================== (Binary files differ) Property changes on: trunk/plugins/Burner/MpeRelease/Burner_1.1.0.21.mpe1 ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: trunk/plugins/Burner/MpeRelease/Burner_1.1.0.22.mpe1 =================================================================== (Binary files differ) Property changes on: trunk/plugins/Burner/MpeRelease/Burner_1.1.0.22.mpe1 ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Modified: trunk/plugins/Burner/MpeRelease/update.xml =================================================================== --- trunk/plugins/Burner/MpeRelease/update.xml 2011-09-16 08:38:07 UTC (rev 4290) +++ trunk/plugins/Burner/MpeRelease/update.xml 2011-09-17 07:20:53 UTC (rev 4291) @@ -57,26 +57,35 @@ </DependencyItem> </Items> </Dependencies> + <PluginDependencies> + <Items /> + </PluginDependencies> <GeneralInfo> <Name>Burner</Name> <Id>df4d06b5-b67b-413a-86de-3d161b2ae3d6</Id> <Author>Mat, MP team, Sergey Filippov</Author> - <HomePage /> - <ForumPage /> - <UpdateUrl>https://mp-plugins.svn.sourceforge.net/svnroot/mp-plugins/trunk/plugins/Burner/MpeRelease/update.xml</UpdateUrl> + <HomePage>burner-for-mp.googlecode.com</HomePage> + <ForumPage>http://forum.team-mediaportal.com/mediaportal-plugins-47/plugin-burner-97106/</ForumPage> + <UpdateUrl>http://burner-for-mp.googlecode.com/svn/MpeRelease/update.xml</UpdateUrl> <Version> <Major>1</Major> - <Minor>0</Minor> + <Minor>1</Minor> <Build>0</Build> - <Revision>4223</Revision> + <Revision>19</Revision> </Version> <ExtensionDescription>Burner will allow you to burn audio, video and data CDs and DVDs</ExtensionDescription> - <VersionDescription /> + <VersionDescription>+ Added dialog for DVD menu modification ++ Added option to change bitrate, now you can place on single DVD up to 6 hours of video ++ Rewritten process of menu generation for more control on this process ++ Now you don't need to install windows package with dvdburn.exe ++ A lot of minor changes + +14.06.2011 i moved burner to burner-for-mp.googlecode.com, and ther is a bug tracker, so i'm waiting for your feedback</VersionDescription> <DevelopmentStatus>Stable</DevelopmentStatus> - <OnlineLocation>https://mp-plugins.svn.sourceforge.net/svnroot/mp-plugins/trunk/plugins/Burner/MpeRelease/Burner_1.0.0.4223.mpe1</OnlineLocation> - <ReleaseDate>2011-05-26T18:33:19.421875+03:00</ReleaseDate> + <OnlineLocation>http://burner-for-mp.googlecode.com/svn/MpeRelease/Burner_1.1.0.18.mpe1</OnlineLocation> + <ReleaseDate>2011-06-21T19:33:19</ReleaseDate> <Tags>burn dvd cd</Tags> - <Location>I:\MP-Burner\MpeRelease\Burner_1.0.0.4223.mpe1</Location> + <Location>I:\workspace\burner-for-mp\MpeRelease\Burner_1.1.0.18.mpe1</Location> <Params> <Items> <SectionParam Name="Icon"> @@ -102,7 +111,7 @@ <Description>Online stored screenshot urls separated by ; </Description> </SectionParam> <SectionParam Name="Force to uninstall on update"> - <Value>yes</Value> + <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> @@ -115,6 +124,7 @@ <ProjectSettings> <FolderGroups /> </ProjectSettings> + <IsSkin>false</IsSkin> </PackageClass> <PackageClass> <Version>2.0</Version> @@ -172,26 +182,29 @@ </DependencyItem> </Items> </Dependencies> + <PluginDependencies> + <Items /> + </PluginDependencies> <GeneralInfo> <Name>Burner</Name> <Id>df4d06b5-b67b-413a-86de-3d161b2ae3d6</Id> <Author>Mat, MP team, Sergey Filippov</Author> - <HomePage /> + <HomePage>burner-for-mp.googlecode.com</HomePage> <ForumPage>http://forum.team-mediaportal.com/mediaportal-plugins-47/plugin-burner-97106/</ForumPage> - <UpdateUrl>https://mp-plugins.svn.sourceforge.net/svnroot/mp-plugins/trunk/plugins/Burner/MpeRelease/update.xml</UpdateUrl> + <UpdateUrl>http://burner-for-mp.googlecode.com/svn/MpeRelease/update.xml</UpdateUrl> <Version> <Major>1</Major> - <Minor>0</Minor> - <Build>1</Build> - <Revision>4232</Revision> + <Minor>1</Minor> + <Build>0</Build> + <Revision>21</Revision> </Version> <ExtensionDescription>Burner will allow you to burn audio, video and data CDs and DVDs</ExtensionDescription> - <VersionDescription /> + <VersionDescription>Fixed issue with EPG</VersionDescription> <DevelopmentStatus>Stable</DevelopmentStatus> - <OnlineLocation>https://mp-plugins.svn.sourceforge.net/svnroot/mp-plugins/trunk/plugins/Burner/MpeRelease/Burner_1.0.0.4223.mpe1</OnlineLocation> - <ReleaseDate>2011-05-26T18:33:19.421875+03:00</ReleaseDate> + <OnlineLocation>http://burner-for-mp.googlecode.com/svn/MpeRelease/Burner_1.1.0.21.mpe1</OnlineLocation> + <ReleaseDate>2011-07-07T19:33:19</ReleaseDate> <Tags>burn dvd cd</Tags> - <Location>I:\MP-Burner\MpeRelease\Burner_1.0.1.4232.mpe1</Location> + <Location>I:\workspace\burner-for-mp\MpeRelease\Burner_1.1.0.21.mpe1</Location> <Params> <Items> <SectionParam Name="Icon"> @@ -217,7 +230,7 @@ <Description>Online stored screenshot urls separated by ; </Description> </SectionParam> <SectionParam Name="Force to uninstall on update"> - <Value>yes</Value> + <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> @@ -230,6 +243,7 @@ <ProjectSettings> <FolderGroups /> </ProjectSettings> + <IsSkin>false</IsSkin> </PackageClass> <PackageClass> <Version>2.0</Version> @@ -272,58 +286,62 @@ <MinVersion> <Major>1</Major> <Minor>1</Minor> - <Build>0</Build> - <Revision>6</Revision> + <Build>6</Build> + <Revision>27644</Revision> </MinVersion> <MaxVersion> <Major>1</Major> <Minor>1</Minor> - <Build>0</Build> - <Revision>6</Revision> + <Build>6</Build> + <Revision>27644</Revision> </MaxVersion> - <WarnOnly>true</WarnOnly> - <Message>Need version of MediaPortal with version 1.1.0.6</Message> + <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> + <PluginDependencyItem AssemblyName="Burner.dll"> + <CompatibleVersion> + <Items> + <CompatibleVersionItem> + <MinRequiredVersion>1.1.7.0</MinRequiredVersion> + <DesignedForVersion>1.1.7.0</DesignedForVersion> + </CompatibleVersionItem> + </Items> + </CompatibleVersion> + <SubSystemsUsed> + <Items> + <SubSystemItem Name="MP" /> + </Items> + </SubSystemsUsed> + </PluginDependencyItem> + </Items> + </PluginDependencies> <GeneralInfo> <Name>Burner</Name> <Id>df4d06b5-b67b-413a-86de-3d161b2ae3d6</Id> <Author>Mat, MP team, Sergey Filippov</Author> <HomePage>burner-for-mp.googlecode.com</HomePage> <ForumPage>http://forum.team-mediaportal.com/mediaportal-plugins-47/plugin-burner-97106/</ForumPage> - <UpdateUrl>https://mp-plugins.svn.sourceforge.net/svnroot/mp-plugins/trunk/plugins/Burner/MpeRelease/update.xml</UpdateUrl> + <UpdateUrl>http://burner-for-mp.googlecode.com/svn/MpeRelease/update.xml</UpdateUrl> <Version> <Major>1</Major> <Minor>1</Minor> <Build>0</Build> - <Revision>18</Revision> + <Revision>22</Revision> </Version> <ExtensionDescription>Burner will allow you to burn audio, video and data CDs and DVDs</ExtensionDescription> - <VersionDescription>+ Added dialog for DVD menu modification -+ Added option to change bitrate, now you can place on single DVD up to 6 hours of video -+ Rewritten process of menu generation for more control on this process -+ Now you don't need to install windows package with dvdburn.exe -+ A lot of minor changes - -14.06.2011 i moved burner to burner-for-mp.googlecode.com, and ther is a bug tracker, so i'm waiting for your feedback</VersionDescription> + <VersionDescription>Fixed installer issue</VersionDescription> <DevelopmentStatus>Stable</DevelopmentStatus> - <OnlineLocation>https://mp-plugins.svn.sourceforge.net/svnroot/mp-plugins/trunk/plugins/Burner/MpeRelease/Burner_1.1.0.18.mpe1</OnlineLocation> - <ReleaseDate>2011-06-21T19:33:19</ReleaseDate> + <OnlineLocation>http://burner-for-mp.googlecode.com/svn/MpeRelease/Burner_1.1.0.22.mpe1</OnlineLocation> + <ReleaseDate>2011-09-17T19:33:19</ReleaseDate> <Tags>burn dvd cd</Tags> -<<<<<<< .mine - <Location>I:\MP-Burner\MpeRelease\Burner_1.1.0.18.mpe1</Location> -======= - <Location>C:\workspace\MP-Burner\MpeRelease\Burner_1.1.0.18.mpe1</Location> ->>>>>>> .r4260 + <Location>I:\workspace\burner-for-mp\MpeRelease\Burner_1.1.0.22.mpe1</Location> <Params> <Items> - <SectionParam Name="Icon"> - <Value /> - <ValueType>File</ValueType> - <Description>The icon file of the package (jpg,png,bmp)</Description> - </SectionParam> <SectionParam Name="Online Icon"> <Value /> <ValueType>String</ValueType> @@ -355,6 +373,7 @@ <ProjectSettings> <FolderGroups /> </ProjectSettings> + <IsSkin>false</IsSkin> </PackageClass> </Items> </ExtensionCollection> \ No newline at end of file Deleted: trunk/plugins/Burner/burner.xmp2 =================================================================== --- trunk/plugins/Burner/burner.xmp2 2011-09-16 08:38:07 UTC (rev 4290) +++ trunk/plugins/Burner/burner.xmp2 2011-09-17 07:20:53 UTC (rev 4291) @@ -1,841 +0,0 @@ -<?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>Burner dlls</DisplayName> - <DefaulChecked>true</DefaulChecked> - <Description>main plugin files</Description> - <Files> - <Items> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\trunk\Burner\bin\Debug\Burner.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{c7900b3d-1d84-4a2b-9e4c-114e53898590}-Burner.dll</ZipFileName> - <DestinationFilename>%Plugins%\windows\Burner.dll</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\trunk\Burner\bin\Debug\XPBurnComponent.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{235a2607-49ec-4fde-a2a4-1c002606ee3c}-XPBurnComponent.dll</ZipFileName> - <DestinationFilename>%Plugins%\windows\XPBurnComponent.dll</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\trunk\MediaInfo.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{97205b23-774c-4606-99a6-3b8b6d9ec9fe}-MediaInfo.dll</ZipFileName> - <DestinationFilename>%Base%\Burner\MediaInfo.dll</DestinationFilename> - </FileItem> - </Items> - </Files> - </GroupItem> - <GroupItem Name="Skin"> - <ParentGroup /> - <DisplayName>Skin files</DisplayName> - <DefaulChecked>true</DefaulChecked> - <Description>Skin</Description> - <Files> - <Items> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\trunk\Skin\Blue3\myburner.xml</LocalFileName> - <ZipFileName>Installer{CopyFile}\{a402e729-251c-4784-ac30-0ee473c5bf09}-myburner.xml</ZipFileName> - <DestinationFilename>%Skin%\default\myburner.xml</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\trunk\Skin\Blue3\Media\burn_logo.png</LocalFileName> - <ZipFileName>Installer{CopyFile}\{3e39958d-dda9-4c9e-a77d-48e056024de6}-burn_logo.png</ZipFileName> - <DestinationFilename>%Skin%\default\Media\burn_logo.png</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\trunk\Skin\Blue3\Media\hover_my burner.png</LocalFileName> - <ZipFileName>Installer{CopyFile}\{f6d4ad48-0571-47fc-8d43-eadd8d2a941d}-hover_my burner.png</ZipFileName> - <DestinationFilename>%Skin%\default\Media\hover_my burner.png</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\trunk\Skin\Blue3wide\myburner.xml</LocalFileName> - <ZipFileName>Installer{CopyFile}\{72f407d6-cbd8-4b5a-8b0d-14adbdb38b2c}-myburner.xml</ZipFileName> - <DestinationFilename>%Skin%\DefaultWide\myburner.xml</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\trunk\Skin\Blue3wide\Media\burn_logo.png</LocalFileName> - <ZipFileName>Installer{CopyFile}\{c0974068-6e38-44c4-b92f-0e9343a26a36}-burn_logo.png</ZipFileName> - <DestinationFilename>%Skin%\DefaultWide\Media\burn_logo.png</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\trunk\Skin\Blue3wide\Media\hover_my burner.png</LocalFileName> - <ZipFileName>Installer{CopyFile}\{125af905-c6e4-4f74-a5e2-87297c53a547}-hover_my burner.png</ZipFileName> - <DestinationFilename>%Skin%\DefaultWide\Media\hover_my burner.png</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\trunk\Skin\Blue3\myburner.videomod.xml</LocalFileName> - <ZipFileName>Installer{CopyFile}\{5adfff34-8877-4742-ab9c-be9d6149a65b}-myburner.videomod.xml</ZipFileName> - <DestinationFilename>%Skin%\default\myburner.videomod.xml</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\trunk\Skin\Blue3wide\myburner.videomod.xml</LocalFileName> - <ZipFileName>Installer{CopyFile}\{c60b0bea-bf99-42d0-9008-d94b31407cdc}-myburner.videomod.xml</ZipFileName> - <DestinationFilename>%Skin%\DefaultWide\myburner.videomod.xml</DestinationFilename> - </FileItem> - </Items> - </Files> - </GroupItem> - <GroupItem Name="support"> - <DisplayName>dep</DisplayName> - <DefaulChecked>true</DefaulChecked> - <Description>support</Description> - <Files> - <Items> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\cygfreetype-6.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{7ff967a6-691b-4777-8d99-6bf4379ce848}-cygfreetype-6.dll</ZipFileName> - <DestinationFilename>%Base%\Burner\cygfreetype-6.dll</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\cyggcc_s-1.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{3b2171ad-4524-4c2e-ba48-5aa7aa3e5b42}-cyggcc_s-1.dll</ZipFileName> - <DestinationFilename>%Base%\Burner\cyggcc_s-1.dll</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\cygiconv-2.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{07d5e6b7-ddb3-4680-a4b4-79c487e876ed}-cygiconv-2.dll</ZipFileName> - <DestinationFilename>%Base%\Burner\cygiconv-2.dll</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\cygintl-1.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{7fd92aa8-93bf-44ea-81cc-dfba2469133e}-cygintl-1.dll</ZipFileName> - <DestinationFilename>%Base%\Burner\cygintl-1.dll</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\cygjasper-1-701-1.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{db30989d-42a5-48af-961b-b4389c043988}-cygjasper-1-701-1.dll</ZipFileName> - <DestinationFilename>%Base%\Burner\cygjasper-1-701-1.dll</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\cygjpeg-62.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{5d4589ab-abde-4402-a1ac-0b2dea240c73}-cygjpeg-62.dll</ZipFileName> - <DestinationFilename>%Base%\Burner\cygjpeg-62.dll</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\cygjpeg6b.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{5ef42ff1-81e9-43a8-9df4-f30105cf0b60}-cygjpeg6b.dll</ZipFileName> - <DestinationFilename>%Base%\Burner\cygjpeg6b.dll</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\cygpng12.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{0d5df643-849e-4242-bec0-33894a06ed95}-cygpng12.dll</ZipFileName> - <DestinationFilename>%Base%\Burner\cygpng12.dll</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\cygwin1.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{21feaf48-e649-46df-9507-99a05c3a57ea}-cygwin1.dll</ZipFileName> - <DestinationFilename>%Base%\Burner\cygwin1.dll</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\cygwmflite-0-2-7.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{09da92a3-346e-4607-8b3c-7ee246f5113d}-cygwmflite-0-2-7.dll</ZipFileName> - <DestinationFilename>%Base%\Burner\cygwmflite-0-2-7.dll</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\cygxml2-2.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{68a7dcab-a97b-49fa-959b-2c02640d304e}-cygxml2-2.dll</ZipFileName> - <DestinationFilename>%Base%\Burner\cygxml2-2.dll</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\cygz.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{e9296987-d17c-489d-939b-0509dc983ad6}-cygz.dll</ZipFileName> - <DestinationFilename>%Base%\Burner\cygz.dll</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\dvdauthor.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{24038bc2-8e27-47f0-a18c-51f97c4e5253}-dvdauthor.exe</ZipFileName> - <DestinationFilename>%Base%\Burner\dvdauthor.exe</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\imagequ.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{0a7a0cf2-518e-4a53-b403-33318f96cbb8}-imagequ.exe</ZipFileName> - <DestinationFilename>%Base%\Burner\imagequ.exe</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\libpng12.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{5434b30f-c46c-475c-aa2f-522c41106d5b}-libpng12.dll</ZipFileName> - <DestinationFilename>%Base%\Burner\libpng12.dll</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\libz.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{1b2469f5-6fea-4494-b90a-4d2914723ce6}-libz.dll</ZipFileName> - <DestinationFilename>%Base%\Burner\libz.dll</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\mencoder.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{38e2253a-68af-4254-ac31-d71af885125f}-mencoder.exe</ZipFileName> - <DestinationFilename>%Base%\Burner\mencoder.exe</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\mkisofs.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{f769cb05-e0b9-43cc-9bae-b7b5f187bb6a}-mkisofs.exe</ZipFileName> - <DestinationFilename>%Base%\Burner\mkisofs.exe</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\mpeg2enc.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{bacf02f3-e961-49b3-aab3-3205dbda179a}-mpeg2enc.exe</ZipFileName> - <DestinationFilename>%Base%\Burner\mpeg2enc.exe</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\mplex.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{e77ea0df-001d-4c99-9060-a21a58cc1ca3}-mplex.exe</ZipFileName> - <DestinationFilename>%Base%\Burner\mplex.exe</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\msvcp60.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{5f00a660-3b24-45f0-a889-abaa4be1a7ef}-msvcp60.dll</ZipFileName> - <DestinationFilename>%Base%\Burner\msvcp60.dll</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\msvcrt.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{95bb069e-3721-44c3-9fe1-e67ed1496b13}-msvcrt.dll</ZipFileName> - <DestinationFilename>%Base%\Burner\msvcrt.dll</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\navButton.png</LocalFileName> - <ZipFileName>Installer{CopyFile}\{3c4fe971-a703-4b29-91d0-abc0228f23a6}-navButton.png</ZipFileName> - <DestinationFilename>%Base%\Burner\navButton.png</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\png2yuv.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{1abc2e19-590c-4fcf-8d6e-0f4fee275a4c}-png2yuv.exe</ZipFileName> - <DestinationFilename>%Base%\Burner\png2yuv.exe</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\pthreadGC2.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{4474058d-5ab3-4968-9fc2-1de00a28fc55}-pthreadGC2.dll</ZipFileName> - <DestinationFilename>%Base%\Burner\pthreadGC2.dll</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\Silence.ac3</LocalFileName> - <ZipFileName>Installer{CopyFile}\{c604f3a6-cf5e-40c8-8ab0-9348d413cd7b}-Silence.ac3</ZipFileName> - <DestinationFilename>%Base%\Burner\Silence.ac3</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\spumux.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{c64cea2c-1ac8-46f7-b6a5-fc6210bc5d86}-spumux.exe</ZipFileName> - <DestinationFilename>%Base%\Burner\spumux.exe</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\submux.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{230c9b1d-e34e-46eb-ad18-eb955f1f40bd}-submux.exe</ZipFileName> - <DestinationFilename>%Base%\Burner\submux.exe</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\tcmplex.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{eb12e1c4-efdb-4f2f-ae99-8edeab535138}-tcmplex.exe</ZipFileName> - <DestinationFilename>%Base%\Burner\tcmplex.exe</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\wodim.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{ddf792e2-3887-49e5-8f56-8ab9698cad2d}-wodim.exe</ZipFileName> - <DestinationFilename>%Base%\Burner\wodim.exe</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\zlib.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{05a3cab6-05df-4b46-80f7-09be48361dcb}-zlib.dll</ZipFileName> - <DestinationFilename>%Base%\Burner\zlib.dll</DestinationFilename> - </FileItem> - </Items> - </Files> - </GroupItem> - </Items> - </Groups> - <Sections> - <Items> - <SectionItem Guid="20f6a5a5-6c60-4e23-b76d-c95df244fef8" 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. - -Changelog: -+ Added dialog for DVD menu modification -+ Added option to change bitrate, now you can place on single DVD up to 6 hours of video -+ Rewritten process of menu generation for more control on this process -+ Now you don't need to install windows package with dvdburn.exe -+ A lot of minor changes - -14.06.2011 i moved burner to burner-for-mp.googlecode.com, and ther is a bug tracker, so i'm waiting for your feedback</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="01ab2ac5-0ea3-4c5b-9c68-92e62c9ffc9f" 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="0b5d3794-ee05-4895-a049-2fdff7b25559" 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>0</Build> - <Revision>6</Revision> - </MinVersion> - <MaxVersion> - <Major>1</Major> - <Minor>1</Minor> - <Build>0</Build> - <Revision>6</Revision> - </MaxVersion> - <WarnOnly>true</WarnOnly> - <Message>Need version of MediaPortal with version 1.1.0.6</Message> - <Name>MediaPortal</Name> - </DependencyItem> - </Items> - </Dependencies> - <GeneralInfo> - <Name>Burner</Name> - <Id>df4d06b5-b67b-413a-86de-3d161b2ae3d6</Id> - <Author>Mat, MP team, Sergey Filippov</Author> - <HomePage>burner-for-mp.googlecode.com</HomePage> - <ForumPage>http://forum.team-mediaportal.com/mediaportal-plugins-47/plugin-burner-97106/</ForumPage> - <UpdateUrl>https://mp-plugins.svn.sourceforge.net/svnroot/mp-plugins/trunk/plugins/Burner/MpeRelease/update.xml</UpdateUrl> - <Version> - <Major>1</Major> - <Minor>1</Minor> - <Build>0</Build> - <Revision>18</Revision> - </Version> - <ExtensionDescription>Burner will allow you to burn audio, video and data CDs and DVDs</ExtensionDescription> - <VersionDescription>+ Added dialog for DVD menu modification -+ Added option to change bitrate, now you can place on single DVD up to 6 hours of video -+ Rewritten process of menu generation for more control on this process -+ Now you don't need to install windows package with dvdburn.exe -+ A lot of minor changes - -14.06.2011 i moved burner to burner-for-mp.googlecode.com, and ther is a bug tracker, so i'm waiting for your feedback</VersionDescription> - <DevelopmentStatus>Stable</DevelopmentStatus> - <OnlineLocation>https://mp-plugins.svn.sourceforge.net/svnroot/mp-plugins/trunk/plugins/Burner/MpeRelease/Burner_1.1.0.18.mpe1</OnlineLocation> - <ReleaseDate>2011-06-21T19:33:19</ReleaseDate> - <Tags>burn dvd cd</Tags> - <Location>I:\MP-Burner\MpeRelease\Burner_1.1.0.18.mpe1</Location> - <Params> - <Items> - <SectionParam Name="Icon"> - <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 have .exe extension the will be executed - If have .dll extension used like MP plugin configuration</Description> - </SectionParam> - <SectionParam Name="Online Screenshots"> - <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>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\trunk\Burner\bin\Debug\Burner.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{c7900b3d-1d84-4a2b-9e4c-114e53898590}-Burner.dll</ZipFileName> - <DestinationFilename>%Plugins%\windows\Burner.dll</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\trunk\Burner\bin\Debug\XPBurnComponent.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{235a2607-49ec-4fde-a2a4-1c002606ee3c}-XPBurnComponent.dll</ZipFileName> - <DestinationFilename>%Plugins%\windows\XPBurnComponent.dll</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\trunk\MediaInfo.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{97205b23-774c-4606-99a6-3b8b6d9ec9fe}-MediaInfo.dll</ZipFileName> - <DestinationFilename>%Base%\Burner\MediaInfo.dll</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\trunk\Skin\Blue3\myburner.xml</LocalFileName> - <ZipFileName>Installer{CopyFile}\{a402e729-251c-4784-ac30-0ee473c5bf09}-myburner.xml</ZipFileName> - <DestinationFilename>%Skin%\default\myburner.xml</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\trunk\Skin\Blue3\Media\burn_logo.png</LocalFileName> - <ZipFileName>Installer{CopyFile}\{3e39958d-dda9-4c9e-a77d-48e056024de6}-burn_logo.png</ZipFileName> - <DestinationFilename>%Skin%\default\Media\burn_logo.png</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\trunk\Skin\Blue3\Media\hover_my burner.png</LocalFileName> - <ZipFileName>Installer{CopyFile}\{f6d4ad48-0571-47fc-8d43-eadd8d2a941d}-hover_my burner.png</ZipFileName> - <DestinationFilename>%Skin%\default\Media\hover_my burner.png</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\trunk\Skin\Blue3wide\myburner.xml</LocalFileName> - <ZipFileName>Installer{CopyFile}\{72f407d6-cbd8-4b5a-8b0d-14adbdb38b2c}-myburner.xml</ZipFileName> - <DestinationFilename>%Skin%\DefaultWide\myburner.xml</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\trunk\Skin\Blue3wide\Media\burn_logo.png</LocalFileName> - <ZipFileName>Installer{CopyFile}\{c0974068-6e38-44c4-b92f-0e9343a26a36}-burn_logo.png</ZipFileName> - <DestinationFilename>%Skin%\DefaultWide\Media\burn_logo.png</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\trunk\Skin\Blue3wide\Media\hover_my burner.png</LocalFileName> - <ZipFileName>Installer{CopyFile}\{125af905-c6e4-4f74-a5e2-87297c53a547}-hover_my burner.png</ZipFileName> - <DestinationFilename>%Skin%\DefaultWide\Media\hover_my burner.png</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\trunk\Skin\Blue3\myburner.videomod.xml</LocalFileName> - <ZipFileName>Installer{CopyFile}\{5adfff34-8877-4742-ab9c-be9d6149a65b}-myburner.videomod.xml</ZipFileName> - <DestinationFilename>%Skin%\default\myburner.videomod.xml</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="true"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\trunk\Skin\Blue3wide\myburner.videomod.xml</LocalFileName> - <ZipFileName>Installer{CopyFile}\{c60b0bea-bf99-42d0-9008-d94b31407cdc}-myburner.videomod.xml</ZipFileName> - <DestinationFilename>%Skin%\DefaultWide\myburner.videomod.xml</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\cygfreetype-6.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{7ff967a6-691b-4777-8d99-6bf4379ce848}-cygfreetype-6.dll</ZipFileName> - <DestinationFilename>%Base%\Burner\cygfreetype-6.dll</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\cyggcc_s-1.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{3b2171ad-4524-4c2e-ba48-5aa7aa3e5b42}-cyggcc_s-1.dll</ZipFileName> - <DestinationFilename>%Base%\Burner\cyggcc_s-1.dll</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\cygiconv-2.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{07d5e6b7-ddb3-4680-a4b4-79c487e876ed}-cygiconv-2.dll</ZipFileName> - <DestinationFilename>%Base%\Burner\cygiconv-2.dll</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\cygintl-1.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{7fd92aa8-93bf-44ea-81cc-dfba2469133e}-cygintl-1.dll</ZipFileName> - <DestinationFilename>%Base%\Burner\cygintl-1.dll</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\cygjasper-1-701-1.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{db30989d-42a5-48af-961b-b4389c043988}-cygjasper-1-701-1.dll</ZipFileName> - <DestinationFilename>%Base%\Burner\cygjasper-1-701-1.dll</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\cygjpeg-62.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{5d4589ab-abde-4402-a1ac-0b2dea240c73}-cygjpeg-62.dll</ZipFileName> - <DestinationFilename>%Base%\Burner\cygjpeg-62.dll</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\cygjpeg6b.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{5ef42ff1-81e9-43a8-9df4-f30105cf0b60}-cygjpeg6b.dll</ZipFileName> - <DestinationFilename>%Base%\Burner\cygjpeg6b.dll</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\cygpng12.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{0d5df643-849e-4242-bec0-33894a06ed95}-cygpng12.dll</ZipFileName> - <DestinationFilename>%Base%\Burner\cygpng12.dll</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\cygwin1.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{21feaf48-e649-46df-9507-99a05c3a57ea}-cygwin1.dll</ZipFileName> - <DestinationFilename>%Base%\Burner\cygwin1.dll</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\cygwmflite-0-2-7.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{09da92a3-346e-4607-8b3c-7ee246f5113d}-cygwmflite-0-2-7.dll</ZipFileName> - <DestinationFilename>%Base%\Burner\cygwmflite-0-2-7.dll</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\cygxml2-2.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{68a7dcab-a97b-49fa-959b-2c02640d304e}-cygxml2-2.dll</ZipFileName> - <DestinationFilename>%Base%\Burner\cygxml2-2.dll</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\cygz.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{e9296987-d17c-489d-939b-0509dc983ad6}-cygz.dll</ZipFileName> - <DestinationFilename>%Base%\Burner\cygz.dll</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\dvdauthor.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{24038bc2-8e27-47f0-a18c-51f97c4e5253}-dvdauthor.exe</ZipFileName> - <DestinationFilename>%Base%\Burner\dvdauthor.exe</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\imagequ.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{0a7a0cf2-518e-4a53-b403-33318f96cbb8}-imagequ.exe</ZipFileName> - <DestinationFilename>%Base%\Burner\imagequ.exe</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\libpng12.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{5434b30f-c46c-475c-aa2f-522c41106d5b}-libpng12.dll</ZipFileName> - <DestinationFilename>%Base%\Burner\libpng12.dll</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\libz.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{1b2469f5-6fea-4494-b90a-4d2914723ce6}-libz.dll</ZipFileName> - <DestinationFilename>%Base%\Burner\libz.dll</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\mencoder.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{38e2253a-68af-4254-ac31-d71af885125f}-mencoder.exe</ZipFileName> - <DestinationFilename>%Base%\Burner\mencoder.exe</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\mkisofs.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{f769cb05-e0b9-43cc-9bae-b7b5f187bb6a}-mkisofs.exe</ZipFileName> - <DestinationFilename>%Base%\Burner\mkisofs.exe</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\mpeg2enc.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{bacf02f3-e961-49b3-aab3-3205dbda179a}-mpeg2enc.exe</ZipFileName> - <DestinationFilename>%Base%\Burner\mpeg2enc.exe</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\mplex.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{e77ea0df-001d-4c99-9060-a21a58cc1ca3}-mplex.exe</ZipFileName> - <DestinationFilename>%Base%\Burner\mplex.exe</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\msvcp60.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{5f00a660-3b24-45f0-a889-abaa4be1a7ef}-msvcp60.dll</ZipFileName> - <DestinationFilename>%Base%\Burner\msvcp60.dll</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\msvcrt.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{95bb069e-3721-44c3-9fe1-e67ed1496b13}-msvcrt.dll</ZipFileName> - <DestinationFilename>%Base%\Burner\msvcrt.dll</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\navButton.png</LocalFileName> - <ZipFileName>Installer{CopyFile}\{3c4fe971-a703-4b29-91d0-abc0228f23a6}-navButton.png</ZipFileName> - <DestinationFilename>%Base%\Burner\navButton.png</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\png2yuv.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{1abc2e19-590c-4fcf-8d6e-0f4fee275a4c}-png2yuv.exe</ZipFileName> - <DestinationFilename>%Base%\Burner\png2yuv.exe</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\pthreadGC2.dll</LocalFileName> - <ZipFileName>Installer{CopyFile}\{4474058d-5ab3-4968-9fc2-1de00a28fc55}-pthreadGC2.dll</ZipFileName> - <DestinationFilename>%Base%\Burner\pthreadGC2.dll</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\Silence.ac3</LocalFileName> - <ZipFileName>Installer{CopyFile}\{c604f3a6-cf5e-40c8-8ab0-9348d413cd7b}-Silence.ac3</ZipFileName> - <DestinationFilename>%Base%\Burner\Silence.ac3</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\spumux.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{c64cea2c-1ac8-46f7-b6a5-fc6210bc5d86}-spumux.exe</ZipFileName> - <DestinationFilename>%Base%\Burner\spumux.exe</DestinationFilename> - </FileItem> - <FileItem InstallType="CopyFile" SystemFile="false" Modified="false"> - <Param1 /> - <UpdateOption>OverwriteIfOlder</UpdateOption> - <LocalFileName>..\workspace\burner-for-mp\dep\Burner\submux.exe</LocalFileName> - <ZipFileName>Installer{CopyFile}\{230c9b1d-e34e-46eb-ad18-eb955f1f40bd}-submux.exe</ZipFileName> - <DestinationFilename>%Base%\Burner\submux.exe</DestinationFilename> - </... [truncated message content] |