Bumped for release 0.2.3

This commit is contained in:
Daniel P. Berrange 2006-09-26 16:52:12 -04:00
parent d6428a4aff
commit 2c6cca42b6
4 changed files with 138 additions and 4 deletions

118
ChangeLog
View File

@ -1,8 +1,124 @@
2006-09-26 "Daniel P. Berrange <berrange@redhat.com>
* po/en_GB.po, po/virt-manager.pot:
Re-generate POT files
[4635350fbedc] [tip]
* src/virtManager/create.py:
Filter ISO filechooser to just *.iso files
[c47aec961cdc]
* src/virtManager/create.py:
When catching errors catch Exception instead of RuntimeException for
better error handling
[7ea27b8eaded]
2006-09-25 "Daniel P. Berrange <berrange@redhat.com>
* src/virtManager/console.py, src/vncViewer/vnc.py:
Merge heads
[489dcc2d36d6]
* src/virt-manager.py.in, src/virtManager/console.py,
src/virtManager/details.py, src/virtManager/domain.py,
src/virtManager/engine.py:
Merge heads
[84a6389d11f3]
* src/Makefile.am, src/virt-manager.py.in,
src/virtManager/Makefile.am, src/virtManager/config.py,
src/virtManager/console.py, src/virtManager/details.py,
src/virtManager/domain.py, src/virtManager/engine.py,
src/virtManager/keyring.py:
Replace numerous 'print' statements with calls to python logging.
Added syntax checking of all modules
[16a2e8ff4402]
* src/vncViewer/vnc.py:
Merge heads
[07acbe79dda0]
* src/virtManager/console.py, src/vncViewer/vnc.py:
Re-work handling of keyboard modifiers to ensure un-modified keyvals
are sent over wire, allowing remote client to interpret modifiers as
it so desires (only exception being shift which is intepreted
locally). Also allow VNC widget to auto-grab keyboard on mouse
enter/ ungrab on exit
[edde7854a4ac]
2006-09-22 "Daniel P. Berrange <berrange@redhat.com>
* src/virt-manager.glade:
Remove redundant close button & inactive help button from manager
view to reduce desktop footprint
[4281dfc00da3]
* src/virtManager/console.py:
Switch out of full screen & drop key grab when hiding console window
[aba0d6dcefe3]
* src/virtManager/manager.py:
Only display 40 CPU samples in manage window to avoid graph getting
too wide
[f1db328b64cb]
* AUTHORS, src/virtManager/create.py:
When going back in create wizard, skip fv/pv choice page if host
isn't hvm capable (William Sheehan via bz 207409)
[9a4b089db2a5]
* src/virt-manager.glade, src/virtManager/details.py,
src/virtManager/domain.py:
Re-arranged CPU details page. Now display, current & max VCPU
allocation. Dont allow adjustment above the max
[88266f92e297]
2006-09-20 "Daniel P. Berrange <berrange@redhat.com>
* src/virtManager/create.py, src/virtManager/engine.py:
Popup console window synchronously to create method to avoid race
condition
[1dba9fde5480]
2006-09-19 "Daniel P. Berrange <berrange@redhat.com>
* src/virtManager/create.py:
Don't convert to an int because that introduces rounding errors when
xeninst converts back into bytes
[ae06a1674831]
* src/virtManager/create.py:
Use physical device names in CDROM list. Listen out for media
insert/remove events & update list accordingly
[f4332d6425c3]
* src/virt-manager.py.in:
Added import check for gtk to quit earlier if $DISPLAY is not set
[01d5f444ab59]
* src/virtManager/create.py:
Ensure that file size is disabled when raw partition checkbox is
active
[f70853b58864]
2006-09-15 "Daniel P. Berrange <berrange@redhat.com>
* .hgtags:
Added tag RELEASE-0.2.2-1 for changeset
37220522ba6d379d0ea140c2960e688cdb375927
[56ebe6cd47de]
* virt-manager.spec.in:
Added changelogs & pulled in fixes from FC
[37220522ba6d] [RELEASE-0.2.2-1]
* ChangeLog, TODO, configure.ac:
Release 0.2.2
[3597807826eb]
* po/Makefile.am, po/en_GB.po, po/virt-manager.pot:
Refreshd POT files
[d5b685a8f1e4] [tip]
[d5b685a8f1e4]
* src/virt-manager.glade:
Always enable VNC toolbars to avoid GTK window resizing issues

2
README
View File

@ -34,7 +34,7 @@ please report any success to the mailing lists
gnome-python-desktop >= 2.15.4
libxml2-python >= 2.6.23
vte >= 0.12.2
python-xeninst >= 0.90.1
python-xeninst >= 0.93.0
The latter is available from

View File

@ -1,5 +1,5 @@
AC_INIT(virt-manager.spec.in)
AM_INIT_AUTOMAKE(virt-manager, 0.2.2)
AM_INIT_AUTOMAKE(virt-manager, 0.2.3)
AC_PROG_CC
AC_PROG_LIBTOOL

View File

@ -34,7 +34,7 @@ Requires: gnome-python2-gnomekeyring >= 2.15.4
# Minimum we've tested with
Requires: libxml2-python >= 2.6.23
# Required to install Xen guests
Requires: python-xeninst >= 0.90.1
Requires: python-xeninst >= 0.93.0
# Required for loading the glade UI
Requires: pygtk2-libglade
# Required for our graphics which are currently SVG format
@ -129,6 +129,24 @@ fi
%{_datadir}/dbus-1/services/%{name}.service
%changelog
* Tue Sep 26 2006 Daniel Berrange <berrange@redhat.com> - 0.2.3-1
- Require xeninst >= 0.93.0 to fix block backed devices
- Skip para/fully-virt step when going back in wizard if not HVM host (bz 207409)
- Fix handling of modifier keys in VNC console so Alt key doesn't get stuck (bz 207949)
- Allow sticky modifier keys by pressing same key 3 times in row (enables Ctrl-Alt-F1
by doing Ctrl Ctrl Ctrl Alt-F1)
- Improved error handling during guest creation
- Log errors with python logging, instead of to stdout
- Remove unused buttons from main domain list window
- Switch out of full screen & release key grab when closing console
- Trim sparkline CPU history graph to 40 samples max
- Constraint VCPU adjuster to only allow upto guest's max VCPU count
- Show guest's max & current VCPU count in details page
- Fix rounding of disk sizes to avoid a 1.9 GB disk being rounded down to 1 GB
- Use raw block device path to CDROM not mount point for HVM guest (bz 206965)
- Fix visibility of file size spin box (bz 206186 part 2)
- Check for GTK failing to open X11 display (bz 205938)
* Fri Sep 15 2006 Daniel Berrange <berrange@redhat.com> - 0.2.2-1
- Fix event handling in create VM wizard (bz 206660 & 206186)
- Fix close button in about dialog (bz 205943)