[corlib] Improve CancellationTokenSource test
[mono.git] / mcs / class / System / System.IO.Ports / ChangeLog
index bc5a2c037c12d03ceadffe1bdc84653d89e605d2..c15fe2df74085fb2343faf0b4a14ee5107735cb7 100644 (file)
@@ -1,3 +1,107 @@
+2010-04-22  Miguel de Icaza  <miguel@novell.com>
+
+       * SerialPort.cs: Try to detect serial devices in other Unix
+       systems. 
+
+       More tune ups for BSDs.
+
+2010-02-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
+
+       * SerialPort.cs: DiscardNull should *not* report any error if the port
+       is not open. We haven't implemented it yet, but added the needed
+       comment in case we forget when actually implementing it.
+       Fixes #512244.
+
+2010-01-25  Leszek Ciesielski <skolima@gmail.com>
+
+       * SerialPortStream.cs: Read was returning requested count instead
+       of actual bytes read. Thanks to Thad Thompson for spotting this.
+
+2010-01-22  Leszek Ciesielski <skolima@gmail.com>
+
+       * SerialPortStream.cs: Check for error on every native call
+
+2009-11-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
+
+       * WinSerialStream.cs: Make CommStat a struct instead of a class to
+       make properly work ClearCommError.
+       Fixes the remaining bits of #348751.
+
+2009-09-24  Christian Hoff  <christian_hoff@gmx.net>
+
+       * SerialPort.cs: Do not close the base stream if Dispose is called from
+       the finalizer.
+
+2009-09-21 Leszek Ciesielski <skolima@gmail.com>
+
+       * SerialPortStream.cs: Throw exception when errors occur in Close()
+
+2007-09-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
+
+       * WinSerialStream.cs: Fix the signature of ClearCommError.
+       Fixes #348751.
+
+2008-09-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
+
+       * SerialPort.cs: Throw ArgumentException if NewLine gets an empty
+       string value.
+       Fixes #339012.
+
+2008-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
+
+       * SerialPort.cs: In BaseStream property call CheckOpen instead of
+       duplicating the code.
+
+2008-02-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
+
+       * SerialPortStream.cs: Set DllImport.SetLastError to true for
+       all MonoPosixHelper functions, so in case of error we can retrieve the
+       error and print a simple but effective message about it.
+
+2007-12-03  Miguel de Icaza  <miguel@novell.com>
+
+       * SerialPort.cs: Apply patch from Martin Green
+       <martin@martsoft.co.uk> to support Serial Ports enumeration on
+       Windows.
+
+2007-11-13  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * SerialPort.cs :
+         Added [DefaultValue]. For PortName it is useless though.
+         Do not use ObsoleteAttribute for MonoTODO role.
+
+2007-11-05  Miguel de Icaza  <miguel@novell.com>
+
+       * SerialPort.cs: Cope with multi-character newlines.  Fixes #321988.
+
+2007-10-13  Miguel de Icaza  <miguel@novell.com>
+
+       * SerialPortStream.cs: Send a break on the Unix case.
+
+2007-08-12  Lukasz Byczynski <lukaszb@forcom.com.pl>
+
+       * SerialPortStream.cs: added timeout handling on write
+
+       * WinSerialStream.cs: fixed setting handshake flags 
+
+2007-07-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
+
+       * SerialPort.cs: Don't throw ArgumentOutOfRangeException when the
+       buffer has Length = 0 (and has the appropriate arguments).
+
+2007-05-21  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * SerialPort.cs : slightly boring 2.0 attributes.
+
+2007-05-01  Sebastien Pouliot  <sebastien@ximian.com>
+
+       * WinSerialStream.cs: Fix build due to NativeOverlapped being updated
+       to 2.0 definition (int to IntPtr).
+
+Wed Apr 11 15:40:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
+
+       * WinSerialStream.cs: fixed logic for signal value check (bug #81342).
+
 2006-11-18  Jelle Hissink <Jelle.Hissink@C-it.nl>
 
        * SerialPortStream.cs: Fix the parameters in Read, and also poll