|
From: <jmb...@us...> - 2013-03-14 09:14:18
|
Revision: 4541
http://sourceforge.net/p/mp-plugins/code/4541
Author: jmbillings
Date: 2013-03-14 09:14:14 +0000 (Thu, 14 Mar 2013)
Log Message:
-----------
commit
Added Paths:
-----------
trunk/plugins/APODPlugin/APODPlugin/
trunk/plugins/APODPlugin/APODPlugin/APODDownloader.cs
trunk/plugins/APODPlugin/APODPlugin/APODPlugin.cs
trunk/plugins/APODPlugin/APODPlugin/APODPlugin.csproj
trunk/plugins/APODPlugin/APODPlugin/APODPlugin.xml
trunk/plugins/APODPlugin/APODPlugin/Properties/
trunk/plugins/APODPlugin/APODPlugin/Properties/AssemblyInfo.cs
trunk/plugins/APODPlugin/APODPlugin/bin/
trunk/plugins/APODPlugin/APODPlugin/bin/Debug/
trunk/plugins/APODPlugin/APODPlugin/bin/Debug/APODPlugin.dll
trunk/plugins/APODPlugin/APODPlugin/bin/Debug/APODPlugin.pdb
trunk/plugins/APODPlugin/APODPlugin/bin/Debug/APODPlugin.xml
trunk/plugins/APODPlugin/APODPlugin/bin/Debug/AxInterop.WMPLib.dll
trunk/plugins/APODPlugin/APODPlugin/bin/Debug/Bass.Net.dll
trunk/plugins/APODPlugin/APODPlugin/bin/Debug/BassRegistration.dll
trunk/plugins/APODPlugin/APODPlugin/bin/Debug/BassVisAPI.Net.dll
trunk/plugins/APODPlugin/APODPlugin/bin/Debug/Common.Utils.dll
trunk/plugins/APODPlugin/APODPlugin/bin/Debug/Core.dll
trunk/plugins/APODPlugin/APODPlugin/bin/Debug/Dialogs.dll
trunk/plugins/APODPlugin/APODPlugin/bin/Debug/DirectShowLib.dll
trunk/plugins/APODPlugin/APODPlugin/bin/Debug/Interop.WMPLib.dll
trunk/plugins/APODPlugin/APODPlugin/bin/Debug/Ionic.Zip.dll
trunk/plugins/APODPlugin/APODPlugin/bin/Debug/MediaPortal.Support.dll
trunk/plugins/APODPlugin/APODPlugin/bin/Debug/Utils.dll
trunk/plugins/APODPlugin/APODPlugin/bin/Debug/edtftpnet-1.2.2.dll
trunk/plugins/APODPlugin/APODPlugin/bin/Debug/log4net.dll
trunk/plugins/APODPlugin/APODPlugin/bin/Debug/taglib-sharp.dll
trunk/plugins/APODPlugin/APODPlugin/bin/Release/
trunk/plugins/APODPlugin/APODPlugin/obj/
trunk/plugins/APODPlugin/APODPlugin/obj/Debug/
trunk/plugins/APODPlugin/APODPlugin/obj/Debug/APODPlugin.csproj.FileListAbsolute.txt
trunk/plugins/APODPlugin/APODPlugin/obj/Debug/APODPlugin.dll
trunk/plugins/APODPlugin/APODPlugin/obj/Debug/APODPlugin.pdb
trunk/plugins/APODPlugin/APODPlugin/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
trunk/plugins/APODPlugin/APODPlugin/obj/Debug/TempPE/
trunk/plugins/APODPlugin/APODPlugin.sln
trunk/plugins/APODPlugin/APODPlugin.v11.suo
Added: trunk/plugins/APODPlugin/APODPlugin/APODDownloader.cs
===================================================================
--- trunk/plugins/APODPlugin/APODPlugin/APODDownloader.cs (rev 0)
+++ trunk/plugins/APODPlugin/APODPlugin/APODDownloader.cs 2013-03-14 09:14:14 UTC (rev 4541)
@@ -0,0 +1,118 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Text.RegularExpressions;
+using System.Net;
+using System.IO;
+using System.Drawing;
+
+namespace APODPlugin
+{
+ class APODDownloader
+ {
+ String APODURL = "http://apod.nasa.gov/apod/astropix.html";
+ internal event downloadErrorEvent onDownloadError;
+ internal event downloadCompleteEvent onDownloadComplete;
+ public delegate void downloadErrorEvent(object sender, downloadErrorEventArgs e);
+ public delegate void downloadCompleteEvent(object sender, downloadCompleteEventArgs e);
+ WebClient client;
+ WebClient imageClient;
+
+ internal APODDownloader()
+ {
+ client = new WebClient();
+ GetImage();
+ }
+
+ internal void GetImage()
+ {
+ client.OpenReadCompleted += new OpenReadCompletedEventHandler(readComplete);
+ client.OpenReadAsync(new Uri(APODURL));
+ }
+
+ private void readComplete(object sender, OpenReadCompletedEventArgs args)
+ {
+ if (args.Error != null)
+ {
+ onDownloadError(this, new downloadErrorEventArgs(args.Error));
+ }
+ else
+ {
+ try
+ {
+ Stream resultStream = args.Result;
+ if (!resultStream.CanRead)
+ return;
+
+ StreamReader sr = new StreamReader(resultStream);
+ String pagesource = sr.ReadToEnd();
+ sr.Close();
+ resultStream.Close();
+ sr.Dispose();
+ resultStream.Dispose();
+ client.OpenReadCompleted -= readComplete;
+ client.Dispose();
+
+ Match sourceMatcher = Regex.Match(pagesource, "(?<=<IMG SRC=\")(.+?)(?=\")", RegexOptions.Singleline);
+ if (sourceMatcher.Success)
+ {
+ String imageURL = "http://apod.nasa.gov/apod/" + sourceMatcher.Value;
+ downloadImage(imageURL);
+ }
+ else
+ {
+ onDownloadError(this, new downloadErrorEventArgs(new Exception("Couldn't find image source :(")));
+ }
+ }
+ catch (Exception ex)
+ {
+ onDownloadError(this, new downloadErrorEventArgs(ex));
+ }
+ }
+ }
+
+ private void downloadImage(String imageURL)
+ {
+ imageClient = new WebClient();
+ imageClient.OpenReadCompleted += new OpenReadCompletedEventHandler(imageReadComplete);
+ imageClient.OpenReadAsync(new Uri(imageURL));
+ }
+
+ private void imageReadComplete(object sender, OpenReadCompletedEventArgs args)
+ {
+ if (args.Error != null)
+ {
+ onDownloadError(this, new downloadErrorEventArgs(args.Error));
+ }
+ else
+ {
+ Stream resultStream = args.Result;
+ Image bitmap = Bitmap.FromStream(resultStream);
+ resultStream.Close();
+ resultStream.Dispose();
+ imageClient.Dispose();
+
+ onDownloadComplete(this, new downloadCompleteEventArgs(bitmap));
+ }
+ }
+ }
+
+ internal class downloadErrorEventArgs : EventArgs
+ {
+ internal Exception downloadException;
+ internal downloadErrorEventArgs(Exception ex)
+ {
+ downloadException = ex;
+ }
+ }
+
+ internal class downloadCompleteEventArgs : EventArgs
+ {
+ internal Image bitmap;
+ internal downloadCompleteEventArgs(Image b)
+ {
+ bitmap = b;
+ }
+ }
+}
Added: trunk/plugins/APODPlugin/APODPlugin/APODPlugin.cs
===================================================================
--- trunk/plugins/APODPlugin/APODPlugin/APODPlugin.cs (rev 0)
+++ trunk/plugins/APODPlugin/APODPlugin/APODPlugin.cs 2013-03-14 09:14:14 UTC (rev 4541)
@@ -0,0 +1,152 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Windows.Forms;
+using MediaPortal.GUI.Library;
+using MediaPortal.Dialogs;
+
+
+namespace APODPlugin
+{
+ public class APODPlugin : GUIWindow, ISetupForm
+ {
+ [SkinControlAttribute(4)]
+ protected GUIImage image = null;
+
+ public APODPlugin()
+ {
+ }
+
+ #region ISetupForm Members
+
+ // Returns the name of the plugin which is shown in the plugin menu
+ public string PluginName()
+ {
+ return "APOD";
+ }
+
+ // Returns the description of the plugin is shown in the plugin menu
+ public string Description()
+ {
+ return "Astronomy Picture of the day";
+ }
+
+ // Returns the author of the plugin which is shown in the plugin menu
+ public string Author()
+ {
+ return "jmbillings";
+ }
+
+ // show the setup dialog
+ public void ShowPlugin()
+ {
+ MessageBox.Show("Nothing to configure, this is just an example");
+ }
+
+ // Indicates whether plugin can be enabled/disabled
+ public bool CanEnable()
+ {
+ return true;
+ }
+
+ // Get Windows-ID
+ public int GetWindowId()
+ {
+ // WindowID of windowplugin belonging to this setup
+ // enter your own unique code
+ return 3355;
+ }
+
+ // Indicates if plugin is enabled by default;
+ public bool DefaultEnabled()
+ {
+ return true;
+ }
+
+ // indicates if a plugin has it's own setup screen
+ 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 = PluginName();
+ strButtonImage = String.Empty;
+ strButtonImageFocus = String.Empty;
+ strPictureImage = String.Empty;
+ return true;
+ }
+
+ // With GetID it will be an window-plugin / otherwise a process-plugin
+ // Enter the id number here again
+ public override int GetID
+ {
+ get
+ {
+ return 3355;
+ }
+ set { }
+ }
+
+ #endregion
+
+ public override bool Init()
+ {
+ return Load(GUIGraphicsContext.Skin + @"\APODPlugin.xml");
+ }
+
+ protected override void OnPageLoad()
+ {
+ GUIWaitCursor.Show();
+ APODDownloader downloader = new APODDownloader();
+ downloader.onDownloadError += downloader_onDownloadError;
+ downloader.onDownloadComplete += downloader_onDownloadComplete;
+ downloader.GetImage();
+ }
+
+ void downloader_onDownloadComplete(object sender, downloadCompleteEventArgs e)
+ {
+ //Scale bitmap
+
+ e.bitmap.Save(System.IO.Path.GetTempPath() + "\\apod.jpg");
+
+
+ image.SetFileName(System.IO.Path.GetTempPath() + "\\apod.jpg");
+ image.KeepAspectRatio = true;
+ image.HorizontalContentAlignment = MediaPortal.Drawing.HorizontalAlignment.Center;
+ image.HorizontalAlignment = MediaPortal.Drawing.HorizontalAlignment.Center;
+ image.VerticalAlignment = MediaPortal.Drawing.VerticalAlignment.Center;
+ image.BringIntoView();
+ image.Refresh();
+
+ GUIWaitCursor.Hide();
+ }
+
+ void downloader_onDownloadError(object sender, downloadErrorEventArgs e)
+ {
+ GUIWaitCursor.Hide();
+ GUIDialogOK dlgOK = (GUIDialogOK)GUIWindowManager.GetWindow((int)GUIWindow.Window.WINDOW_DIALOG_OK);
+ if (dlgOK != null)
+ {
+ dlgOK.SetHeading("Error" /* or Message */);
+ dlgOK.SetLine(1, "An exception occurred during download:");
+ dlgOK.SetLine(2, e.downloadException.Message);
+ dlgOK.DoModal(this.GetWindowId());
+ }
+ }
+ }
+}
Added: trunk/plugins/APODPlugin/APODPlugin/APODPlugin.csproj
===================================================================
--- trunk/plugins/APODPlugin/APODPlugin/APODPlugin.csproj (rev 0)
+++ trunk/plugins/APODPlugin/APODPlugin/APODPlugin.csproj 2013-03-14 09:14:14 UTC (rev 4541)
@@ -0,0 +1,75 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
+ <PropertyGroup>
+ <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
+ <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
+ <ProjectGuid>{A9F253DB-5825-4319-928C-650B6D76DC5F}</ProjectGuid>
+ <OutputType>Library</OutputType>
+ <AppDesignerFolder>Properties</AppDesignerFolder>
+ <RootNamespace>APODPlugin</RootNamespace>
+ <AssemblyName>APODPlugin</AssemblyName>
+ <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
+ <FileAlignment>512</FileAlignment>
+ <TargetFrameworkProfile />
+ </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="Common.Utils, Version=1.2.300.0, Culture=neutral, processorArchitecture=MSIL">
+ <SpecificVersion>False</SpecificVersion>
+ <HintPath>..\..\..\..\..\..\..\Program Files (x86)\Team MediaPortal\MediaPortal\Common.Utils.dll</HintPath>
+ </Reference>
+ <Reference Include="Core">
+ <HintPath>..\..\..\..\..\..\..\Program Files (x86)\Team MediaPortal\MediaPortal\Core.dll</HintPath>
+ </Reference>
+ <Reference Include="Dialogs">
+ <HintPath>..\..\..\..\..\..\..\Program Files (x86)\Team MediaPortal\MediaPortal\plugins\Windows\Dialogs.dll</HintPath>
+ </Reference>
+ <Reference Include="MediaPortal.Support, Version=1.2.300.0, Culture=neutral, processorArchitecture=MSIL">
+ <SpecificVersion>False</SpecificVersion>
+ <HintPath>..\..\..\..\..\..\..\Program Files (x86)\Team MediaPortal\MediaPortal\MediaPortal.Support.dll</HintPath>
+ </Reference>
+ <Reference Include="System" />
+ <Reference Include="System.Core" />
+ <Reference Include="System.Drawing" />
+ <Reference Include="System.Windows.Forms" />
+ <Reference Include="System.Xml.Linq" />
+ <Reference Include="System.Data.DataSetExtensions" />
+ <Reference Include="System.Data" />
+ <Reference Include="System.Xml" />
+ </ItemGroup>
+ <ItemGroup>
+ <Compile Include="APODDownloader.cs" />
+ <Compile Include="APODPlugin.cs" />
+ <Compile Include="Properties\AssemblyInfo.cs" />
+ </ItemGroup>
+ <ItemGroup>
+ <Content Include="APODPlugin.xml">
+ <CopyToOutputDirectory>Always</CopyToOutputDirectory>
+ </Content>
+ </ItemGroup>
+ <Import Project="$(MSBuildToolsPath)\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/APODPlugin/APODPlugin/APODPlugin.xml
===================================================================
--- trunk/plugins/APODPlugin/APODPlugin/APODPlugin.xml (rev 0)
+++ trunk/plugins/APODPlugin/APODPlugin/APODPlugin.xml 2013-03-14 09:14:14 UTC (rev 4541)
@@ -0,0 +1,16 @@
+<window>
+ <id>3355</id>
+ <defaultcontrol>4</defaultcontrol>
+ <allowoverlay>yes</allowoverlay>
+ <controls>
+
+ <control>
+ <description>image</description>
+ <type>image</type>
+ <id>4</id>
+ <posX>0</posX>
+ <posY>0</posY>
+ </control>
+
+ </controls>
+</window>
\ No newline at end of file
Added: trunk/plugins/APODPlugin/APODPlugin/Properties/AssemblyInfo.cs
===================================================================
--- trunk/plugins/APODPlugin/APODPlugin/Properties/AssemblyInfo.cs (rev 0)
+++ trunk/plugins/APODPlugin/APODPlugin/Properties/AssemblyInfo.cs 2013-03-14 09:14:14 UTC (rev 4541)
@@ -0,0 +1,40 @@
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+using MediaPortal.Common.Utils;
+
+// General Information about an assembly is controlled through the following
+// set of attributes. Change these attribute values to modify the information
+// associated with an assembly.
+[assembly: AssemblyTitle("APODPlugin")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("APODPlugin")]
+[assembly: AssemblyCopyright("Copyright © 2013")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+[assembly: CompatibleVersion("1.2.300.0")]
+[assembly: UsesSubsystem("MP.SkinEngine")]
+[assembly: UsesSubsystem("MP.Config")]
+
+// Setting ComVisible to false makes the types in this assembly not visible
+// to COM components. If you need to access a type in this assembly from
+// COM, set the ComVisible attribute to true on that type.
+[assembly: ComVisible(false)]
+
+// The following GUID is for the ID of the typelib if this project is exposed to COM
+[assembly: Guid("82301eb7-cfb8-4fd9-b4d8-a53172ee8792")]
+
+// Version information for an assembly consists of the following four values:
+//
+// Major Version
+// Minor Version
+// Build Number
+// Revision
+//
+// You can specify all the values or you can default the Build and Revision Numbers
+// by using the '*' as shown below:
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]
Added: trunk/plugins/APODPlugin/APODPlugin/bin/Debug/APODPlugin.dll
===================================================================
(Binary files differ)
Index: trunk/plugins/APODPlugin/APODPlugin/bin/Debug/APODPlugin.dll
===================================================================
--- trunk/plugins/APODPlugin/APODPlugin/bin/Debug/APODPlugin.dll 2013-03-14 09:12:00 UTC (rev 4540)
+++ trunk/plugins/APODPlugin/APODPlugin/bin/Debug/APODPlugin.dll 2013-03-14 09:14:14 UTC (rev 4541)
Property changes on: trunk/plugins/APODPlugin/APODPlugin/bin/Debug/APODPlugin.dll
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Added: trunk/plugins/APODPlugin/APODPlugin/bin/Debug/APODPlugin.pdb
===================================================================
(Binary files differ)
Index: trunk/plugins/APODPlugin/APODPlugin/bin/Debug/APODPlugin.pdb
===================================================================
--- trunk/plugins/APODPlugin/APODPlugin/bin/Debug/APODPlugin.pdb 2013-03-14 09:12:00 UTC (rev 4540)
+++ trunk/plugins/APODPlugin/APODPlugin/bin/Debug/APODPlugin.pdb 2013-03-14 09:14:14 UTC (rev 4541)
Property changes on: trunk/plugins/APODPlugin/APODPlugin/bin/Debug/APODPlugin.pdb
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Added: trunk/plugins/APODPlugin/APODPlugin/bin/Debug/APODPlugin.xml
===================================================================
--- trunk/plugins/APODPlugin/APODPlugin/bin/Debug/APODPlugin.xml (rev 0)
+++ trunk/plugins/APODPlugin/APODPlugin/bin/Debug/APODPlugin.xml 2013-03-14 09:14:14 UTC (rev 4541)
@@ -0,0 +1,16 @@
+<window>
+ <id>3355</id>
+ <defaultcontrol>4</defaultcontrol>
+ <allowoverlay>yes</allowoverlay>
+ <controls>
+
+ <control>
+ <description>image</description>
+ <type>image</type>
+ <id>4</id>
+ <posX>0</posX>
+ <posY>0</posY>
+ </control>
+
+ </controls>
+</window>
\ No newline at end of file
Added: trunk/plugins/APODPlugin/APODPlugin/bin/Debug/AxInterop.WMPLib.dll
===================================================================
(Binary files differ)
Index: trunk/plugins/APODPlugin/APODPlugin/bin/Debug/AxInterop.WMPLib.dll
===================================================================
--- trunk/plugins/APODPlugin/APODPlugin/bin/Debug/AxInterop.WMPLib.dll 2013-03-14 09:12:00 UTC (rev 4540)
+++ trunk/plugins/APODPlugin/APODPlugin/bin/Debug/AxInterop.WMPLib.dll 2013-03-14 09:14:14 UTC (rev 4541)
Property changes on: trunk/plugins/APODPlugin/APODPlugin/bin/Debug/AxInterop.WMPLib.dll
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Added: trunk/plugins/APODPlugin/APODPlugin/bin/Debug/Bass.Net.dll
===================================================================
(Binary files differ)
Index: trunk/plugins/APODPlugin/APODPlugin/bin/Debug/Bass.Net.dll
===================================================================
--- trunk/plugins/APODPlugin/APODPlugin/bin/Debug/Bass.Net.dll 2013-03-14 09:12:00 UTC (rev 4540)
+++ trunk/plugins/APODPlugin/APODPlugin/bin/Debug/Bass.Net.dll 2013-03-14 09:14:14 UTC (rev 4541)
Property changes on: trunk/plugins/APODPlugin/APODPlugin/bin/Debug/Bass.Net.dll
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Added: trunk/plugins/APODPlugin/APODPlugin/bin/Debug/BassRegistration.dll
===================================================================
(Binary files differ)
Index: trunk/plugins/APODPlugin/APODPlugin/bin/Debug/BassRegistration.dll
===================================================================
--- trunk/plugins/APODPlugin/APODPlugin/bin/Debug/BassRegistration.dll 2013-03-14 09:12:00 UTC (rev 4540)
+++ trunk/plugins/APODPlugin/APODPlugin/bin/Debug/BassRegistration.dll 2013-03-14 09:14:14 UTC (rev 4541)
Property changes on: trunk/plugins/APODPlugin/APODPlugin/bin/Debug/BassRegistration.dll
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Added: trunk/plugins/APODPlugin/APODPlugin/bin/Debug/BassVisAPI.Net.dll
===================================================================
(Binary files differ)
Index: trunk/plugins/APODPlugin/APODPlugin/bin/Debug/BassVisAPI.Net.dll
===================================================================
--- trunk/plugins/APODPlugin/APODPlugin/bin/Debug/BassVisAPI.Net.dll 2013-03-14 09:12:00 UTC (rev 4540)
+++ trunk/plugins/APODPlugin/APODPlugin/bin/Debug/BassVisAPI.Net.dll 2013-03-14 09:14:14 UTC (rev 4541)
Property changes on: trunk/plugins/APODPlugin/APODPlugin/bin/Debug/BassVisAPI.Net.dll
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Added: trunk/plugins/APODPlugin/APODPlugin/bin/Debug/Common.Utils.dll
===================================================================
(Binary files differ)
Index: trunk/plugins/APODPlugin/APODPlugin/bin/Debug/Common.Utils.dll
===================================================================
--- trunk/plugins/APODPlugin/APODPlugin/bin/Debug/Common.Utils.dll 2013-03-14 09:12:00 UTC (rev 4540)
+++ trunk/plugins/APODPlugin/APODPlugin/bin/Debug/Common.Utils.dll 2013-03-14 09:14:14 UTC (rev 4541)
Property changes on: trunk/plugins/APODPlugin/APODPlugin/bin/Debug/Common.Utils.dll
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Added: trunk/plugins/APODPlugin/APODPlugin/bin/Debug/Core.dll
===================================================================
(Binary files differ)
Index: trunk/plugins/APODPlugin/APODPlugin/bin/Debug/Core.dll
===================================================================
--- trunk/plugins/APODPlugin/APODPlugin/bin/Debug/Core.dll 2013-03-14 09:12:00 UTC (rev 4540)
+++ trunk/plugins/APODPlugin/APODPlugin/bin/Debug/Core.dll 2013-03-14 09:14:14 UTC (rev 4541)
Property changes on: trunk/plugins/APODPlugin/APODPlugin/bin/Debug/Core.dll
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Added: trunk/plugins/APODPlugin/APODPlugin/bin/Debug/Dialogs.dll
===================================================================
(Binary files differ)
Index: trunk/plugins/APODPlugin/APODPlugin/bin/Debug/Dialogs.dll
===================================================================
--- trunk/plugins/APODPlugin/APODPlugin/bin/Debug/Dialogs.dll 2013-03-14 09:12:00 UTC (rev 4540)
+++ trunk/plugins/APODPlugin/APODPlugin/bin/Debug/Dialogs.dll 2013-03-14 09:14:14 UTC (rev 4541)
Property changes on: trunk/plugins/APODPlugin/APODPlugin/bin/Debug/Dialogs.dll
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Added: trunk/plugins/APODPlugin/APODPlugin/bin/Debug/DirectShowLib.dll
===================================================================
(Binary files differ)
Index: trunk/plugins/APODPlugin/APODPlugin/bin/Debug/DirectShowLib.dll
===================================================================
--- trunk/plugins/APODPlugin/APODPlugin/bin/Debug/DirectShowLib.dll 2013-03-14 09:12:00 UTC (rev 4540)
+++ trunk/plugins/APODPlugin/APODPlugin/bin/Debug/DirectShowLib.dll 2013-03-14 09:14:14 UTC (rev 4541)
Property changes on: trunk/plugins/APODPlugin/APODPlugin/bin/Debug/DirectShowLib.dll
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Added: trunk/plugins/APODPlugin/APODPlugin/bin/Debug/Interop.WMPLib.dll
===================================================================
(Binary files differ)
Index: trunk/plugins/APODPlugin/APODPlugin/bin/Debug/Interop.WMPLib.dll
===================================================================
--- trunk/plugins/APODPlugin/APODPlugin/bin/Debug/Interop.WMPLib.dll 2013-03-14 09:12:00 UTC (rev 4540)
+++ trunk/plugins/APODPlugin/APODPlugin/bin/Debug/Interop.WMPLib.dll 2013-03-14 09:14:14 UTC (rev 4541)
Property changes on: trunk/plugins/APODPlugin/APODPlugin/bin/Debug/Interop.WMPLib.dll
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Added: trunk/plugins/APODPlugin/APODPlugin/bin/Debug/Ionic.Zip.dll
===================================================================
(Binary files differ)
Index: trunk/plugins/APODPlugin/APODPlugin/bin/Debug/Ionic.Zip.dll
===================================================================
--- trunk/plugins/APODPlugin/APODPlugin/bin/Debug/Ionic.Zip.dll 2013-03-14 09:12:00 UTC (rev 4540)
+++ trunk/plugins/APODPlugin/APODPlugin/bin/Debug/Ionic.Zip.dll 2013-03-14 09:14:14 UTC (rev 4541)
Property changes on: trunk/plugins/APODPlugin/APODPlugin/bin/Debug/Ionic.Zip.dll
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Added: trunk/plugins/APODPlugin/APODPlugin/bin/Debug/MediaPortal.Support.dll
===================================================================
(Binary files differ)
Index: trunk/plugins/APODPlugin/APODPlugin/bin/Debug/MediaPortal.Support.dll
===================================================================
--- trunk/plugins/APODPlugin/APODPlugin/bin/Debug/MediaPortal.Support.dll 2013-03-14 09:12:00 UTC (rev 4540)
+++ trunk/plugins/APODPlugin/APODPlugin/bin/Debug/MediaPortal.Support.dll 2013-03-14 09:14:14 UTC (rev 4541)
Property changes on: trunk/plugins/APODPlugin/APODPlugin/bin/Debug/MediaPortal.Support.dll
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Added: trunk/plugins/APODPlugin/APODPlugin/bin/Debug/Utils.dll
===================================================================
(Binary files differ)
Index: trunk/plugins/APODPlugin/APODPlugin/bin/Debug/Utils.dll
===================================================================
--- trunk/plugins/APODPlugin/APODPlugin/bin/Debug/Utils.dll 2013-03-14 09:12:00 UTC (rev 4540)
+++ trunk/plugins/APODPlugin/APODPlugin/bin/Debug/Utils.dll 2013-03-14 09:14:14 UTC (rev 4541)
Property changes on: trunk/plugins/APODPlugin/APODPlugin/bin/Debug/Utils.dll
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Added: trunk/plugins/APODPlugin/APODPlugin/bin/Debug/edtftpnet-1.2.2.dll
===================================================================
(Binary files differ)
Index: trunk/plugins/APODPlugin/APODPlugin/bin/Debug/edtftpnet-1.2.2.dll
===================================================================
--- trunk/plugins/APODPlugin/APODPlugin/bin/Debug/edtftpnet-1.2.2.dll 2013-03-14 09:12:00 UTC (rev 4540)
+++ trunk/plugins/APODPlugin/APODPlugin/bin/Debug/edtftpnet-1.2.2.dll 2013-03-14 09:14:14 UTC (rev 4541)
Property changes on: trunk/plugins/APODPlugin/APODPlugin/bin/Debug/edtftpnet-1.2.2.dll
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Added: trunk/plugins/APODPlugin/APODPlugin/bin/Debug/log4net.dll
===================================================================
(Binary files differ)
Index: trunk/plugins/APODPlugin/APODPlugin/bin/Debug/log4net.dll
===================================================================
--- trunk/plugins/APODPlugin/APODPlugin/bin/Debug/log4net.dll 2013-03-14 09:12:00 UTC (rev 4540)
+++ trunk/plugins/APODPlugin/APODPlugin/bin/Debug/log4net.dll 2013-03-14 09:14:14 UTC (rev 4541)
Property changes on: trunk/plugins/APODPlugin/APODPlugin/bin/Debug/log4net.dll
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Added: trunk/plugins/APODPlugin/APODPlugin/bin/Debug/taglib-sharp.dll
===================================================================
(Binary files differ)
Index: trunk/plugins/APODPlugin/APODPlugin/bin/Debug/taglib-sharp.dll
===================================================================
--- trunk/plugins/APODPlugin/APODPlugin/bin/Debug/taglib-sharp.dll 2013-03-14 09:12:00 UTC (rev 4540)
+++ trunk/plugins/APODPlugin/APODPlugin/bin/Debug/taglib-sharp.dll 2013-03-14 09:14:14 UTC (rev 4541)
Property changes on: trunk/plugins/APODPlugin/APODPlugin/bin/Debug/taglib-sharp.dll
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Added: trunk/plugins/APODPlugin/APODPlugin/obj/Debug/APODPlugin.csproj.FileListAbsolute.txt
===================================================================
--- trunk/plugins/APODPlugin/APODPlugin/obj/Debug/APODPlugin.csproj.FileListAbsolute.txt (rev 0)
+++ trunk/plugins/APODPlugin/APODPlugin/obj/Debug/APODPlugin.csproj.FileListAbsolute.txt 2013-03-14 09:14:14 UTC (rev 4541)
@@ -0,0 +1,20 @@
+c:\Users\jamesb\Documents\Visual Studio 2012\Projects\APODPlugin\APODPlugin\bin\Debug\APODPlugin.dll
+c:\Users\jamesb\Documents\Visual Studio 2012\Projects\APODPlugin\APODPlugin\bin\Debug\APODPlugin.pdb
+c:\Users\jamesb\Documents\Visual Studio 2012\Projects\APODPlugin\APODPlugin\bin\Debug\Core.dll
+c:\Users\jamesb\Documents\Visual Studio 2012\Projects\APODPlugin\APODPlugin\bin\Debug\Dialogs.dll
+c:\Users\jamesb\Documents\Visual Studio 2012\Projects\APODPlugin\APODPlugin\bin\Debug\Bass.Net.dll
+c:\Users\jamesb\Documents\Visual Studio 2012\Projects\APODPlugin\APODPlugin\bin\Debug\DirectShowLib.dll
+c:\Users\jamesb\Documents\Visual Studio 2012\Projects\APODPlugin\APODPlugin\bin\Debug\Utils.dll
+c:\Users\jamesb\Documents\Visual Studio 2012\Projects\APODPlugin\APODPlugin\bin\Debug\BassVisAPI.Net.dll
+c:\Users\jamesb\Documents\Visual Studio 2012\Projects\APODPlugin\APODPlugin\bin\Debug\taglib-sharp.dll
+c:\Users\jamesb\Documents\Visual Studio 2012\Projects\APODPlugin\APODPlugin\bin\Debug\AxInterop.WMPLib.dll
+c:\Users\jamesb\Documents\Visual Studio 2012\Projects\APODPlugin\APODPlugin\bin\Debug\edtftpnet-1.2.2.dll
+c:\Users\jamesb\Documents\Visual Studio 2012\Projects\APODPlugin\APODPlugin\bin\Debug\Common.Utils.dll
+c:\Users\jamesb\Documents\Visual Studio 2012\Projects\APODPlugin\APODPlugin\bin\Debug\BassRegistration.dll
+c:\Users\jamesb\Documents\Visual Studio 2012\Projects\APODPlugin\APODPlugin\bin\Debug\MediaPortal.Support.dll
+c:\Users\jamesb\Documents\Visual Studio 2012\Projects\APODPlugin\APODPlugin\bin\Debug\Interop.WMPLib.dll
+c:\Users\jamesb\Documents\Visual Studio 2012\Projects\APODPlugin\APODPlugin\bin\Debug\log4net.dll
+c:\Users\jamesb\Documents\Visual Studio 2012\Projects\APODPlugin\APODPlugin\bin\Debug\Ionic.Zip.dll
+c:\Users\jamesb\Documents\Visual Studio 2012\Projects\APODPlugin\APODPlugin\obj\Debug\APODPlugin.dll
+c:\Users\jamesb\Documents\Visual Studio 2012\Projects\APODPlugin\APODPlugin\obj\Debug\APODPlugin.pdb
+c:\Users\jamesb\Documents\Visual Studio 2012\Projects\APODPlugin\APODPlugin\bin\Debug\APODPlugin.xml
Added: trunk/plugins/APODPlugin/APODPlugin/obj/Debug/APODPlugin.dll
===================================================================
(Binary files differ)
Index: trunk/plugins/APODPlugin/APODPlugin/obj/Debug/APODPlugin.dll
===================================================================
--- trunk/plugins/APODPlugin/APODPlugin/obj/Debug/APODPlugin.dll 2013-03-14 09:12:00 UTC (rev 4540)
+++ trunk/plugins/APODPlugin/APODPlugin/obj/Debug/APODPlugin.dll 2013-03-14 09:14:14 UTC (rev 4541)
Property changes on: trunk/plugins/APODPlugin/APODPlugin/obj/Debug/APODPlugin.dll
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Added: trunk/plugins/APODPlugin/APODPlugin/obj/Debug/APODPlugin.pdb
===================================================================
(Binary files differ)
Index: trunk/plugins/APODPlugin/APODPlugin/obj/Debug/APODPlugin.pdb
===================================================================
--- trunk/plugins/APODPlugin/APODPlugin/obj/Debug/APODPlugin.pdb 2013-03-14 09:12:00 UTC (rev 4540)
+++ trunk/plugins/APODPlugin/APODPlugin/obj/Debug/APODPlugin.pdb 2013-03-14 09:14:14 UTC (rev 4541)
Property changes on: trunk/plugins/APODPlugin/APODPlugin/obj/Debug/APODPlugin.pdb
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Added: trunk/plugins/APODPlugin/APODPlugin/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
===================================================================
(Binary files differ)
Index: trunk/plugins/APODPlugin/APODPlugin/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
===================================================================
--- trunk/plugins/APODPlugin/APODPlugin/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache 2013-03-14 09:12:00 UTC (rev 4540)
+++ trunk/plugins/APODPlugin/APODPlugin/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache 2013-03-14 09:14:14 UTC (rev 4541)
Property changes on: trunk/plugins/APODPlugin/APODPlugin/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Added: trunk/plugins/APODPlugin/APODPlugin.sln
===================================================================
--- trunk/plugins/APODPlugin/APODPlugin.sln (rev 0)
+++ trunk/plugins/APODPlugin/APODPlugin.sln 2013-03-14 09:14:14 UTC (rev 4541)
@@ -0,0 +1,20 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio 2012
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "APODPlugin", "APODPlugin\APODPlugin.csproj", "{A9F253DB-5825-4319-928C-650B6D76DC5F}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {A9F253DB-5825-4319-928C-650B6D76DC5F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {A9F253DB-5825-4319-928C-650B6D76DC5F}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {A9F253DB-5825-4319-928C-650B6D76DC5F}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {A9F253DB-5825-4319-928C-650B6D76DC5F}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+EndGlobal
Added: trunk/plugins/APODPlugin/APODPlugin.v11.suo
===================================================================
(Binary files differ)
Index: trunk/plugins/APODPlugin/APODPlugin.v11.suo
===================================================================
--- trunk/plugins/APODPlugin/APODPlugin.v11.suo 2013-03-14 09:12:00 UTC (rev 4540)
+++ trunk/plugins/APODPlugin/APODPlugin.v11.suo 2013-03-14 09:14:14 UTC (rev 4541)
Property changes on: trunk/plugins/APODPlugin/APODPlugin.v11.suo
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|