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