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