From: <mab...@us...> - 2007-03-21 17:59:41
|
Revision: 206 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=206&view=rev Author: mablebee Date: 2007-03-21 10:53:54 -0700 (Wed, 21 Mar 2007) Log Message: ----------- Added Paths: ----------- trunk/plugins/autostart/ trunk/plugins/autostart/AutoStart.cs trunk/plugins/autostart/AutoStart.csproj trunk/plugins/autostart/AutoStartConfig.Designer.cs trunk/plugins/autostart/AutoStartConfig.cs trunk/plugins/autostart/AutoStartConfig.resx trunk/plugins/autostart/Properties/ trunk/plugins/autostart/Properties/AssemblyInfo.cs trunk/plugins/autostart/Properties/Resources.Designer.cs trunk/plugins/autostart/Properties/Resources.resx trunk/plugins/autostart/Resources/ trunk/plugins/autostart/Resources/mplogo.gif trunk/plugins/autostart/bin/ trunk/plugins/autostart/bin/Debug/ trunk/plugins/autostart/bin/Debug/AutoStart.dll trunk/plugins/autostart/bin/Debug/AutoStart.pdb trunk/plugins/autostart/bin/Debug/AxInterop.WMPLib.dll trunk/plugins/autostart/bin/Debug/Bass.Net.dll trunk/plugins/autostart/bin/Debug/BassRegistration.dll trunk/plugins/autostart/bin/Debug/Core.DLL trunk/plugins/autostart/bin/Debug/DirectShowLib.dll trunk/plugins/autostart/bin/Debug/ICSharpCode.SharpZipLib.dll trunk/plugins/autostart/bin/Debug/Interop.WMPLib.dll trunk/plugins/autostart/bin/Debug/MediaPortal.Support.dll trunk/plugins/autostart/bin/Debug/MediaPortal.Support.pdb trunk/plugins/autostart/bin/Debug/Microsoft.DirectX.Direct3D.dll trunk/plugins/autostart/bin/Debug/Microsoft.DirectX.Direct3DX.dll trunk/plugins/autostart/bin/Debug/Microsoft.DirectX.dll trunk/plugins/autostart/bin/Debug/Utils.DLL trunk/plugins/autostart/bin/Debug/edtftpnet-1.2.2.dll trunk/plugins/autostart/bin/Release/ trunk/plugins/autostart/bin/Release/AutoStart.dll trunk/plugins/autostart/bin/Release/AutoStart.pdb trunk/plugins/autostart/bin/Release/AxInterop.WMPLib.dll trunk/plugins/autostart/bin/Release/Bass.Net.dll trunk/plugins/autostart/bin/Release/BassRegistration.dll trunk/plugins/autostart/bin/Release/Core.DLL trunk/plugins/autostart/bin/Release/DirectShowLib.dll trunk/plugins/autostart/bin/Release/ICSharpCode.SharpZipLib.dll trunk/plugins/autostart/bin/Release/Interop.WMPLib.dll trunk/plugins/autostart/bin/Release/MediaPortal.Support.dll trunk/plugins/autostart/bin/Release/MediaPortal.Support.pdb trunk/plugins/autostart/bin/Release/Microsoft.DirectX.Direct3D.dll trunk/plugins/autostart/bin/Release/Microsoft.DirectX.Direct3DX.dll trunk/plugins/autostart/bin/Release/Microsoft.DirectX.dll trunk/plugins/autostart/bin/Release/Utils.dll trunk/plugins/autostart/bin/Release/edtftpnet-1.2.2.dll trunk/plugins/autostart/obj/ trunk/plugins/autostart/obj/AutoStart.csproj.FileList.txt trunk/plugins/autostart/obj/Debug/ trunk/plugins/autostart/obj/Debug/AutoStart.csproj.GenerateResource.Cache trunk/plugins/autostart/obj/Debug/AutoStart.dll trunk/plugins/autostart/obj/Debug/AutoStart.pdb trunk/plugins/autostart/obj/Debug/AutoStartConfig.ConfigAutoStart.resources trunk/plugins/autostart/obj/Debug/TempPE/ trunk/plugins/autostart/obj/Release/ trunk/plugins/autostart/obj/Release/AutoStart.csproj.GenerateResource.Cache trunk/plugins/autostart/obj/Release/AutoStart.dll trunk/plugins/autostart/obj/Release/AutoStart.pdb trunk/plugins/autostart/obj/Release/AutoStartConfig.ConfigAutoStart.resources trunk/plugins/autostart/obj/Release/ClassLibrary1.Properties.Resources.resources trunk/plugins/autostart/obj/Release/Refactor/ trunk/plugins/autostart/obj/Release/ResolveAssemblyReference.cache trunk/plugins/autostart/obj/Release/TempPE/ trunk/plugins/autostart/obj/Release/TempPE/Properties.Resources.Designer.cs.dll Added: trunk/plugins/autostart/AutoStart.cs =================================================================== --- trunk/plugins/autostart/AutoStart.cs (rev 0) +++ trunk/plugins/autostart/AutoStart.cs 2007-03-21 17:53:54 UTC (rev 206) @@ -0,0 +1,175 @@ +using System; +using System.Collections.Generic; +using System.Text; +using System.Threading; +using System.Windows.Forms; +using MediaPortal.Util; +using MediaPortal.Profile; +using MediaPortal.Services; +using MediaPortal.Configuration; +using MediaPortal.GUI.Library; +using MediaPortal.Player; +using AutoStartConfig; + +/* AutoStart Generation II + * + * Author: Martin Werner + * + * Version 1.0: 2007-03-19 + * ------------------------- + * Basic functionallity as Process Plugin + * Startup-Choices (TV, Weather, Audio, Video, ...) from available window handles + * Configuration Dialog and settings via mediaportal.xml + * + * Version 1.1: 2007-03-20 + * ------------------------- + * Code cleanup, commenting for better readability + * + *--------------------------------------------------------------------------- + * + * This Program 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, or (at your option) + * any later version. + * + * This Program 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 GNU Make; see the file COPYING. If not, write to + * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + * http://www.gnu.org/copyleft/gpl.html + * + */ + +namespace AutoStart +{ + public class AutoStart : IPlugin, ISetupForm + { + #region vars + + ILog _epgLog; + String l_startwhat = ""; + + #endregion + + #region Ctor + public AutoStart() + { + } + #endregion + + #region IPlugin members + + public void Stop() + { + } + + public void Start() + { + // setup logging + ServiceProvider services = GlobalServiceProvider.Instance; + _epgLog = services.Get<ILog>(); + + // load settings + using (Settings reader = new Settings(Config.GetFile(Config.Dir.Config, "mediaportal.xml"))) + { + l_startwhat = reader.GetValue("autostart", "startscreen"); + } + + Log.Info("AutoStart: started"); + + // Let's see if we could read out something from settings - if so let's try to launch it + if (l_startwhat.Length > 0) + { + Log.Info("AutoStart: Enumerating Windows {0}", l_startwhat); + + Array nativeWindowsList = Enum.GetValues(typeof(GUIWindow.Window)); + foreach (GUIWindow.Window wnd in nativeWindowsList) + { + if (String.Compare(l_startwhat,wnd.ToString()) == 0) + { + // Yep, is a valid window we can try to launch :-) + + // if (Recorder.IsRecording()) <-- maybe we'll need to take care of this sometime... + + GUIWindowManager.ActivateWindow((int)wnd); + Log.Info("AutoStart: Launching Window {0}", (int)wnd); + } + } + } + } + + #endregion + + #region ISetupForm Members + + public string PluginName() + { + return "AutoStart"; + } + + public string Description() + { + return "AutoStart Plugin for MediaPortal"; + } + + public string Author() + { + return "mablebee"; + } + + public void ShowPlugin() + { + // Configure this plugin + ConfigAutoStart l_form = new ConfigAutoStart(); + l_form.Show(); + } + + public bool DefaultEnabled() + { + return false; + } + + public bool CanEnable() + { + return true; + } + + public int GetWindowId() + { + return 47110815; + } + + public bool HasSetup() + { + return true; + } + + /// <summary> + /// If the plugin should have it's own button on the main menu of MediaPortal then it + /// should return true to this method, otherwise if it should not be on home + /// it should return false + /// </summary> + /// <param name="strButtonText">text the button should have</param> + /// <param name="strButtonImage">image for the button, or empty for default</param> + /// <param name="strButtonImageFocus">image for the button, or empty for default</param> + /// <param name="strPictureImage">subpicture for the button or empty for none</param> + /// <returns>true : plugin needs it's own button on home + /// false : plugin does not need it's own button on home</returns> + + public bool GetHome(out string strButtonText, out string strButtonImage, + out string strButtonImageFocus, out string strPictureImage) + { + strButtonText = String.Empty; + strButtonImage = String.Empty; + strButtonImageFocus = String.Empty; + strPictureImage = String.Empty; + return false; + } + + #endregion + } +} Added: trunk/plugins/autostart/AutoStart.csproj =================================================================== --- trunk/plugins/autostart/AutoStart.csproj (rev 0) +++ trunk/plugins/autostart/AutoStart.csproj 2007-03-21 17:53:54 UTC (rev 206) @@ -0,0 +1,82 @@ +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup> + <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> + <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> + <ProductVersion>8.0.50727</ProductVersion> + <SchemaVersion>2.0</SchemaVersion> + <ProjectGuid>{9A71624D-ABAE-4D49-B05D-F1C83DE77C07}</ProjectGuid> + <OutputType>Library</OutputType> + <AppDesignerFolder>Properties</AppDesignerFolder> + <RootNamespace>ClassLibrary1</RootNamespace> + <AssemblyName>AutoStart</AssemblyName> + </PropertyGroup> + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> + <DebugSymbols>true</DebugSymbols> + <DebugType>full</DebugType> + <Optimize>false</Optimize> + <OutputPath>bin\Debug\</OutputPath> + <DefineConstants>DEBUG;TRACE</DefineConstants> + <ErrorReport>prompt</ErrorReport> + <WarningLevel>4</WarningLevel> + </PropertyGroup> + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> + <DebugType>pdbonly</DebugType> + <Optimize>true</Optimize> + <OutputPath>bin\Release\</OutputPath> + <DefineConstants>TRACE</DefineConstants> + <ErrorReport>prompt</ErrorReport> + <WarningLevel>4</WarningLevel> + </PropertyGroup> + <ItemGroup> + <Reference Include="Core, Version=1.0.2634.1793, Culture=neutral, processorArchitecture=x86"> + <SpecificVersion>False</SpecificVersion> + <HintPath>..\..\..\..\..\..\..\Programme\Team MediaPortal\MediaPortal\Core.DLL</HintPath> + </Reference> + <Reference Include="System" /> + <Reference Include="System.Data" /> + <Reference Include="System.Drawing" /> + <Reference Include="System.Windows.Forms" /> + <Reference Include="System.Xml" /> + <Reference Include="Utils, Version=2.1.2634.1787, Culture=neutral, processorArchitecture=x86"> + <SpecificVersion>False</SpecificVersion> + <HintPath>..\..\..\..\..\..\..\Programme\Team MediaPortal\MediaPortal\Utils.DLL</HintPath> + </Reference> + </ItemGroup> + <ItemGroup> + <Compile Include="AutoStart.cs" /> + <Compile Include="AutoStartConfig.cs"> + <SubType>Form</SubType> + </Compile> + <Compile Include="AutoStartConfig.Designer.cs"> + <DependentUpon>AutoStartConfig.cs</DependentUpon> + </Compile> + <Compile Include="Properties\AssemblyInfo.cs" /> + <Compile Include="Properties\Resources.Designer.cs"> + <AutoGen>True</AutoGen> + <DesignTime>True</DesignTime> + <DependentUpon>Resources.resx</DependentUpon> + </Compile> + </ItemGroup> + <ItemGroup> + <EmbeddedResource Include="AutoStartConfig.resx"> + <SubType>Designer</SubType> + <DependentUpon>AutoStartConfig.cs</DependentUpon> + </EmbeddedResource> + <EmbeddedResource Include="Properties\Resources.resx"> + <SubType>Designer</SubType> + <Generator>ResXFileCodeGenerator</Generator> + <LastGenOutput>Resources.Designer.cs</LastGenOutput> + </EmbeddedResource> + </ItemGroup> + <ItemGroup> + <None Include="Resources\mplogo.gif" /> + </ItemGroup> + <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> + <!-- 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"> + </Target> + <Target Name="AfterBuild"> + </Target> + --> +</Project> \ No newline at end of file Added: trunk/plugins/autostart/AutoStartConfig.Designer.cs =================================================================== --- trunk/plugins/autostart/AutoStartConfig.Designer.cs (rev 0) +++ trunk/plugins/autostart/AutoStartConfig.Designer.cs 2007-03-21 17:53:54 UTC (rev 206) @@ -0,0 +1,121 @@ +namespace AutoStartConfig +{ + partial class ConfigAutoStart + { + /// <summary> + /// Erforderliche Designervariable. + /// </summary> + private System.ComponentModel.IContainer components = null; + + /// <summary> + /// Verwendete Ressourcen bereinigen. + /// </summary> + /// <param name="disposing">True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False.</param> + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Vom Windows Form-Designer generierter Code + + /// <summary> + /// Erforderliche Methode für die Designerunterstützung. + /// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden. + /// </summary> + private void InitializeComponent() + { + this.label1 = new System.Windows.Forms.Label(); + this.buttonOK = new System.Windows.Forms.Button(); + this.butCancel = new System.Windows.Forms.Button(); + this.f_combobox = new System.Windows.Forms.ComboBox(); + this.pictureBox1 = new System.Windows.Forms.PictureBox(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); + this.SuspendLayout(); + // + // label1 + // + this.label1.AutoSize = true; + this.label1.BackColor = System.Drawing.SystemColors.Window; + this.label1.Location = new System.Drawing.Point(12, 9); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(66, 13); + this.label1.TabIndex = 0; + this.label1.Text = "Startup with:"; + // + // buttonOK + // + this.buttonOK.Location = new System.Drawing.Point(142, 142); + this.buttonOK.Name = "buttonOK"; + this.buttonOK.Size = new System.Drawing.Size(75, 23); + this.buttonOK.TabIndex = 2; + this.buttonOK.Text = "&OK"; + this.buttonOK.UseVisualStyleBackColor = true; + this.buttonOK.Click += new System.EventHandler(this.button1_Click); + // + // butCancel + // + this.butCancel.Location = new System.Drawing.Point(61, 142); + this.butCancel.Name = "butCancel"; + this.butCancel.Size = new System.Drawing.Size(75, 23); + this.butCancel.TabIndex = 3; + this.butCancel.Text = "&Cancel"; + this.butCancel.UseVisualStyleBackColor = true; + this.butCancel.Click += new System.EventHandler(this.butCancel_Click); + // + // f_combobox + // + this.f_combobox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.f_combobox.FormattingEnabled = true; + this.f_combobox.Items.AddRange(new object[] { + "DVD", + "Radio", + "TV", + "Videos"}); + this.f_combobox.Location = new System.Drawing.Point(84, 6); + this.f_combobox.Name = "f_combobox"; + this.f_combobox.Size = new System.Drawing.Size(192, 21); + this.f_combobox.Sorted = true; + this.f_combobox.TabIndex = 4; + // + // pictureBox1 + // + this.pictureBox1.Image = global::ClassLibrary1.Properties.Resources.mplogo; + this.pictureBox1.Location = new System.Drawing.Point(-33, -17); + this.pictureBox1.Name = "pictureBox1"; + this.pictureBox1.Size = new System.Drawing.Size(420, 290); + this.pictureBox1.TabIndex = 6; + this.pictureBox1.TabStop = false; + // + // ConfigAutoStart + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.SystemColors.Window; + this.ClientSize = new System.Drawing.Size(288, 185); + this.Controls.Add(this.f_combobox); + this.Controls.Add(this.butCancel); + this.Controls.Add(this.buttonOK); + this.Controls.Add(this.label1); + this.Controls.Add(this.pictureBox1); + this.Name = "ConfigAutoStart"; + this.Text = "AutoStart Configuration"; + this.Load += new System.EventHandler(this.AutoStartConfig_Load); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.Label label1; + private System.Windows.Forms.Button buttonOK; + private System.Windows.Forms.Button butCancel; + private System.Windows.Forms.ComboBox f_combobox; + private System.Windows.Forms.PictureBox pictureBox1; + } +} \ No newline at end of file Added: trunk/plugins/autostart/AutoStartConfig.cs =================================================================== --- trunk/plugins/autostart/AutoStartConfig.cs (rev 0) +++ trunk/plugins/autostart/AutoStartConfig.cs 2007-03-21 17:53:54 UTC (rev 206) @@ -0,0 +1,95 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Text; +using System.Windows.Forms; +using MediaPortal.Util; +using MediaPortal.Profile; +using MediaPortal.UserInterface.Controls; +using MediaPortal.Services; +using MediaPortal.Configuration; +using MediaPortal.GUI.Library; + +namespace AutoStartConfig +{ + public partial class ConfigAutoStart : Form + { + ILog _epgLog; + + public ConfigAutoStart() + { + InitializeComponent(); + + // setup logging + ServiceProvider services = GlobalServiceProvider.Instance; + _epgLog = services.Get<ILog>(); + + Array nativeWindowsList = Enum.GetValues(typeof(GUIWindow.Window)); + + f_combobox.Items.Clear(); + + foreach (GUIWindow.Window wnd in nativeWindowsList) + { + String l_itemtoadd; + + l_itemtoadd = wnd.ToString().Substring(7); + + // Lets get rid of some unneeded windows for the combobox + if (((l_itemtoadd.IndexOf("SETTINGS") != -1) || + (l_itemtoadd.IndexOf("STATUS") != -1) || + (l_itemtoadd.IndexOf("_") != -1) || + (l_itemtoadd.IndexOf("INVALID") != -1) || + (l_itemtoadd.IndexOf("DIALOG") != -1) || + (l_itemtoadd.IndexOf("WIZARD") != -1)) == false) + { + // Add Windows Handles to List + f_combobox.Items.Add(l_itemtoadd); + //Log.Info("AutoStartConfig: Found Windows {0}", wnd.ToString()); + } + } + } + + private void AutoStartConfig_Load(object sender, EventArgs e) + { + LoadSettings(); + } + + private void SaveSettings() + { + // save settings + using (Settings writer = new Settings(Config.GetFile(Config.Dir.Config, "mediaportal.xml"))) + { + writer.SetValue("autostart","startscreen","WINDOW_"+f_combobox.SelectedItem.ToString()); + } + } + + + private void LoadSettings() + { + // load settings + using (Settings reader = new Settings(Config.GetFile(Config.Dir.Config, "mediaportal.xml"))) + { + String l_setting = reader.GetValue("autostart", "startscreen"); + Log.Info("AutoStartConfig: Loaded Config-Value {0}", l_setting); + + f_combobox.SelectedIndex = f_combobox.FindString(l_setting.Substring(7)); + + } + } + private void button1_Click(object sender, EventArgs e) + { + SaveSettings(); + Close(); + } + + private void butCancel_Click(object sender, EventArgs e) + { + // Closing without saving... + Close(); + } + + + } +} \ No newline at end of file Added: trunk/plugins/autostart/AutoStartConfig.resx =================================================================== --- trunk/plugins/autostart/AutoStartConfig.resx (rev 0) +++ trunk/plugins/autostart/AutoStartConfig.resx 2007-03-21 17:53:54 UTC (rev 206) @@ -0,0 +1,120 @@ +<?xml version="1.0" encoding="utf-8"?> +<root> + <!-- + Microsoft ResX Schema + + Version 2.0 + + The primary goals of this format is to allow a simple XML format + that is mostly human readable. The generation and parsing of the + various data types are done through the TypeConverter classes + associated with the data types. + + Example: + + ... ado.net/XML headers & schema ... + <resheader name="resmimetype">text/microsoft-resx</resheader> + <resheader name="version">2.0</resheader> + <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> + <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> + <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> + <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> + <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> + <value>[base64 mime encoded serialized .NET Framework object]</value> + </data> + <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> + <comment>This is a comment</comment> + </data> + + There are any number of "resheader" rows that contain simple + name/value pairs. + + Each data row contains a name, and value. The row also contains a + type or mimetype. Type corresponds to a .NET class that support + text/value conversion through the TypeConverter architecture. + Classes that don't support this are serialized and stored with the + mimetype set. + + The mimetype is used for serialized objects, and tells the + ResXResourceReader how to depersist the object. This is currently not + extensible. For a given mimetype the value must be set accordingly: + + Note - application/x-microsoft.net.object.binary.base64 is the format + that the ResXResourceWriter will generate, however the reader can + read any of the formats listed below. + + mimetype: application/x-microsoft.net.object.binary.base64 + value : The object must be serialized with + : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter + : and then encoded with base64 encoding. + + mimetype: application/x-microsoft.net.object.soap.base64 + value : The object must be serialized with + : System.Runtime.Serialization.Formatters.Soap.SoapFormatter + : and then encoded with base64 encoding. + + mimetype: application/x-microsoft.net.object.bytearray.base64 + value : The object must be serialized into a byte array + : using a System.ComponentModel.TypeConverter + : and then encoded with base64 encoding. + --> + <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> + <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> + <xsd:element name="root" msdata:IsDataSet="true"> + <xsd:complexType> + <xsd:choice maxOccurs="unbounded"> + <xsd:element name="metadata"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" /> + </xsd:sequence> + <xsd:attribute name="name" use="required" type="xsd:string" /> + <xsd:attribute name="type" type="xsd:string" /> + <xsd:attribute name="mimetype" type="xsd:string" /> + <xsd:attribute ref="xml:space" /> + </xsd:complexType> + </xsd:element> + <xsd:element name="assembly"> + <xsd:complexType> + <xsd:attribute name="alias" type="xsd:string" /> + <xsd:attribute name="name" type="xsd:string" /> + </xsd:complexType> + </xsd:element> + <xsd:element name="data"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> + <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> + </xsd:sequence> + <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> + <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> + <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> + <xsd:attribute ref="xml:space" /> + </xsd:complexType> + </xsd:element> + <xsd:element name="resheader"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> + </xsd:sequence> + <xsd:attribute name="name" type="xsd:string" use="required" /> + </xsd:complexType> + </xsd:element> + </xsd:choice> + </xsd:complexType> + </xsd:element> + </xsd:schema> + <resheader name="resmimetype"> + <value>text/microsoft-resx</value> + </resheader> + <resheader name="version"> + <value>2.0</value> + </resheader> + <resheader name="reader"> + <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> + </resheader> + <resheader name="writer"> + <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> + </resheader> +</root> \ No newline at end of file Added: trunk/plugins/autostart/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/autostart/Properties/AssemblyInfo.cs (rev 0) +++ trunk/plugins/autostart/Properties/AssemblyInfo.cs 2007-03-21 17:53:54 UTC (rev 206) @@ -0,0 +1,35 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// 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. +[assembly: AssemblyTitle("ClassLibrary1")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("ClassLibrary1")] +[assembly: AssemblyCopyright("Copyright © 2007")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Durch Festlegen von ComVisible auf "false" werden die Typen in dieser Assembly unsichtbar +// für COM-Komponenten. Wenn Sie auf einen Typ in dieser Assembly von +// COM zugreifen müssen, legen Sie das ComVisible-Attribut für diesen Typ auf "true" fest. +[assembly: ComVisible(false)] + +// Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird +[assembly: Guid("3aa97c20-f35a-4ded-b3f1-3bb3236339ca")] + +// Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten: +// +// Hauptversion +// Nebenversion +// Buildnummer +// Revision +// +// Sie können alle Werte angeben oder die standardmäßigen Revisions- und Buildnummern +// übernehmen, indem Sie "*" eingeben: +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] Added: trunk/plugins/autostart/Properties/Resources.Designer.cs =================================================================== --- trunk/plugins/autostart/Properties/Resources.Designer.cs (rev 0) +++ trunk/plugins/autostart/Properties/Resources.Designer.cs 2007-03-21 17:53:54 UTC (rev 206) @@ -0,0 +1,70 @@ +//------------------------------------------------------------------------------ +// <auto-generated> +// Dieser Code wurde von einem Tool generiert. +// Laufzeitversion:2.0.50727.42 +// +// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn +// der Code erneut generiert wird. +// </auto-generated> +//------------------------------------------------------------------------------ + +namespace ClassLibrary1.Properties { + using System; + + + /// <summary> + /// Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw. + /// </summary> + // Diese Klasse wurde von der StronglyTypedResourceBuilder automatisch generiert + // -Klasse über ein Tool wie ResGen oder Visual Studio automatisch generiert. + // Um einen Member hinzuzufügen oder zu entfernen, bearbeiten Sie die .ResX-Datei und führen dann ResGen + // mit der /str-Option erneut aus, oder Sie erstellen Ihr VS-Projekt neu. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "2.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Resources { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Resources() { + } + + /// <summary> + /// Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird. + /// </summary> + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ClassLibrary1.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// <summary> + /// Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle + /// Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden. + /// </summary> + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + internal static System.Drawing.Bitmap mplogo { + get { + object obj = ResourceManager.GetObject("mplogo", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + } +} Added: trunk/plugins/autostart/Properties/Resources.resx =================================================================== --- trunk/plugins/autostart/Properties/Resources.resx (rev 0) +++ trunk/plugins/autostart/Properties/Resources.resx 2007-03-21 17:53:54 UTC (rev 206) @@ -0,0 +1,124 @@ +<?xml version="1.0" encoding="utf-8"?> +<root> + <!-- + Microsoft ResX Schema + + Version 2.0 + + The primary goals of this format is to allow a simple XML format + that is mostly human readable. The generation and parsing of the + various data types are done through the TypeConverter classes + associated with the data types. + + Example: + + ... ado.net/XML headers & schema ... + <resheader name="resmimetype">text/microsoft-resx</resheader> + <resheader name="version">2.0</resheader> + <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> + <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> + <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> + <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> + <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> + <value>[base64 mime encoded serialized .NET Framework object]</value> + </data> + <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> + <comment>This is a comment</comment> + </data> + + There are any number of "resheader" rows that contain simple + name/value pairs. + + Each data row contains a name, and value. The row also contains a + type or mimetype. Type corresponds to a .NET class that support + text/value conversion through the TypeConverter architecture. + Classes that don't support this are serialized and stored with the + mimetype set. + + The mimetype is used for serialized objects, and tells the + ResXResourceReader how to depersist the object. This is currently not + extensible. For a given mimetype the value must be set accordingly: + + Note - application/x-microsoft.net.object.binary.base64 is the format + that the ResXResourceWriter will generate, however the reader can + read any of the formats listed below. + + mimetype: application/x-microsoft.net.object.binary.base64 + value : The object must be serialized with + : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter + : and then encoded with base64 encoding. + + mimetype: application/x-microsoft.net.object.soap.base64 + value : The object must be serialized with + : System.Runtime.Serialization.Formatters.Soap.SoapFormatter + : and then encoded with base64 encoding. + + mimetype: application/x-microsoft.net.object.bytearray.base64 + value : The object must be serialized into a byte array + : using a System.ComponentModel.TypeConverter + : and then encoded with base64 encoding. + --> + <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> + <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> + <xsd:element name="root" msdata:IsDataSet="true"> + <xsd:complexType> + <xsd:choice maxOccurs="unbounded"> + <xsd:element name="metadata"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" /> + </xsd:sequence> + <xsd:attribute name="name" use="required" type="xsd:string" /> + <xsd:attribute name="type" type="xsd:string" /> + <xsd:attribute name="mimetype" type="xsd:string" /> + <xsd:attribute ref="xml:space" /> + </xsd:complexType> + </xsd:element> + <xsd:element name="assembly"> + <xsd:complexType> + <xsd:attribute name="alias" type="xsd:string" /> + <xsd:attribute name="name" type="xsd:string" /> + </xsd:complexType> + </xsd:element> + <xsd:element name="data"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> + <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> + </xsd:sequence> + <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> + <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> + <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> + <xsd:attribute ref="xml:space" /> + </xsd:complexType> + </xsd:element> + <xsd:element name="resheader"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> + </xsd:sequence> + <xsd:attribute name="name" type="xsd:string" use="required" /> + </xsd:complexType> + </xsd:element> + </xsd:choice> + </xsd:complexType> + </xsd:element> + </xsd:schema> + <resheader name="resmimetype"> + <value>text/microsoft-resx</value> + </resheader> + <resheader name="version"> + <value>2.0</value> + </resheader> + <resheader name="reader"> + <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> + </resheader> + <resheader name="writer"> + <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> + </resheader> + <assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" /> + <data name="mplogo" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\mplogo.gif;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> +</root> \ No newline at end of file Added: trunk/plugins/autostart/Resources/mplogo.gif =================================================================== (Binary files differ) Property changes on: trunk/plugins/autostart/Resources/mplogo.gif ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/plugins/autostart/bin/Debug/AutoStart.dll =================================================================== (Binary files differ) Property changes on: trunk/plugins/autostart/bin/Debug/AutoStart.dll ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/plugins/autostart/bin/Debug/AutoStart.pdb =================================================================== (Binary files differ) Property changes on: trunk/plugins/autostart/bin/Debug/AutoStart.pdb ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/plugins/autostart/bin/Debug/AxInterop.WMPLib.dll =================================================================== (Binary files differ) Property changes on: trunk/plugins/autostart/bin/Debug/AxInterop.WMPLib.dll ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/plugins/autostart/bin/Debug/Bass.Net.dll =================================================================== (Binary files differ) Property changes on: trunk/plugins/autostart/bin/Debug/Bass.Net.dll ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/plugins/autostart/bin/Debug/BassRegistration.dll =================================================================== (Binary files differ) Property changes on: trunk/plugins/autostart/bin/Debug/BassRegistration.dll ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/plugins/autostart/bin/Debug/Core.DLL =================================================================== (Binary files differ) Property changes on: trunk/plugins/autostart/bin/Debug/Core.DLL ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/plugins/autostart/bin/Debug/DirectShowLib.dll =================================================================== (Binary files differ) Property changes on: trunk/plugins/autostart/bin/Debug/DirectShowLib.dll ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/plugins/autostart/bin/Debug/ICSharpCode.SharpZipLib.dll =================================================================== (Binary files differ) Property changes on: trunk/plugins/autostart/bin/Debug/ICSharpCode.SharpZipLib.dll ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/plugins/autostart/bin/Debug/Interop.WMPLib.dll =================================================================== (Binary files differ) Property changes on: trunk/plugins/autostart/bin/Debug/Interop.WMPLib.dll ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/plugins/autostart/bin/Debug/MediaPortal.Support.dll =================================================================== (Binary files differ) Property changes on: trunk/plugins/autostart/bin/Debug/MediaPortal.Support.dll ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/plugins/autostart/bin/Debug/MediaPortal.Support.pdb =================================================================== (Binary files differ) Property changes on: trunk/plugins/autostart/bin/Debug/MediaPortal.Support.pdb ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/plugins/autostart/bin/Debug/Microsoft.DirectX.Direct3D.dll =================================================================== (Binary files differ) Property changes on: trunk/plugins/autostart/bin/Debug/Microsoft.DirectX.Direct3D.dll ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/plugins/autostart/bin/Debug/Microsoft.DirectX.Direct3DX.dll =================================================================== (Binary files differ) Property changes on: trunk/plugins/autostart/bin/Debug/Microsoft.DirectX.Direct3DX.dll ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/plugins/autostart/bin/Debug/Microsoft.DirectX.dll =================================================================== (Binary files differ) Property changes on: trunk/plugins/autostart/bin/Debug/Microsoft.DirectX.dll ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/plugins/autostart/bin/Debug/Utils.DLL =================================================================== (Binary files differ) Property changes on: trunk/plugins/autostart/bin/Debug/Utils.DLL ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/plugins/autostart/bin/Debug/edtftpnet-1.2.2.dll =================================================================== (Binary files differ) Property changes on: trunk/plugins/autostart/bin/Debug/edtftpnet-1.2.2.dll ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/plugins/autostart/bin/Release/AutoStart.dll =================================================================== (Binary files differ) Property changes on: trunk/plugins/autostart/bin/Release/AutoStart.dll ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/plugins/autostart/bin/Release/AutoStart.pdb =================================================================== (Binary files differ) Property changes on: trunk/plugins/autostart/bin/Release/AutoStart.pdb ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/plugins/autostart/bin/Release/AxInterop.WMPLib.dll =================================================================== (Binary files differ) Property changes on: trunk/plugins/autostart/bin/Release/AxInterop.WMPLib.dll ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/plugins/autostart/bin/Release/Bass.Net.dll =================================================================== (Binary files differ) Property changes on: trunk/plugins/autostart/bin/Release/Bass.Net.dll ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/plugins/autostart/bin/Release/BassRegistration.dll =================================================================== (Binary files differ) Property changes on: trunk/plugins/autostart/bin/Release/BassRegistration.dll ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/plugins/autostart/bin/Release/Core.DLL =================================================================== (Binary files differ) Property changes on: trunk/plugins/autostart/bin/Release/Core.DLL ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/plugins/autostart/bin/Release/DirectShowLib.dll =================================================================== (Binary files differ) Property changes on: trunk/plugins/autostart/bin/Release/DirectShowLib.dll ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/plugins/autostart/bin/Release/ICSharpCode.SharpZipLib.dll =================================================================== (Binary files differ) Property changes on: trunk/plugins/autostart/bin/Release/ICSharpCode.SharpZipLib.dll ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/plugins/autostart/bin/Release/Interop.WMPLib.dll =================================================================== (Binary files differ) Property changes on: trunk/plugins/autostart/bin/Release/Interop.WMPLib.dll ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/plugins/autostart/bin/Release/MediaPortal.Support.dll =================================================================== (Binary files differ) Property changes on: trunk/plugins/autostart/bin/Release/MediaPortal.Support.dll ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/plugins/autostart/bin/Release/MediaPortal.Support.pdb =================================================================== (Binary files differ) Property changes on: trunk/plugins/autostart/bin/Release/MediaPortal.Support.pdb ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/plugins/autostart/bin/Release/Microsoft.DirectX.Direct3D.dll =================================================================== (Binary files differ) Property changes on: trunk/plugins/autostart/bin/Release/Microsoft.DirectX.Direct3D.dll ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/plugins/autostart/bin/Release/Microsoft.DirectX.Direct3DX.dll =================================================================== (Binary files differ) Property changes on: trunk/plugins/autostart/bin/Release/Microsoft.DirectX.Direct3DX.dll ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/plugins/autostart/bin/Release/Microsoft.DirectX.dll =================================================================== (Binary files differ) Property changes on: trunk/plugins/autostart/bin/Release/Microsoft.DirectX.dll ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/plugins/autostart/bin/Release/Utils.dll =================================================================== (Binary files differ) Property changes on: trunk/plugins/autostart/bin/Release/Utils.dll ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/plugins/autostart/bin/Release/edtftpnet-1.2.2.dll =================================================================== (Binary files differ) Property changes on: trunk/plugins/autostart/bin/Release/edtftpnet-1.2.2.dll ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/plugins/autostart/obj/AutoStart.csproj.FileList.txt =================================================================== --- trunk/plugins/autostart/obj/AutoStart.csproj.FileList.txt (rev 0) +++ trunk/plugins/autostart/obj/AutoStart.csproj.FileList.txt 2007-03-21 17:53:54 UTC (rev 206) @@ -0,0 +1,43 @@ +obj\Release\ResolveAssemblyReference.cache +bin\Release\AutoStart.dll +bin\Release\AutoStart.pdb +bin\Release\Core.DLL +bin\Release\Microsoft.DirectX.Direct3DX.dll +bin\Release\Microsoft.DirectX.Direct3D.dll +bin\Release\Microsoft.DirectX.dll +bin\Release\DirectShowLib.dll +bin\Release\Utils.dll +bin\Release\edtftpnet-1.2.2.dll +bin\Release\Interop.WMPLib.dll +bin\Release\MediaPortal.Support.dll +bin\Release\ICSharpCode.SharpZipLib.dll +bin\Release\BassRegistration.dll +bin\Release\Bass.Net.dll +bin\Release\AxInterop.WMPLib.dll +bin\Release\MediaPortal.Support.pdb +obj\Release\AutoStart.dll +obj\Release\AutoStart.pdb +obj\Release\AutoStart.csproj.GenerateResource.Cache +obj\Release\AutoStartConfig.ConfigAutoStart.resources +bin\Debug\AutoStart.dll +bin\Debug\AutoStart.pdb +bin\Debug\Core.DLL +bin\Debug\Utils.DLL +bin\Debug\Microsoft.DirectX.Direct3DX.dll +bin\Debug\Microsoft.DirectX.dll +bin\Debug\DirectShowLib.dll +bin\Debug\Microsoft.DirectX.Direct3D.dll +bin\Debug\edtftpnet-1.2.2.dll +bin\Debug\Interop.WMPLib.dll +bin\Debug\MediaPortal.Support.dll +bin\Debug\ICSharpCode.SharpZipLib.dll +bin\Debug\BassRegistration.dll +bin\Debug\Bass.Net.dll +bin\Debug\AxInterop.WMPLib.dll +bin\Debug\MediaPortal.Support.pdb +obj\Debug\ResolveAssemblyReference.cache +obj\Debug\AutoStartConfig.ConfigAutoStart.resources +obj\Debug\AutoStart.csproj.GenerateResource.Cache +obj\Debug\AutoStart.dll +obj\Debug\AutoStart.pdb +obj\Release\ClassLibrary1.Properties.Resources.resources Added: trunk/plugins/autostart/obj/Debug/AutoStart.csproj.GenerateResource.Cache =================================================================== (Binary files differ) Property changes on: trunk/plugins/autostart/obj/Debug/AutoStart.csproj.GenerateResource.Cache ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/plugins/autostart/obj/Debug/AutoStart.dll =================================================================== (Binary files differ) Property changes on: trunk/plugins/autostart/obj/Debug/AutoStart.dll ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/plugins/autostart/obj/Debug/AutoStart.pdb =================================================================== (Binary files differ) Property changes on: trunk/plugins/autostart/obj/Debug/AutoStart.pdb ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/plugins/autostart/obj/Debug/AutoStartConfig.ConfigAutoStart.resources =================================================================== (Binary files differ) Property changes on: trunk/plugins/autostart/obj/Debug/AutoStartConfig.ConfigAutoStart.resources ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/plugins/autostart/obj/Release/AutoStart.csproj.GenerateResource.Cache =================================================================== (Binary files differ) Property changes on: trunk/plugins/autostart/obj/Release/AutoStart.csproj.GenerateResource.Cache ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/plugins/autostart/obj/Release/AutoStart.dll =================================================================== (Binary files differ) Property changes on: trunk/plugins/autostart/obj/Release/AutoStart.dll ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/plugins/autostart/obj/Release/AutoStart.pdb =================================================================== (Binary files differ) Property changes on: trunk/plugins/autostart/obj/Release/AutoStart.pdb ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/plugins/autostart/obj/Release/AutoStartConfig.ConfigAutoStart.resources =================================================================== (Binary files differ) Property changes on: trunk/plugins/autostart/obj/Release/AutoStartConfig.ConfigAutoStart.resources ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/plugins/autostart/obj/Release/ClassLibrary1.Properties.Resources.resources =================================================================== (Binary files differ) Property changes on: trunk/plugins/autostart/obj/Release/ClassLibrary1.Properties.Resources.resources ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/plugins/autostart/obj/Release/ResolveAssemblyReference.cache =================================================================== (Binary files differ) Property changes on: trunk/plugins/autostart/obj/Release/ResolveAssemblyReference.cache ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/plugins/autostart/obj/Release/TempPE/Properties.Resources.Designer.cs.dll =================================================================== (Binary files differ) Property changes on: trunk/plugins/autostart/obj/Release/TempPE/Properties.Resources.Designer.cs.dll ___________________________________________________________________ Name: svn:mime-type + application/octet-stream This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |