[corlib] Improve CancellationTokenSource test
[mono.git] / mcs / class / I18N / Common / ChangeLog
1 2006-08-24  Atsushi Enomoto  <atsushi@ximian.com>
2
3         * ByteEncoding.cs : Implemented IsAlwaysNormalized().
4           (only SingleByte and FormC may return true for IsAlwaysNormalized
5           on .NET.)
6           Ask String.Normalize() for every possible single byte character
7           which is valid for the encoding and see if it has changed the
8           string (i.e. it returns the value based on the actual
9           normalization.)
10
11 2006-06-13  Kornél Pál  <kornelpal@gmail.com>
12
13         * ByteEncoding.cs: Use unsafe code in GetString() that results in
14           significant performance improvement.
15
16 2006-01-30  Atsushi Enomoto  <atsushi@ximian.com>
17
18         * MonoEncoding.cs :
19           Added another overload that takes windows code page.
20
21 2006-01-23  Atsushi Enomoto  <atsushi@ximian.com>
22
23         * MonoEncoding.cs :
24           Added abstract GetByteCountImpl() in MonoEncoding and MonoEncoder.
25           GetByteCount() is now based on the method above.
26         * ByteEncoding.cs : so GetByteCount() became GetByteCountImpl() and
27           is based on char*.
28
29 2006-01-17  Atsushi Enomoto  <atsushi@ximian.com>
30
31         * MonoEncoding.cs, ByteEncoding.cs :
32           Marked as [Serializable].
33
34 2005-12-01  Atsushi Enomoto  <atsushi@ximian.com>
35
36         * MonoEncoding.cs : new file, which is going to be used as the
37           abstract class for all Encoding classes in I18N.*.dll. Only
38           GetBytesImpl() is required in derived classes.
39         * I18N.dll.sources : added above.
40         * ByteEncoding : HandleFallback() is moved to MonoEncoding.
41           Now that only ToBytes() with pointers is required, commented out
42           other ToBytes() overloads.
43           GetBytesImpl() is implemented to call ToBytes() and thus all of
44           the derived classes work as they used to be.
45
46 2005-11-30  Atsushi Enomoto  <atsushi@ximian.com>
47
48         * Makefile : now it uses unsafe pointers.
49         * ByteEncoding.cs : Now there is three versions of ToBytes(): the only
50           one with pointers will be in use in the future. ToBytes(string) and
51           ToBytes() with arrays will be implemented to dispatch pointer-based
52           one and will be only one conversion implementation while they keep
53           avoiding extra array creation.
54
55 2005-11-28  Atsushi Enomoto  <atsushi@ximian.com>
56
57         * ByteEncoding.cs : added IsSingleByte.
58
59 2005-11-01  Atsushi Enomoto  <atsushi@ximian.com>
60
61         * Handler.cs : added 51949 (true euc-kr).
62
63 2005-09-25  Atsushi Enomoto  <atsushi@ximian.com>
64
65         * Handler.cs : added 50220 and 50222.
66
67 2005-09-18  Atsushi Enomoto  <atsushi@ximian.com>
68
69         * Handler.cs : Required changes wrt some class renames.
70
71 2005-08-19  Atsushi Enomoto  <atsushi@ximian.com>
72
73         why didn't we have it? ;-)
74
75         * Handlers.cs : added GB18030 support.