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