X-Git-Url: http://git.annexia.org/?p=virt-top.git;a=blobdiff_plain;f=ChangeLog;h=d501dcde36163f3c0f13db7d233886e7b715e00d;hp=250a8dd3b65fd8fbe997a66c16896e37448c16a8;hb=4680c89964492834551a2c8716cccb6d65b57f14;hpb=22fd1362126a96472a921d3767ca3220ab13da5a diff --git a/ChangeLog b/ChangeLog index 250a8dd..d501dcd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,57 +1,182 @@ -2007-10-19 Richard Jones +2011-01-06 Richard W.M. Jones - * virt-top/virt_top_utils.mli, virt-top/virt_top.mli: Reorganise - the code and add some interfaces. + Version 1.0.5. -2007-10-17 Richard Jones + Add aclocal.m4 file to git. + This file is sort of generated, but at the moment only has + a single line which includes m4/ocaml.m4, that is vital for + the build. - * virt-top/virt_top.ml: Added --script option. - * virt-top/virt_top.ml: Log domain data to CSV file. - * virt-top/virt_top.ml: Added --no-csv-cpu, --no-csv-block and - --no-csv-net flags. - * virt-top/*.ml: Much code clean-up and restructuring. - * *: Added GNU GPL/LGPL copyright messages to all files. + Re-add virt-top/README file. + This seems to have been dropped during the hg->git transition. -2007-09-27 Richard Jones + Document background noise of RX packets from bridges (RHBZ#647987). + For more information see: + https://bugzilla.redhat.com/show_bug.cgi?id=647987#c9 - * configure.ac: Changed version to 0.3.2.9. - * Makefile.in: Re-enable virt-df. - * virt-df/virt_df*.ml: Mostly finished off the core of virt-df. - Ext2/3 support. No LVM as yet. - * virt-df/README: Added README file. + man page: Remove excess blank line. -2007-09-24 Richard Jones + main: Record and print full exception stack traces. + This turns on stack trace recording unconditionally (the same + effect as if OCAMLRUNPARAM=b was always supplied), and also prints + stack traces to the log file if there is an exception. - * configure.ac: Version 0.3.2.8 for release. - * virt-top/virt-top.ml, virt-top/virt-top.pod: Support for - $HOME/.virt-toprc init file, modelled after top. - * virt-top/virt_top_utils.ml: Split out string utilities - into a separate file. + See also: + http://caml.inria.fr/pub/docs/manual-ocaml/libref/Printexc.html -2007-09-20 Richard Jones + Note that this requires OCaml >= 3.11.0. - * virt-top/virt_top.ml: qemu:/// URIs (and others) don't support - virConnectGetHostname. Catch this exception. + Fix pad function to work for negative widths (RHBZ#634435). + The pad function is supposed to pad a string to a width. Under some + circumstances, the width parameter could be negative resulting in a + call to String.sub such as: - * Makefile.in: Disable virt-df in this release until I have - time to fix it properly. - * Makefile.in: Fix 'check-manifest' rule. Added 'make release'. - * MANIFEST: Updated MANIFEST. + String.sub str 0 (-1) -2007-09-19 Richard Jones + which caused an exception to be thrown and not caught, causing + virt-top to exit. Fix the pad function to return an empty string if + width <= 0 instead of throwing an exception. - * virt-top/virt_top.ml: Ignore transient error from - C.num_of_defined_domains when it cannot contact xend; that - was causing virt-top to exit when xend was restarted. + See also: + https://bugzilla.redhat.com/show_bug.cgi?id=634435 -2007-09-18 Richard Jones + Update dependencies. - * virt-df/virt_df.ml: Handle domains with partition-backed - block devices. + Update generated man pages. - * virt-top/virt_top.ml: Don't fail on older libvirt which would - give an error if list_domains or list_defined_domains was called - with n = 0. + Fix virt-top --end-time option when TZ<>UTC (RHBZ#637964). + Return the end time as seconds since 1970, and don't adjust it + for timezone. In the main module the end time is compared against + the result of Unix.gettimeofday, which is also seconds since 1970, + so the comparison now works. - * ChangeLog: Start tracking changes. + Tested with TZ=UTC-05, TZ=UTC and TZ=UTC+05. + NB: This has not been tested against ocaml-calendar 1.x, although + that version of calendar is obsolete and no one should be using it. + + Update dependencies file. + + man page: memory option shows total guest memory (RHBZ#647991). + + man page: Update copyright date and link to web pages. + + Remove references to xm/xentop manual pages (RHBZ#648186). + These Xen tools are obsolete since virsh/virt-top works across + all hypervisors. + +2010-09-02 Richard Jones + + Change order of return values from getyx - fixes display of historical CPU. + In this commit: + http://cvs.savannah.gnu.org/viewvc/ocaml-tmk/functions.c?root=ocaml-tmk&r1=1.2&r2=1.3 + Sam changed (fixed) the order that the coordinates are returned + from the ncurses 'getyx' call. Since this commit was made 3 years + ago it should be safe to assume everyone is using the new ocaml-ncurses + by now. + + This meant the historical %CPU was being displayed off the bottom of + the screen instead of on the top row at the right. Now it is displayed + in the correct place. + +2010-06-15 Kiyoto Hashida + + Update Japanese translations (RHBZ#493799). + +2010-03-05 Yulia + + Updated Russian translations (RHBZ#493799). + +2010-03-05 Richard Jones + + Newer autoconf adds PACKAGE_URL definition. + +2010-02-12 Richard Jones + + zh_CN: Remove bogus Plural-Forms line. + + Japanese: update bogus 'Plural-Forms: Plural-Forms'. + +2010-02-12 Hajime Taira + + Update Japanese translations (RHBZ#493799). + +2010-01-28 Richard Jones + + Rename te_IN.po -> te.po (Piotr Drąg). + + Telugu translation added by Krishna Babu K (RHBZ#493799c32) + + Polish translation updated by Piotr Drag (RHBZ#493799c31) + + Portuguese translation added by Glaucia Cintra (RHBZ#493799c30) + + Chinese translation updated by Wei Liu (RHBZ#493799c29) + + Oriya translation added by Manoj Kumar Giri (RHBZ#493799c28) + + Spanish translation updated by Daniel Cabrera (RHBZ#493799c27) + +2009-12-30 Richard Jones + + Update to ocaml-autoconf macros 1.1 + + Fix detection of ocaml-findlib. + +2009-10-06 Richard Jones + + HACKING file, update (C) messages. + + Update PO files. + + Remove extra spaces after s_ and f_ operators. + + Safer curses functions. + Add safer curses functions which don't require use of dangerous + ignore() function. + + Replace failwith (sprintf...) with failwithf + + Remove -w s and fix so it compiles without warnings. + + Remove NSIS installer. + + Change over to using ocaml.m4 macros. + +2009-10-05 Richard Jones + + Updated MANIFEST. + + TODO.virt-top renamed as TODO + + Typo fixed. + + Update manpage with --version option. + + Add virt-top --version command line option. + + Add the real virt-top version to help display. + + Version 1.0.4 for release. + + Fix changelog and manifest files. + + gitlog-to-changelog: If the date field is empty, don't barf. + + Added Jim Meyering's gitlog-to-changelog program. + + Add total hardware memory field (RHBZ#521785) + + Don't need to explicitly link against ncurses. + + Update PO files. + + Add Japanese to list of translations. + + Use msgfmt to generate *.mo files correctly. + + Update documentation. + + Update dependencies. + + Rename .hgignore -> .gitignore, update dependencies.