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