add ISafeSerializationData
[mcs.git] / tools / monop / ChangeLog
blob4f4395de9bf3e866e352971eede273fd4d721e04
1 2008-10-24  Miguel de Icaza  <miguel@novell.com>
3         * outline.cs: Small changes to allow the outline code to be embedded.
5 2005-10-10  John Luke  <john.luke@gmail.com>
7         * options.cs: add --help output for the two new
8         options
10 2005-10-10  John Luke  <john.luke@gmail.com>
12         * monop.cs: add PrintRefs and use it if the
13         option is set
14         * options.cs: add PrintRefs option to see the
15         assemblies referenced by an assembly
17 2005-10-10  John Luke  <john.luke@gmail.com>
19         * monop.cs: don't print obsolete types if the
20         --filter-obsolete option is passed
21         * options.cs: add FilterObsolete option
22         * outline.cs: don't print obsolete members if
23         the --filter-obsolete option is passed
25 2005-09-21  John Luke  <john.luke@gmail.com>
27         * monop.cs: catch exception on Process.Start
28         when gacutil cannot be found to avoid annoying
29         windows message boxes
31 2005-09-05  Michal Moskal  <malekith@nemerle.org>
32         
33         * outline.cs: Use new names of the GenericParameterAttributes enum.
35 2005-08-19  Ben Maurer  <bmaurer@novell.com>
37         * outline.cs:
38            - Support for `sealed'
39            - Handle iface impls with non-virtual methods
40            - ';' for delegates
42 2005-07-11  Raja R Harinath  <rharinath@novell.com>
44         * Makefile (PROGRAM): Make profile specific.
45         * monop2.exe.sources: Remove.
47 2005-07-10  Ben Maurer  <bmaurer@ximian.com>
49         * outline.cs: mark abstract methods with the "abstract" keyword.
51 2005-07-09  Ben Maurer  <bmaurer@ximian.com>
53         * outline.cs: Actually get the namespacing conditions right so
54         things look nice
55         
56         * outline.cs: Friendly display of ifaces on -d
58         * outline.cs: Always show explicit interface impls. Don't display
59         the wrong flags for them.
61 2005-07-07  Ben Maurer  <bmaurer@ximian.com>
63         * outline.cs:
64            - Print out static for fields (how the hell did I let myself
65            not put this in earlier!!!!!)
66            - To print out const fields, we might need to quote
67            things. This logic is not complete yet (for example, a string
68            with \n will have a literal new line)
69            - Try some smarter logic to get less verbosity by printing out
70            fewer namespaces
71            - Do a nicer sorting for methods. It sorts things by param
72            type, then from fewest params to most. This makes overloads
73            get sorted out cleanly.
75 2005-07-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
77         * outline.cs: prevent nullref for non-public events.
79 2005-07-04  Ben Maurer  <bmaurer@ximian.com>
81         * outline.cs: filter out interfaces in generic constraint clauses
82         that come from the base class.
84 2005-07-04  Ben Maurer  <bmaurer@ximian.com>
86         * outline.cs: use tabs, not spaces, for indentation.
87         
88         * outline.cs: Add support for constraints. Inspired by brada's
89         blog.
91 2005-07-03  Ben Maurer  <bmaurer@ximian.com>
93         * outline.cs: Support for methods with generic parameters.
95         * *: begin support for 2.0
97         * outline.cs: Add support for readonly fields.
99 2005-05-30  Ben Maurer  <bmaurer@ximian.com>
101         * outline.cs: Don't show static constructors: they are cctors,
102         which are uninteresting.
104 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
106         * outline.cs (OutlineProperty) handle mixed accessability.
108         * options.cs: Make things public.
110         * outline.cs: Use the Options class, rather than being passed
111         binding flags.
112         (.ctor): Add Options param
113         (OutlineType): remove bindingFlags param
114         (DefaultFlags): Get the correct binding flags
115         (ShowMember): Return true if we should show this member given the
116         Options. Way too long due to MSFT stupidity.
117         (OutlineType): call the above.
119         * monop.cs (Main): Don't fiddle with binding flags ourselves.
120         
122 2005-01-08  John Luke  <john.luke@gmail.com>
124         * monop.cs: use Options class
125         add a little print-runtime option
126         (PrintTypes): respect --private option
127         * options.cs: split out option parsing and improve it
128         (simpler, order independent, less prone to crash)
130 2005-01-01  Duncan Mak  <duncan@ximian.com>
132         * monop.cs (SearchType): Filter out non-public members and return
133         the number of matches found. Use for loops instead of foreach
134         loops. 
135         (Main): Jump to `found' if we find only one matching type.
136         
137 2004-12-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
139         * outline.cs : Add support for enums having types different than int.
140         
141 2004-12-30  Atsushi Enomoto  <atsushi@ximian.com>
143         * monop.cs : csc build fix (see bug #70185).
145 2004-12-29  Duncan Mak  <duncan@ximian.com>
147         * monop.cs (SearchType): New method, returns a list of type names
148         that matches the method argument, either completely or partially.
149         (GetKnownAssemblyNames): Renamed from GetAssemblyNamesFromGAC, as
150         it now includes mscorlib in the return value.
151         (Main): Added new flags: "--search", "-s", "-k". These flags will
152         invoke SearchType. Prints out a list of Types and the location of
153         the Assembly containing the Type.
155         This fixes bug #70068.
156         
157 2004-12-24  John Luke  <john.luke@gmail.com>
159         * monop.cs: sort the types when printing an assembly
160         handle -r:~/foo.dll by substituting for $HOME
162         * TypeSorter.cs: IComparer to sort types by name
164 2004-12-25  Ben Maurer  <bmaurer@ximian.com>
166         * monop.cs, outline.cs, monop-completion.sh: Add MIT/X11 License.
168 2004-12-09  Dan Winship  <danw@novell.com>
170         * outline.cs (OutlineType, OutlineOperator, OperatorFromName):
171         Show overloaded operators and type conversions.
172         (FormatType): fix the logic here so that, eg "System.Int32"
173         becomes "int" rather than "Int32" when looking at a type in the
174         System namespace.
176 2004-12-03  Atsushi Enomoto  <atsushi@ximian.com>
178         * monop.cs : csc build fix. See bug #70185 for details.
180 2004-11-30  Duncan Mak  <duncan@ximian.com>
182         * monop.cs (GetAssemblyNamesFromGAC): New method, calls out to
183         "gacutil -l" and returns an array of Assembly fullnames. 
184         (Main): Instead of probing the common_assemblies, use
185         GetAssemblyNamesFromGAC. If we found the type via probing, print
186         out a message noting the full type name and assembly name. This
187         fixes bug #70043.
188         
189 2004-11-11  Ben Maurer  <bmaurer@ximian.com>
191         * outline.cs: Remove `public virtual' for interface methods.
193 2004-11-08  Ben Maurer  <bmaurer@ximian.com>
195         * outline.cs: If a type is in the namespace that we
196         are looking at right now, dont print out the fullname
197         this cuts down on verbosity
198         
199         * outline.cs: Cut the extra whitespace.
201         * outline.cs: Report sealed and abstract
203 2004-10-27  John Luke  <john.luke@gmail.com>
205         * outline.cs: report [Obsolete] types
207 2004-09-22  John Luke  <john.luke@gmail.com>
209         * outline.cs: use simpler IsDefined method
210         for checking params and [Flags]
212 2004-09-18  John Luke  <john.luke@gmail.com>
214         * outline.cs: add const = value; for const fields (Ben's idea)
215         detect ParamArrayAttribute for parameters
217 2004-09-03  John Luke  <john.luke@gmail.com>
218         
219         * monop.cs: report CLSCompliant for assemblies
221 2004-08-15  John Luke  <john.luke@gmail.com>
223         * monop.cs: add declared-only option
224         * outline.cs: add limited attribute support (only for
225         [Serializable] and [Flags])
227 2004-08-13  John Luke  <john.luke@gmail.com>
229         * monop.cs: add MONO_PATH support
231 2004-08-13  John Luke  <john.luke@gmail.com>
233         * outline.cs: remove unused isPointer 
234         * monop.cs: show information about the assembly that is being used
235         - remove unused IndentedTextWriter
236         - rework how Assemblies are being loaded, so that it works by trying
237         in order fromfile, fullname, partialname which fixes loading
238         from relative paths and generally should be more correct
239         * TODO: update
241 2004-08-06  John Luke  <john.luke@gmail.com>
243         * outline.cs: add field support
245 2004-08-04  John Luke  <john.luke@gmail.com>
247         * monop.cs: add PrintUsage so that it is reused in the few
248         places it is needed, add PrintHelp to display --help information
250 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
252         * monop.cs: give the correct assembly that fails loading or the type.
254 2004-05-14  Carlos Alberto Cortez <carlos@unixmexico.org>
256         * outline.cs: Support for delegates and nested types
257         added.
259 2004-05-09  John Luke  <jluke@cfl.rr.com>
261         * monop.cs: seperate assembly loading into .GetAssembly method,
262         fail gracefully, and support loading assemblies from absolute and
263         relative paths
264         support /r: as well as -r:
266 2004-05-08  Pawel Rozanski  <tokugawa@afn.no-ip.org>
268         * monop-completion.sh: simple bash completion for monop
270 2004-05-07 Ben Maurer  <bmaurer@users.sourceforge.net>
272         * monop.cs: Helpers for completion.
274 2004-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
276         * monop.cs: use assembly.LoadWithPartialName.
278 2004-04-29  Lluis Sanchez Gual  <lluis@ximian.com>
280         * outline.cs: Property.GetGetMethod() does not return the method if it
281         is private (it did until now because of a bug). Make sure it works as it 
282         worked before the fix.
284 2004-04-27 Ben Maurer  <bmaurer@users.sourceforge.net>
286         * outline.cs: Don't show the interfaces of an enum,
287         s/;/, for enum. Style cop.
289 2004-04-27  John Luke <jluke@cfl.rr.com>
291         * outline.cs: add GetTypeKind so we print
292         enums and interfaces, instead of always class or
293         struct  
294         add a special case for enums so we just print the fields
295         and quit
297 2004-04-03  Duncan Mak  <duncan@ximian.com>
299         * monop.cs (PrintTypes): show the number of types in the assembly
300         as well.
302 2004-03-30 Ben Maurer  <bmaurer@users.sourceforge.net>
304         * monop.cs: Print out class list on just -r.
306 2004-03-15 Ben Maurer  <bmaurer@users.sourceforge.net>
308         * monop.cs: Add buffering, makes output way, way faster.
310 2004-03-15 Ben Maurer  <bmaurer@users.sourceforge.net>
312         * outline.cs: add support for events.
314 2004-03-15 Ben Maurer  <bmaurer@users.sourceforge.net>
316         * monop.cs: remove printing logic.
317         * outline.cs: new file that just does printing stuff.
319         Makes the code *MUCH* cleaner.
321 2004-03-15  Miguel de Icaza  <miguel@ximian.com>
323         * monop.cs: Add -r: command line.
325 2004-03-14 Ben Maurer  <bmaurer@users.sourceforge.net>
327         * monop.cs: do structs better.
329 2004-03-14 Ben Maurer  <bmaurer@users.sourceforge.net>
331         * monop.cs: add gtk#. Try catch if gtk# is not installed.
333 2004-03-14 Ben Maurer  <bmaurer@users.sourceforge.net>
335         * monop.cs: You can type `monop string'
337 2004-03-14 Ben Maurer  <bmaurer@users.sourceforge.net>
339         * monop.cs: show `static' when it applies. Static members
340         first. new sorting stuff.
342 2004-03-14 Ben Maurer  <bmaurer@users.sourceforge.net>
344         * monop.cs: sort members
346 2004-03-14 Ben Maurer  <bmaurer@users.sourceforge.net>
348         * monop.cs: show base type, interfaces.
350 2004-03-14 Ben Maurer  <bmaurer@users.sourceforge.net>
352         * monop.cs: Make this work on MS (we have a bug).
354 2004-03-07 Ben Maurer  <bmaurer@users.sourceforge.net>
356         * monop.cs: New tool, clone of javap. Allows you to get
357         an outline view of a class.