Commit ChangeLog.
[virt-top.git] / ChangeLog
1 2008-01-08  Richard Jones  <rjones@redhat.com>
2
3         Rename some dialogs in virt-ctrl.
4         * virt-ctrl/vc_mainwindow.ml: Fix some "virtual machine manager" ->
5           "virt-ctrl" dialogs in main window.
6
7         Fix bad paths in wininstaller.nsis.in.
8         * wininstaller.nsis.in: 
9         * .hgignore: Ignore *.orig files.
10
11         Fix native virt-ctrl on Windows.
12         * virt-ctrl/Makefile.in, virt-ctrl/mingw-gcc-wrapper.ml: Wrapper
13           around 'gcc' to fix native virt-ctrl builds on Windows/MinGW.
14         * .hgignore: Ignore *.exe files.
15
16 2008-01-07  Richard Jones  <rjones@redhat.com>
17
18         Updated MANIFEST.
19         * MANIFEST: Bring the MANIFEST file up to date.
20
21         mlvirtmanager renamed as virt-ctrl.
22         * .hgignore, Makefile.in, configure.ac: Rename
23           mlvirtmanager as virt-ctrl to avoid any confusion with
24           the real virt-manager.
25         * mlvirtmanager/, virt-ctrl/: Subdirectory moved.
26         * README: Supporting documentation updated.
27
28         Include mlvirtmanager in the Windows installer.
29         * wininstaller.nsis.in: Include mlvirtmanager in the Windows
30           installer.
31         * Makefile.in: Re-enable native code builds for Windows installer.
32         * mlvirtmanager/Makefile.in: Pass $(LDFLAGS) when building on
33           Windows - you need to specify the location of $GTK/lib.
34
35         Bundle Gtk DLLs and support files in the Windows installer.
36         * configure.ac: Detect library paths instead of hard-
37           coding them.
38         * wininstaller.nsis (removed): This file is now autogenerated.
39         * wininstaller.nsis.in: Bundle Gtk DLLs and support files.
40         * Makefile.in: More verbose messages from NSIS.
41
42         Include required libraries in the Windows installer.
43         * wininstaller.nsis: Include *.dll files.
44
45         Windows installer.
46         * Makefile.in, configure.ac: Add --with-nsis[=path/to/nsis] and
47           call out to 'makensis.exe'.
48         * wininstaller.nsis, winlicense.rtf: Configuration and support
49           files for NSIS-based Windows installer.
50         * README: Update documentation to reflect.
51
52 2008-01-05  Richard Jones  <rjones@redhat.com>
53
54         mlvirtmanager compiles and runs on Windows (MinGW).
55         * configure.ac: Directories to search for optional modules were
56           specified incorrectly - fixed.
57         * mlvirtmanager/Makefile.in: Changed so can build without
58           ocamlfind, and checked it can build on Windows.
59
60         mlvirsh can compile without extlib
61         * mlvirsh/mlvirsh.ml: mlvirsh only needed three functions from
62           extlib, so copy them in here to avoid the dependency.
63         * configure.ac: No dependency on extlib for mlvirsh.
64         * mlvirsh/Makefile.in: Changed so can build without ocamlfind.
65         * README: Updated documentation.
66
67         Update documentation for Windows.
68         * README: Update documentation for Windows.
69
70         Build libvirt and examples on Windows (MinGW).
71         * aclocal.m4: Add AC_CHECK_OCAML_MODULE to check for OCaml
72           modules directly (without ocamlfind being needed).
73         * configure.ac: Remove requirement for ocamlfind.
74         * config.guess, config.sub: Ship these files to guess host,
75           build and target.
76         * libvirt/Makefile.in, examples/Makefile.in: Change these
77           so they don't require ocamlfind, do the right thing on MinGW.
78         * Make.rules.in: Make.rules is now generated from this file.
79           File can use ocamlfind or direct ocaml commands as available.
80         * .hgignore: Ignore some generated files on Windows.
81
82 2008-01-04  Richard Jones  <rjones@redhat.com>
83
84         Make extlib an optional dependency.
85         * Makefile.in, README, configure.ac, examples/Makefile.in,
86           libvirt/Makefile.in, mlvirtmanager/Makefile.in: Much code
87           doesn't really need extlib, so make it optional.
88           Bail earlier in configure step if we don't have ocamlfind.
89
90 2007-12-20  Richard Jones  <rjones@redhat.com>
91
92         * libvirt/libvirt_c.c: Use enter/leave_blocking_section around
93           synchronous libvirt API calls, so that multithreaded OCaml
94           programs can be used.
95         * configure.ac: Version 0.4.0.0 for release.
96         * libvirt/libvirt.ml, libvirt/libvirt.mli, libvirt/libvirt_c.c:
97           Change the ad-hoc "foo not supported" exception into a
98           specific Libvirt.Not_supported "foo" exception.
99         * virt-top/virt_top.ml: Change virt-top to understand new
100           exception type.
101
102 2007-11-20  Richard Jones  <rjones@redhat.com>
103
104         * libvirt/libvirt.mli, libvirt/libvirt.ml: New error numbers
105           in base libvirt.
106         * libvirt/libvirt_c.c: Gracefully handle the case where libvirt
107           throws an error number we have not heard of before (eg. when
108           dynamic linking with newer libvirt).
109         * configure.ac: Check <libvirt/virterror.h> exists.
110         * configure.ac: Version 0.3.3.4.
111         * virt-top/virt-top.pod: Fixed ocaml libvirt website URI in manpage.
112
113 2007-11-19  Richard Jones  <rjones@redhat.com>
114
115         * virt-top/virt-top.pod: Example connection URIs in virt-top manpage
116           (bug 390691).
117
118 2007-11-14  Richard Jones  <rjones@redhat.com>
119
120         * libvirt/libvirt.mli: Added filename = string type to clarify
121           some function signatures which take a filename.  Added lots
122           of function documentation.
123         * libvirt/libvirt.ml: Added VIR_FROM_OPENVZ.
124         * configure.ac: Version 0.3.3.3 for release.
125
126 2007-11-14  Richard Jones  <rjones@redhat.com>
127
128         * Makefile.in: New rules for releasing and uploading.
129
130 2007-11-14  Richard Jones  <rjones@redhat.com>
131
132         * libvirt/libvirt.mli, libvirt/libvirt.ml, libvirt/libvirt_c.c:
133           Added support for virNodeGetFreeMemory and virNodeGetCellsFreeMemory
134         * mlvirsh/mlvirsh.ml: Added 'freecell' command.
135
136 2007-10-19  Richard Jones  <rjones@redhat.com>
137
138         * virt-top/virt_top_calendar.ml: Added --end-time option.
139           Extra optional dep on ocaml-calendar.
140         * virt-top/virt-top.pod: Document how to compress and split
141           CSV files.  Document --end-time option and time formats.
142         * virt-top/virt_top.ml: Allow sub-second delays when in batch
143           and script mode.
144         * virt-top/virt_top_utils.mli, virt-top/virt_top.mli: Reorganise
145           the code and add some interfaces.
146
147 2007-10-17  Richard Jones  <rjones@redhat.com>
148
149         * virt-top/virt_top.ml: Added --script option.
150         * virt-top/virt_top.ml: Log domain data to CSV file.
151         * virt-top/virt_top.ml: Added --no-csv-cpu, --no-csv-block and
152           --no-csv-net flags.
153         * virt-top/*.ml: Much code clean-up and restructuring.
154         * *: Added GNU GPL/LGPL copyright messages to all files.
155
156 2007-09-27  Richard Jones  <rjones@redhat.com>
157
158         * configure.ac: Changed version to 0.3.2.9.
159         * Makefile.in: Re-enable virt-df.
160         * virt-df/virt_df*.ml: Mostly finished off the core of virt-df.
161           Ext2/3 support.  No LVM as yet.
162         * virt-df/README: Added README file.
163
164 2007-09-24  Richard Jones  <rjones@redhat.com>
165
166         * configure.ac: Version 0.3.2.8 for release.
167         * virt-top/virt-top.ml, virt-top/virt-top.pod: Support for
168           $HOME/.virt-toprc init file, modelled after top.
169         * virt-top/virt_top_utils.ml: Split out string utilities
170           into a separate file.
171
172 2007-09-20  Richard Jones  <rjones@redhat.com>
173
174         * virt-top/virt_top.ml: qemu:/// URIs (and others) don't support
175           virConnectGetHostname.  Catch this exception.
176
177         * Makefile.in: Disable virt-df in this release until I have
178           time to fix it properly.
179         * Makefile.in: Fix 'check-manifest' rule.  Added 'make release'.
180         * MANIFEST: Updated MANIFEST.
181
182 2007-09-19  Richard Jones  <rjones@redhat.com>
183
184         * virt-top/virt_top.ml: Ignore transient error from
185           C.num_of_defined_domains when it cannot contact xend; that
186           was causing virt-top to exit when xend was restarted.
187
188 2007-09-18  Richard Jones  <rjones@redhat.com>
189
190         * virt-df/virt_df.ml: Handle domains with partition-backed
191           block devices.
192
193         * virt-top/virt_top.ml: Don't fail on older libvirt which would
194           give an error if list_domains or list_defined_domains was called
195           with n = 0.
196
197         * ChangeLog: Start tracking changes.
198