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

ChangeLog « System.Resources « Managed.Windows.Forms « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 307e6d6624e3b071374d2eacc68691940e153c77 (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
2005-12-05  Peter Bartok  <pbartok@novell.com>

	* ResXResourceReader.cs: Removed previous patch. More than just Byte[]
	  has that mime type and the patch was causing things to fail.
	  Since our writer no longer emits the mimetype this should be fine.

2005-12-01  Robert Jordan  <robertj@gmx.net>

	* ResXResourceReader.cs: Handle mimetype="application/x-microsoft.net.object.bytearray.base64" correctly. Fixes the decoding of System.Byte[].
	* ResXResourceWriter.cs: Fixed AddResource (string, object) to pass
	control to AddResource (string, byte[]) if the value parameter is
	a byte[]. Removed the emitting of the mimetype attribute for
	System.Byte[].

2005-11-30  Peter Bartok  <pbartok@novell.com>

	* ResXResourceReader.cs: Handle System.Byte[] encodings without
	  needing a typeconverter (This fixes bug #76414)

2005-11-30  Robert Jordan  <robertj@gmx.net>

	* ResXResourceReader.cs, ResXResourceWriter.cs: Made string conversions
	culture-invariant.
	* ResXResourceWriter.cs: Fixed AddResource (string, object) to emit
	the type attribute when the object has a type converter.

2005-10-04  Peter Bartok  <pbartok@novell.com>

	* ResXResourceReader.cs, ResXResourceWriter.cs: Added call
	  to GC.SuppressFinalize() in dispose method. Fixes #76330

2005-05-13  Peter Bartok  <pbartok@novell.com>

	* ResXResourceWriter.cs: 
	  - Fixed/Improved AddResource(), now only uses string converter if 
	    the converter supports both directions
	  - Added ability for AddResource(string, object) to detect if
	    a byte[] converter is supported for the object, if so it now calls
	    AddResource(string, byte[]) for those
	  - WriteBytes: Changed to write it's base64 output as pretty 
	    as Microsoft's, inserting newlines every 80 chars
	  - WriteBytes: Added output of mimetype even if type is specified

2005-05-11  Peter Bartok  <pbartok@novell.com>

	* ResXResourceSet.cs: Implemented
	* ResXFileRef.cs: Implemented
	* ResXNullRef.cs: Added missing attribute
	* ResXResourceReader.cs: Implemented missing .ctor()s and other
	  assorted fun stuff, should now be complete
	* ResResourceWriter.cs: Implemented missing methods and added
	  missing static fields

2005-04-14  Jackson Harper  <jackson@ximian.com>

	* ResXResourceReader.cs: Use serialization on values that have a
	mime type set but no type.

2005-02-16  Peter Bartok  <pbartok@novell.com>

	* ResXResourceReader.cs, ResXResourceWriter.cs: Removed sealed
	  attribute from classes

2005-02-12  Geoff Norton  (gnorton@customerdna.com)

	* ResXResourceReader.cs (load_data): Undo previous change as
	ResXNullRef is now properly handled.
	* ResXNullRef.cs: Added
	
2005-02-11  Geoff Norton  (gnorton@customerdna.com)

	* ResXResourceReader.cs (load_data): Temporarily re-introduce the 
	old failure for types that we cannot yet handle to allow Npgsql to
	build.
	
2005-02-11  Raja R Harinath  <rharinath@novell.com>

	* ResXResourceReader.cs (load_data): Make exception more informative.

2005-02-10  Geoff Norton  <gnorton@customerdna.com>

	* ResXResourceReader.cs: Implement the ability to convert the
	MS Base64 encoded objects.  Implement the ability to convert objects
	to their type rather than just to string.

2004-11-08 14:28  pbartok

	* ResXResourceReader.cs:
	  - BenM's Fix for bug 68260

2004-10-13 08:14  pbartok

	* ResXResourceReader.cs:
	  - Patch by joel.reed@ddiworld.com (joel) to handle CDATA sections.

2004-08-29 22:36  pbartok

	* ResXResourceReader.cs, ResXResourceWriter.cs:
	  - Transfered files from previous version of System.Windows.Forms
	  - Added full copyright header