Author: abock
Date: 2005-11-25 20:30:00 -0500 (Fri, 25 Nov 2005)
New Revision: 53494

Removed:
   trunk/entagged-sharp/src/AssemblyInfo.cs.in
Modified:
   trunk/entagged-sharp/src/AssemblyInfo.cs
   trunk/entagged-sharp/src/AudioFileContainer.cs
   trunk/entagged-sharp/src/Ogg/OggFileWriter.cs
Log:
Update AssemblyInfo.cs manually

Modified: trunk/entagged-sharp/src/AssemblyInfo.cs
===================================================================
--- trunk/entagged-sharp/src/AssemblyInfo.cs    2005-11-26 01:26:12 UTC (rev 
53493)
+++ trunk/entagged-sharp/src/AssemblyInfo.cs    2005-11-26 01:30:00 UTC (rev 
53494)
@@ -1,13 +1,7 @@
 using System.Reflection;
 using System.Runtime.CompilerServices;
 
-[assembly: AssemblyTitle("entagged-sharp")]
-[assembly: AssemblyDescription("Library for handling audio metadata")]
-[assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("")]
-[assembly: AssemblyProduct("")]
-[assembly: AssemblyCopyright("(C) 2005 Raphaël Slinckx <[EMAIL PROTECTED]>")]
-[assembly: AssemblyTrademark("")]
-[assembly: AssemblyCulture("")]        
-[assembly: AssemblyVersion("0.1.4")]
+[assembly: AssemblyVersion("0.2.0")]
+[assembly: AssemblyTitle ("entagged-sharp")]
+[assembly: AssemblyDescription ("Fully managed audio metadata parser")]
 

Deleted: trunk/entagged-sharp/src/AssemblyInfo.cs.in
===================================================================
--- trunk/entagged-sharp/src/AssemblyInfo.cs.in 2005-11-26 01:26:12 UTC (rev 
53493)
+++ trunk/entagged-sharp/src/AssemblyInfo.cs.in 2005-11-26 01:30:00 UTC (rev 
53494)
@@ -1,7 +0,0 @@
-using System.Reflection;
-using System.Runtime.CompilerServices;
-
-[assembly: AssemblyVersion("@VERSION@")]
-[assembly: AssemblyTitle ("entagged-sharp")]
-[assembly: AssemblyDescription ("Fully managed audio metadata parser")]
-

Modified: trunk/entagged-sharp/src/AudioFileContainer.cs
===================================================================
--- trunk/entagged-sharp/src/AudioFileContainer.cs      2005-11-26 01:26:12 UTC 
(rev 53493)
+++ trunk/entagged-sharp/src/AudioFileContainer.cs      2005-11-26 01:30:00 UTC 
(rev 53494)
@@ -31,6 +31,8 @@
    {
         private EncodingInfo info;
         private Tag tag;
+        private AudioFileReader reader;
+        private AudioFileWriter writer;
         
         public AudioFileContainer(EncodingInfo info, Tag tag) 
         {
@@ -38,12 +40,30 @@
             this.tag = tag;
         }
         
-        public AudioFileContainer(EncodingInfo info) 
+        public AudioFileContainer(EncodingInfo info) : this(info, new Tag()) 
         {
-            this.info = info;
-            this.tag = new Tag();
         }
         
+        public AudioFileReader Reader {
+            get {
+                return reader;
+            }
+            
+            set {
+                reader = value;
+            }
+        }
+        
+        public AudioFileWriter Writer {
+            get {
+                return writer;
+            }
+            
+            set {
+                writer = value;
+            }
+        }
+        
         public int Bitrate {
             get { 
                 return info.Bitrate; 

Modified: trunk/entagged-sharp/src/Ogg/OggFileWriter.cs
===================================================================
--- trunk/entagged-sharp/src/Ogg/OggFileWriter.cs       2005-11-26 01:26:12 UTC 
(rev 53493)
+++ trunk/entagged-sharp/src/Ogg/OggFileWriter.cs       2005-11-26 01:30:00 UTC 
(rev 53494)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *  Copyright 2005 Rapha�l Slinckx <[EMAIL PROTECTED]> 
+ *  Copyright 2005 Raphal Slinckx <[EMAIL PROTECTED]> 
  ****************************************************************************/
 
 /*  THIS FILE IS LICENSED UNDER THE MIT LICENSE AS OUTLINED IMMEDIATELY BELOW: 
@@ -28,6 +28,8 @@
 using Entagged.Audioformats.Ogg.Util;
 
 namespace Entagged.Audioformats.Ogg {
+
+    [SupportedMimeType ("entagged/ogg")]
        public class OggFileWriter : AudioFileWriter {
 
                private VorbisTagWriter vorbis = new VorbisTagWriter();

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to