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