Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ChangeLog « Common « I18N « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3f5f4f371012fee95d513917551b726d4ff13181 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
2006-01-17  Atsushi Enomoto  <atsushi@ximian.com>

	* MonoEncoding.cs, ByteEncoding.cs :
	  Marked as [Serializable].

2005-12-01  Atsushi Enomoto  <atsushi@ximian.com>

	* MonoEncoding.cs : new file, which is going to be used as the
	  abstract class for all Encoding classes in I18N.*.dll. Only
	  GetBytesImpl() is required in derived classes.
	* I18N.dll.sources : added above.
	* ByteEncoding : HandleFallback() is moved to MonoEncoding.
	  Now that only ToBytes() with pointers is required, commented out
	  other ToBytes() overloads.
	  GetBytesImpl() is implemented to call ToBytes() and thus all of
	  the derived classes work as they used to be.

2005-11-30  Atsushi Enomoto  <atsushi@ximian.com>

	* Makefile : now it uses unsafe pointers.
	* ByteEncoding.cs : Now there is three versions of ToBytes(): the only
	  one with pointers will be in use in the future. ToBytes(string) and
	  ToBytes() with arrays will be implemented to dispatch pointer-based
	  one and will be only one conversion implementation while they keep
	  avoiding extra array creation.

2005-11-28  Atsushi Enomoto  <atsushi@ximian.com>

	* ByteEncoding.cs : added IsSingleByte.

2005-11-01  Atsushi Enomoto  <atsushi@ximian.com>

	* Handler.cs : added 51949 (true euc-kr).

2005-09-25  Atsushi Enomoto  <atsushi@ximian.com>

	* Handler.cs : added 50220 and 50222.

2005-09-18  Atsushi Enomoto  <atsushi@ximian.com>

	* Handler.cs : Required changes wrt some class renames.

2005-08-19  Atsushi Enomoto  <atsushi@ximian.com>

	why didn't we have it? ;-)

	* Handlers.cs : added GB18030 support.