* Mono.Options/Options.cs: GetLineEnd() shouldn't skip the start
[mono.git] / mcs / class / Mono.Options / Mono.Options / ChangeLog
1 2009-04-18  Jonathan Pryor  <jpryor@novell.com>
2
3         * Options.cs: GetLineEnd() shouldn't skip the start character, as it
4           may contain '\n' (thus preventing the following text from being
5           properly indented).
6
7 2009-04-17  Jonathan Pryor  <jpryor@novell.com>
8
9         * Options.cs: Viktor Lundgren reported that Option.Description text of 
10           `"aaa." . "a" x 64` (that is, "aaa." followed by 64 "a"s) would cause 
11           GetLines() to go into an infinite loop and (eventually) die from an 
12           OutOfMemoryException.  Oops.  Fix this, simplify the logic, and turn 
13           GetLines() into an IEnumerable<string>.
14
15 2008-10-23  Jonathan Pryor  <jpryor@novell.com>
16
17         * Options.cs: Options.cs: Use the underlying target type in the error 
18           message, because "Could not convert string `' to type Nullable`1..." 
19           is not nearly as helpful as "Could not convert string `' to type 
20           Int32...".
21
22 2008-10-22  Jonathan Pryor  <jpryor@novell.com>
23
24         * Option.cs: Add support for nullable types to Options.Parse<T>().
25           Namespace "harmonization" with NDesk.Options so that the same source 
26           file can be used in each project.
27
28 2008-10-13  Jonathan Pryor  <jpryor@novell.com>
29
30         * ChangeLog: Started.
31         * Options.cs: Added; Command line option parser.  A (renamed) copy of
32           NDesk.Options 0.2.1 (see git repo for prior history).
33