2006-07-27 15:51:03 +00:00
|
|
|
# -*- rpm-spec -*-
|
|
|
|
|
2011-03-31 16:07:05 +00:00
|
|
|
|
2013-04-29 16:58:54 +00:00
|
|
|
%define with_guestfs 0
|
|
|
|
%define disable_unsupported_rhel 0
|
|
|
|
%define askpass_package "openssh-askpass"
|
2011-03-31 16:07:05 +00:00
|
|
|
%define qemu_user "qemu"
|
2013-04-29 16:58:54 +00:00
|
|
|
%define libvirt_packages "libvirt-daemon-kvm"
|
2011-03-31 16:07:05 +00:00
|
|
|
%define preferred_distros "fedora,rhel"
|
|
|
|
%define kvm_packages "qemu-system-x86"
|
|
|
|
|
2013-04-29 16:58:54 +00:00
|
|
|
%if 0%{?rhel}
|
|
|
|
%define preferred_distros "rhel,fedora"
|
|
|
|
%define kvm_packages "qemu-kvm"
|
|
|
|
%define disable_unsupported_rhel 1
|
|
|
|
%endif
|
2011-03-31 16:07:05 +00:00
|
|
|
|
2012-06-06 21:37:32 +00:00
|
|
|
|
2012-07-09 21:31:30 +00:00
|
|
|
# End local config
|
|
|
|
|
2013-04-29 16:58:54 +00:00
|
|
|
%global gitcommit d3f9bc8e
|
|
|
|
%define _version 0.10.0
|
|
|
|
%define _release 0.1.git%{gitcommit}
|
2012-04-25 13:23:19 +00:00
|
|
|
|
2011-03-31 16:07:05 +00:00
|
|
|
|
2006-07-27 15:51:03 +00:00
|
|
|
# This macro is used for the continuous automated builds. It just
|
|
|
|
# allows an extra fragment based on the timestamp to be appended
|
|
|
|
# to the release. This distinguishes automated builds, from formal
|
|
|
|
# Fedora RPM builds
|
2012-07-09 21:31:30 +00:00
|
|
|
%define _extra_release %{?dist:%{dist}}%{?extra_release:%{extra_release}}
|
2006-07-27 15:51:03 +00:00
|
|
|
|
2013-04-29 16:58:54 +00:00
|
|
|
Name: virt-manager
|
2011-03-31 16:07:05 +00:00
|
|
|
Version: %{_version}
|
2013-03-01 17:37:09 +00:00
|
|
|
Release: %{_release}%{_extra_release}
|
2011-07-27 01:24:26 +00:00
|
|
|
%define verrel %{version}-%{release}
|
2006-07-27 15:51:03 +00:00
|
|
|
|
2011-07-27 01:24:26 +00:00
|
|
|
Summary: Virtual Machine Manager
|
2006-07-27 15:51:03 +00:00
|
|
|
Group: Applications/Emulators
|
2008-01-11 01:46:25 +00:00
|
|
|
License: GPLv2+
|
2007-08-29 21:31:59 +00:00
|
|
|
URL: http://virt-manager.org/
|
2009-07-29 02:35:39 +00:00
|
|
|
BuildArch: noarch
|
2006-07-27 15:51:03 +00:00
|
|
|
|
2013-04-29 16:58:54 +00:00
|
|
|
#Source0: http://virt-manager.org/download/sources/%{name}/%{name}-%{version}.tar.gz
|
|
|
|
# Generate source with
|
|
|
|
# git clone git://git.fedorahosted.org/git/virt-manager.git
|
|
|
|
# cd virt-manager
|
|
|
|
# git archive --output virt-manager-%{gitcommit}.tar.gz --prefix virt-manager-%{gitcommit}/ %{gitcommit}
|
|
|
|
Source: virt-manager-%{gitcommit}.tar.gz
|
|
|
|
|
|
|
|
|
|
|
|
Requires: pygobject3
|
|
|
|
Requires: gtk3
|
|
|
|
Requires: libvirt-glib >= 0.0.9
|
|
|
|
Requires: gnome-python2-gconf
|
|
|
|
Requires: libxml2-python
|
|
|
|
Requires: vte
|
|
|
|
|
2008-09-10 23:06:21 +00:00
|
|
|
# For console widget
|
2013-04-29 16:58:54 +00:00
|
|
|
Requires: gtk-vnc2
|
|
|
|
Requires: spice-gtk3
|
|
|
|
|
|
|
|
|
2011-07-27 01:24:26 +00:00
|
|
|
%if %{with_guestfs}
|
|
|
|
Requires: python-libguestfs
|
|
|
|
%endif
|
|
|
|
|
2006-07-27 15:51:03 +00:00
|
|
|
|
2008-09-10 23:06:21 +00:00
|
|
|
BuildRequires: intltool
|
2013-03-01 17:37:09 +00:00
|
|
|
BuildRequires: /usr/bin/pod2man
|
2008-09-10 23:06:21 +00:00
|
|
|
|
2006-09-04 19:52:14 +00:00
|
|
|
|
2006-07-27 15:51:03 +00:00
|
|
|
%description
|
2008-09-10 23:06:21 +00:00
|
|
|
Virtual Machine Manager provides a graphical tool for administering virtual
|
|
|
|
machines for KVM, Xen, and QEmu. Start, stop, add or remove virtual devices,
|
|
|
|
connect to a graphical or serial console, and see resource usage statistics
|
|
|
|
for existing VMs on local or remote machines. Uses libvirt as the backend
|
|
|
|
management API.
|
2006-07-27 15:51:03 +00:00
|
|
|
|
2011-07-27 01:24:26 +00:00
|
|
|
|
|
|
|
%package common
|
|
|
|
Summary: Common files used by the different Virtual Machine Manager interfaces
|
|
|
|
Group: Applications/Emulators
|
|
|
|
|
|
|
|
# This version not strictly required: virt-manager should work with older,
|
|
|
|
# however varying amounts of functionality will not be enabled.
|
|
|
|
Requires: libvirt-python >= 0.7.0
|
2013-04-29 16:58:54 +00:00
|
|
|
Requires: libxml2-python
|
|
|
|
Requires: python-urlgrabber
|
|
|
|
Requires: python-ipaddr
|
2011-07-27 01:24:26 +00:00
|
|
|
|
|
|
|
%description common
|
2013-04-29 16:58:54 +00:00
|
|
|
Common files used by the different virt-manager interfaces, as well as
|
|
|
|
virt-install related tools.
|
|
|
|
|
|
|
|
|
|
|
|
%package -n virt-install
|
|
|
|
Summary: Utilities for installing virtual machines
|
|
|
|
|
|
|
|
Requires: virt-manager-common = %{verrel}
|
|
|
|
|
|
|
|
Provides: virt-install
|
|
|
|
Provides: virt-clone
|
|
|
|
Provides: virt-image
|
|
|
|
Provides: virt-convert
|
|
|
|
Obsoletes: python-virtinst
|
|
|
|
|
|
|
|
%description -n virt-install
|
|
|
|
Package includes several command line utilities, including virt-install
|
|
|
|
(build and install new VMs) and virt-clone (clone an existing virtual
|
|
|
|
machine).
|
|
|
|
|
2011-07-27 01:24:26 +00:00
|
|
|
|
2006-07-27 15:51:03 +00:00
|
|
|
%prep
|
2013-04-29 16:58:54 +00:00
|
|
|
%setup -q -n virt-manager-%{gitcommit}
|
2006-07-27 15:51:03 +00:00
|
|
|
|
|
|
|
%build
|
2011-03-31 16:07:05 +00:00
|
|
|
%if %{qemu_user}
|
2013-04-29 16:58:54 +00:00
|
|
|
%define _qemu_user --qemu-user=%{qemu_user}
|
2011-03-31 16:07:05 +00:00
|
|
|
%endif
|
|
|
|
|
|
|
|
%if %{kvm_packages}
|
2013-04-29 16:58:54 +00:00
|
|
|
%define _kvm_packages --kvm-package-names=%{kvm_packages}
|
2011-03-31 16:07:05 +00:00
|
|
|
%endif
|
|
|
|
|
|
|
|
%if %{preferred_distros}
|
2013-04-29 16:58:54 +00:00
|
|
|
%define _preferred_distros --preferred-distros=%{preferred_distros}
|
2011-03-31 16:07:05 +00:00
|
|
|
%endif
|
|
|
|
|
|
|
|
%if %{libvirt_packages}
|
2013-04-29 16:58:54 +00:00
|
|
|
%define _libvirt_packages --libvirt-package-names=%{libvirt_packages}
|
2011-03-31 16:07:05 +00:00
|
|
|
%endif
|
|
|
|
|
2012-07-09 21:31:30 +00:00
|
|
|
%if %{askpass_package}
|
2013-04-29 16:58:54 +00:00
|
|
|
%define _askpass_package --askpass-package-names=%{askpass_package}
|
2012-07-09 21:31:30 +00:00
|
|
|
%endif
|
|
|
|
|
2011-03-31 16:07:05 +00:00
|
|
|
%if %{disable_unsupported_rhel}
|
2013-04-29 16:58:54 +00:00
|
|
|
%define _disable_unsupported_rhel --hide-unsupported-rhel-options
|
2011-03-31 16:07:05 +00:00
|
|
|
%endif
|
|
|
|
|
2012-07-09 21:31:30 +00:00
|
|
|
%if 0%{?default_graphics:1}
|
2013-04-29 16:58:54 +00:00
|
|
|
%define _default_graphics --default-graphics=%{default_graphics}
|
2011-03-31 16:07:05 +00:00
|
|
|
%endif
|
|
|
|
|
|
|
|
|
2013-04-29 16:58:54 +00:00
|
|
|
python setup.py configure \
|
|
|
|
--pkgversion="%{version}" \
|
|
|
|
%{?_qemu_user} \
|
|
|
|
%{?_kvm_packages} \
|
|
|
|
%{?_libvirt_packages} \
|
|
|
|
%{?_askpass_package} \
|
|
|
|
%{?_preferred_distros} \
|
|
|
|
%{?_disable_unsupported_rhel} \
|
|
|
|
%{?_default_graphics}
|
2006-07-27 15:51:03 +00:00
|
|
|
|
2011-03-31 16:07:05 +00:00
|
|
|
|
2006-07-27 15:51:03 +00:00
|
|
|
%install
|
2013-04-29 16:58:54 +00:00
|
|
|
python setup.py install -O1 --root=$RPM_BUILD_ROOT
|
2006-07-27 15:51:03 +00:00
|
|
|
|
2013-04-29 16:58:54 +00:00
|
|
|
%find_lang %{name}
|
2006-07-27 15:51:03 +00:00
|
|
|
|
2006-09-04 19:52:14 +00:00
|
|
|
|
|
|
|
%post
|
2011-09-27 18:02:13 +00:00
|
|
|
/bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
|
2013-04-29 16:58:54 +00:00
|
|
|
/usr/bin/update-desktop-database &> /dev/null || :
|
|
|
|
|
2007-03-20 17:22:45 +00:00
|
|
|
|
2006-09-04 19:52:14 +00:00
|
|
|
%postun
|
2011-09-27 18:02:13 +00:00
|
|
|
if [ $1 -eq 0 ] ; then
|
|
|
|
/bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null
|
|
|
|
/usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
2013-04-29 16:58:54 +00:00
|
|
|
/usr/bin/glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null || :
|
2011-09-27 18:02:13 +00:00
|
|
|
fi
|
2013-04-29 16:58:54 +00:00
|
|
|
/usr/bin/update-desktop-database &> /dev/null || :
|
2007-03-20 17:22:45 +00:00
|
|
|
|
2011-07-27 01:24:26 +00:00
|
|
|
|
2011-09-27 18:02:13 +00:00
|
|
|
%posttrans
|
|
|
|
/usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
2013-04-29 16:58:54 +00:00
|
|
|
/usr/bin/glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null || :
|
|
|
|
|
2006-09-04 19:52:14 +00:00
|
|
|
|
2011-07-27 01:24:26 +00:00
|
|
|
%files
|
2013-04-29 16:58:54 +00:00
|
|
|
%doc README COPYING NEWS
|
2006-07-27 15:51:03 +00:00
|
|
|
%{_bindir}/%{name}
|
|
|
|
|
2007-08-29 21:31:59 +00:00
|
|
|
%{_mandir}/man1/%{name}.1*
|
|
|
|
|
2013-04-29 16:58:54 +00:00
|
|
|
%{_datadir}/%{name}/ui/*.ui
|
|
|
|
%{_datadir}/%{name}/virt-manager
|
|
|
|
%{_datadir}/%{name}/virtManager
|
2006-07-27 15:51:03 +00:00
|
|
|
|
2011-07-27 01:24:26 +00:00
|
|
|
%{_datadir}/%{name}/icons
|
|
|
|
%{_datadir}/icons/hicolor/*/apps/*
|
2007-03-27 19:21:42 +00:00
|
|
|
|
2011-07-27 01:24:26 +00:00
|
|
|
%{_datadir}/applications/%{name}.desktop
|
2013-04-29 16:58:54 +00:00
|
|
|
%{_datadir}/glib-2.0/schemas/org.virt-manager.virt-manager.gschema.xml
|
|
|
|
|
2010-03-25 00:05:29 +00:00
|
|
|
|
2011-07-27 01:24:26 +00:00
|
|
|
%files common -f %{name}.lang
|
|
|
|
%dir %{_datadir}/%{name}
|
|
|
|
|
2013-04-29 16:58:54 +00:00
|
|
|
%{_datadir}/%{name}/virtcli
|
|
|
|
%{_datadir}/%{name}/virtconv
|
|
|
|
%{_datadir}/%{name}/virtinst
|
2006-07-27 15:51:03 +00:00
|
|
|
|
2011-07-27 01:24:26 +00:00
|
|
|
|
2013-04-29 16:58:54 +00:00
|
|
|
%files -n virt-install
|
|
|
|
%{_mandir}/man1/virt-install.1*
|
|
|
|
%{_mandir}/man1/virt-clone.1*
|
|
|
|
%{_mandir}/man1/virt-convert.1*
|
|
|
|
%{_mandir}/man1/virt-image.1*
|
|
|
|
%{_mandir}/man5/virt-image.5*
|
|
|
|
|
|
|
|
%{_datadir}/%{name}/virt-install
|
|
|
|
%{_datadir}/%{name}/virt-clone
|
|
|
|
%{_datadir}/%{name}/virt-image
|
|
|
|
%{_datadir}/%{name}/virt-convert
|
|
|
|
|
|
|
|
%{_bindir}/virt-install
|
|
|
|
%{_bindir}/virt-clone
|
|
|
|
%{_bindir}/virt-image
|
|
|
|
%{_bindir}/virt-convert
|
2006-08-24 19:36:34 +00:00
|
|
|
|
2006-07-27 15:51:03 +00:00
|
|
|
|
|
|
|
%changelog
|
2013-04-29 16:58:54 +00:00
|
|
|
* Mon Apr 29 2013 Cole Robinson <crobinso@redhat.com> - 0.10.0-0.1.gitd3f9bc8e
|
|
|
|
- Update to git snapshot for next release
|
|
|
|
|
2013-04-01 11:51:27 +00:00
|
|
|
* Mon Apr 01 2013 Cole Robinson <crobinso@redhat.com> - 0.9.5-1
|
|
|
|
- Rebased to version 0.9.5
|
|
|
|
- Enable adding virtio-scsi disks (Chen Hanxiao) (bz 887584)
|
|
|
|
- Support security auto-relabel setting (Martin Kletzander)
|
|
|
|
- Support disk iotune settings (David Shane Holden)
|
|
|
|
- Support 'reset' as a reboot option (John Doyle)
|
|
|
|
- Don't pull in non-native qemu packages on first run (bz 924469)
|
|
|
|
- Don't create LVM volumes with alloc=0, it doesn't work (bz 872162)
|
|
|
|
- Fix storage browser hang on KDE (bz 880781)
|
|
|
|
- Fix package installation on KDE (bz 882024)
|
|
|
|
|
2013-03-01 17:37:09 +00:00
|
|
|
* Fri Mar 01 2013 Cole Robinson <crobinso@redhat.com> - 0.9.4-5
|
|
|
|
- Add explicit dep on pod2man (bz #914562)
|
|
|
|
|
2013-02-15 02:50:01 +00:00
|
|
|
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.4-4.1
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-12-17 19:55:20 +00:00
|
|
|
* Mon Dec 17 2012 Cole Robinson <crobinso@redhat.com> - 0.9.4-4
|
|
|
|
- Use correct KVM package names on first run (bz #873878)
|
|
|
|
- network: fix parsing ip blocks with prefix= (bz #872814)
|
|
|
|
- Don't recommend all of libvirt, just the kvm bits (bz #872246)
|
|
|
|
|
2012-10-31 01:44:40 +00:00
|
|
|
* Tue Oct 30 2012 Cole Robinson <crobinso@redhat.com> - 0.9.4-3
|
|
|
|
- Fix first run packagekit interaction (bz #870851)
|
|
|
|
- Fix another backtrace if guest is pmsuspended (bz #871237)
|
|
|
|
|
2012-10-24 12:41:13 +00:00
|
|
|
* Wed Oct 24 2012 Cole Robinson <crobinso@redhat.com> - 0.9.4-2
|
|
|
|
- Fix KVM package install on app first run
|
|
|
|
- Fix listing domain with 'suspended' state (bz #850954)
|
|
|
|
- Fix 'browse local' behavior when choosing directory (bz #855335)
|
|
|
|
- Fix libgnome-keyring dep (bz #811921)
|
|
|
|
|
2012-07-29 20:51:00 +00:00
|
|
|
* Sun Jul 29 2012 Cole Robinson <crobinso@redhat.com> - 0.9.4-1
|
|
|
|
- Rebased to version 0.9.4
|
|
|
|
- Fix VNC keygrab issues (bz 840240)
|
|
|
|
|
2012-07-22 02:48:52 +00:00
|
|
|
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.3-1.1
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-07-09 21:31:30 +00:00
|
|
|
* Mon Jul 09 2012 Cole Robinson <crobinso@redhat.com> - 0.9.3-1
|
|
|
|
- Rebased to version 0.9.3
|
|
|
|
- Convert to gtkbuilder: UI can now be editted with modern glade tool
|
|
|
|
- virt-manager no longer runs on RHEL5, but can manage a remote RHEL5
|
|
|
|
host
|
|
|
|
- Option to configure spapr net and disk devices for pseries (Li Zhang)
|
|
|
|
- Offer to install openssh-askpass if we need it (bz 754484)
|
|
|
|
- Don't leave defunct SSH processes around (bz 757892)
|
|
|
|
- Offer to start libvirtd after install (bz 791152)
|
|
|
|
- Fix crash when deleting storage volumes (bz 805950)
|
|
|
|
- Show serial device PTY path again (bz 811760)
|
|
|
|
- Fix possible crash when rebooting fails (bz 813119)
|
|
|
|
- Offer to discard state if restore fails (bz 837236)
|
|
|
|
|
2012-06-06 21:37:32 +00:00
|
|
|
* Wed Jun 06 2012 Cole Robinson <crobinso@redhat.com> - 0.9.1-4
|
|
|
|
- Fix connecting to console with specific listen address
|
|
|
|
- Fix regression that dropped spice dependency (bz 819270)
|
|
|
|
|
2012-04-25 13:23:19 +00:00
|
|
|
* Wed Apr 25 2012 Cole Robinson <crobinso@redhat.com> - 0.9.1-3
|
|
|
|
- Actually make spice the default (bz 757874)
|
|
|
|
- Only depend on spice on arch it is available (bz 811030)
|
|
|
|
- Depend on libgnome-keyring (bz 811921)
|
|
|
|
|
2012-02-14 00:07:57 +00:00
|
|
|
* Mon Feb 13 2012 Cole Robinson <crobinso@redhat.com> - 0.9.1-2
|
|
|
|
- Fix error reporting for failed remote connections (bz 787011)
|
|
|
|
- Fix setting window title when VNC mouse is grabbed (bz 788443)
|
|
|
|
- Advertise VDI format in disk details (bz 761300)
|
|
|
|
- Don't let an unavailable host hang the app (bz 766769)
|
|
|
|
- Don't overwrite existing create dialog when reshowing (bz 754152)
|
|
|
|
- Improve tooltip for 'force console shortcuts' (bz 788448)
|
|
|
|
|
2012-02-01 16:18:15 +00:00
|
|
|
* Wed Feb 01 2012 Cole Robinson <crobinso@redhat.com> - 0.9.1-1
|
|
|
|
- Rebased to version 0.9.1
|
|
|
|
- Support for adding usb redirection devices (Marc-André Lureau)
|
|
|
|
- Option to switch usb controller to support usb2.0 (Marc-André Lureau)
|
|
|
|
- Option to specify machine type for non-x86 guests (Li Zhang)
|
|
|
|
- Support for filesystem device type and write policy (Deepak C Shetty)
|
|
|
|
- Many bug fixes!
|
|
|
|
|
2012-01-14 07:57:59 +00:00
|
|
|
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.0-8.1
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-10-28 16:26:13 +00:00
|
|
|
* Fri Oct 28 2011 Cole Robinson <crobinso@redhat.com> - 0.9.0-8
|
|
|
|
- Fix crashes when deleting a VM (bz 749263)
|
|
|
|
|
2011-09-27 18:02:13 +00:00
|
|
|
* Tue Sep 27 2011 Cole Robinson <crobinso@redhat.com> - 0.9.0-7
|
|
|
|
- Fix 'Resize to VM' graphical option (bz 738806)
|
|
|
|
- Fix deleting guest with managed save data
|
|
|
|
- Fix error when adding default storage
|
|
|
|
- Don't flush XML cache on every tick
|
|
|
|
- Use labels for non-editable network info fields (bz 738751)
|
|
|
|
- Properly update icon cache (bz 733836)
|
|
|
|
|
2011-08-02 15:12:56 +00:00
|
|
|
* Tue Aug 02 2011 Cole Robinson <crobinso@redhat.com> - 0.9.0-6
|
|
|
|
- Fix python-newt_syrup dep
|
|
|
|
|
2011-08-01 17:36:22 +00:00
|
|
|
* Mon Aug 01 2011 Cole Robinson <crobinso@redhat.com> - 0.9.0-5
|
|
|
|
- Don't have a hard dep on libguestfs (bz 726364)
|
|
|
|
- Depend on needed python-newt_syrup version
|
|
|
|
|
2011-07-28 14:47:31 +00:00
|
|
|
* Thu Jul 28 2011 Cole Robinson <crobinso@redhat.com> - 0.9.0-4
|
|
|
|
- Fix typo that broke net stats reporting
|
|
|
|
|
2011-07-27 17:13:41 +00:00
|
|
|
* Wed Jul 27 2011 Cole Robinson <crobinso@redhat.com> - 0.9.0-3
|
|
|
|
- Add BuildRequires: GConf2 to fix pre scriplet error
|
|
|
|
|
|
|
|
* Tue Jul 26 2011 Cole Robinson <crobinso@redhat.com> - 0.9.0-2
|
|
|
|
- Fix virtinst dep
|
|
|
|
|
2011-07-27 01:24:26 +00:00
|
|
|
* Tue Jul 26 2011 Cole Robinson <crobinso@redhat.com> - 0.9.0-1.fc17
|
|
|
|
- Rebased to version 0.9.0
|
|
|
|
- Use a hiding toolbar for fullscreen mode
|
|
|
|
- Use libguestfs to show guest packagelist and more (Richard W.M. Jones)
|
|
|
|
- Basic 'New VM' wizard support for LXC guests
|
|
|
|
- Remote serial console access (with latest libvirt)
|
|
|
|
- Remote URL guest installs (with latest libvirt)
|
|
|
|
- Add Hardware: Support <filesystem> devices
|
|
|
|
- Add Hardware: Support <smartcard> devices (Marc-André Lureau)
|
|
|
|
- Enable direct interface selection for qemu/kvm (Gerhard Stenzel)
|
|
|
|
- Allow viewing and changing disk serial number
|
|
|
|
|
2011-04-28 16:28:51 +00:00
|
|
|
* Thu Apr 28 2011 Cole Robinson <crobinso@redhat.com> - 0.8.7-5.fc16
|
|
|
|
- Stop netcf errors from flooding logs (bz 676920)
|
|
|
|
- Bump default mem for new guests to 1GB so F15 installs work (bz
|
|
|
|
700480)
|
|
|
|
|
2011-04-19 14:28:09 +00:00
|
|
|
* Tue Apr 19 2011 Cole Robinson <crobinso@redhat.com> - 0.8.7-4.fc16
|
|
|
|
- Fix spice RPM dependency (bz 697729)
|
|
|
|
|
2011-04-07 12:57:57 +00:00
|
|
|
* Thu Apr 07 2011 Cole Robinson <crobinso@redhat.com> - 0.8.7-3.fc16
|
|
|
|
- Fix broken cs.po which crashed gettext
|
|
|
|
- Fix offline attach fallback if hotplug fails
|
|
|
|
- Offer to attach spicevmc if switching to spice
|
|
|
|
|
2011-03-31 16:07:05 +00:00
|
|
|
* Thu Mar 31 2011 Cole Robinson <crobinso@redhat.com> - 0.8.7-2.fc16
|
|
|
|
- Fix using spice as default graphics type
|
|
|
|
- Fix lockup as non-root (bz 692570)
|
|
|
|
|
2011-03-28 20:10:37 +00:00
|
|
|
* Mon Mar 28 2011 Cole Robinson <crobinso@redhat.com> - 0.8.7-1.fc16
|
|
|
|
- Rebased to version 0.8.7
|
|
|
|
- Allow renaming an offline VM
|
|
|
|
- Spice password support (Marc-André Lureau)
|
|
|
|
- Allow editting NIC <virtualport> settings (Gerhard Stenzel)
|
|
|
|
- Allow enabling/disabling individual CPU features
|
|
|
|
- Allow easily changing graphics type between VNC/SPICE for existing VM
|
|
|
|
- Allow easily changing network source device for existing VM
|
|
|
|
|
2011-02-08 01:37:12 +00:00
|
|
|
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.6-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2011-02-03 01:44:41 +00:00
|
|
|
* Wed Feb 2 2011 Cole Robinson <crobinso@redhat.com> - 0.8.6-1.fc15
|
2011-02-03 01:44:09 +00:00
|
|
|
- Update to 0.8.6
|
|
|
|
- SPICE support (requires spice-gtk) (Marc-André Lureau)
|
|
|
|
- Option to configure CPU model
|
|
|
|
- Option to configure CPU topology
|
|
|
|
- Save and migration cancellation (Wen Congyang)
|
|
|
|
- Save and migration progress reporting
|
|
|
|
- Option to enable bios boot menu
|
|
|
|
- Option to configure direct kernel/initrd boot
|
|
|
|
|
2010-08-25 17:23:11 +00:00
|
|
|
* Wed Aug 25 2010 Cole Robinson <crobinso@redhat.com> - 0.8.5-1.fc15
|
|
|
|
- Update to 0.8.5
|
|
|
|
- Improved save/restore support
|
|
|
|
- Option to view and change disk cache mode
|
|
|
|
- Configurable VNC keygrab sequence (Michal Novotny)
|
|
|
|
|
2010-08-02 19:30:51 +00:00
|
|
|
* Mon Aug 2 2010 David Malcolm <dmalcolm@redhat.com> - 0.8.4-3.fc15
|
|
|
|
- fix python 2.7 incompatibility (bz 620216)
|
|
|
|
|
2010-05-27 19:53:49 +00:00
|
|
|
* Thu May 27 2010 Cole Robinson <crobinso@redhat.com> - 0.8.4-2.fc14
|
|
|
|
- Only close connection on specific remote errors
|
|
|
|
- Fix weird border in manager UI (bz 583728)
|
|
|
|
- Fix broken icons
|
|
|
|
- Cancel post-install reboot if VM is forced off
|
|
|
|
- Fix traceback if customizing a livecd install (bz 583712)
|
|
|
|
- Add pool refresh button
|
|
|
|
- Properly autodetect VNC keymap (bz 586201)
|
|
|
|
- Fix traceback when reconnecting to remote VNC console (bz 588254)
|
|
|
|
- Fix remote VNC connection with zsh as default shell
|
|
|
|
|
2010-03-25 00:05:29 +00:00
|
|
|
* Wed Mar 24 2010 Cole Robinson <crobinso@redhat.com> - 0.8.4-1.fc14
|
|
|
|
- Update to version 0.8.4
|
|
|
|
- 'Import' install option, to create a VM around an existing OS image
|
|
|
|
- Support multiple boot devices and boot order
|
|
|
|
- Watchdog device support
|
|
|
|
- Enable setting a human readable VM description.
|
|
|
|
- Option to manually specifying a bridge name, if bridge isn't detected
|
|
|
|
|
2010-03-22 15:34:19 +00:00
|
|
|
* Mon Mar 22 2010 Cole Robinson <crobinso@redhat.com> - 0.8.3-2.fc14
|
|
|
|
- Fix using a manual 'default' pool (bz 557020)
|
|
|
|
- Don't force grab focus when app is run (bz 548430)
|
|
|
|
- Check packagekit for KVM and libvirtd (bz 513494)
|
|
|
|
- Fake a reboot implementation if libvirt doesn't support it (bz 532216)
|
|
|
|
- Mark some strings as translatable (bz 572645)
|
|
|
|
|
2010-02-09 04:23:15 +00:00
|
|
|
* Mon Feb 8 2010 Cole Robinson <crobinso@redhat.com> - 0.8.3-1.fc13
|
|
|
|
- Update to 0.8.3 release
|
|
|
|
- Manage network interfaces: start, stop, view, provision bridges, bonds, etc.
|
|
|
|
- Option to 'customize VM before install'.
|
|
|
|
|
2010-01-12 18:34:24 +00:00
|
|
|
* Tue Jan 12 2010 Cole Robinson <crobinso@redhat.com> - 0.8.2-2.fc13
|
|
|
|
- Build with actual upstream tarball (not manually built dist)
|
|
|
|
|
2009-12-14 23:57:23 +00:00
|
|
|
* Mon Dec 14 2009 Cole Robinson <crobinso@redhat.com> - 0.8.2-1.fc13
|
|
|
|
- Update to 0.8.2 release
|
|
|
|
- Fix first virt-manager run on a new install
|
|
|
|
- Enable floppy media eject/connect
|
|
|
|
|
2009-12-09 21:24:10 +00:00
|
|
|
* Wed Dec 09 2009 Cole Robinson <crobinso@redhat.com> - 0.8.1-3.fc13
|
|
|
|
- Select manager row on right click, regressed with 0.8.1
|
|
|
|
|
2009-12-05 22:10:53 +00:00
|
|
|
* Sat Dec 5 2009 Cole Robinson <crobinso@redhat.com> - 0.8.1-2.fc13
|
|
|
|
- Set proper version Requires: for python-virtinst
|
|
|
|
|
2009-12-03 22:45:14 +00:00
|
|
|
* Thu Dec 3 2009 Cole Robinson <crobinso@redhat.com> - 0.8.1-1.fc13
|
|
|
|
- Update to release 0.8.1
|
|
|
|
- VM Migration wizard, exposing various migration options
|
|
|
|
- Enumerate CDROM and bridge devices on remote connections
|
|
|
|
- Support storage pool source enumeration for LVM, NFS, and SCSI
|
|
|
|
|
2009-10-05 17:25:32 +00:00
|
|
|
* Mon Oct 05 2009 Cole Robinson <crobinso@redhat.com> - 0.8.0-8.fc13
|
|
|
|
- Don't allow creating a volume without a name (bz 526111)
|
|
|
|
- Don't allow volume allocation > capacity (bz 526077)
|
|
|
|
- Add tooltips for toolbar buttons (bz 524083)
|
|
|
|
|
2009-10-05 14:19:29 +00:00
|
|
|
* Mon Oct 05 2009 Cole Robinson <crobinso@redhat.com> - 0.8.0-7.fc13
|
|
|
|
- More translations (bz 493795)
|
|
|
|
|
2009-09-29 19:37:26 +00:00
|
|
|
* Tue Sep 29 2009 Cole Robinson <crobinso@redhat.com> - 0.8.0-6.fc13
|
|
|
|
- Fix VCPU hotplug
|
|
|
|
- Remove access to outdated docs (bz 522823, bz 524805)
|
|
|
|
- Update VM state text in manager view (bz 526182)
|
|
|
|
- Update translations (bz 493795)
|
|
|
|
|
2009-09-24 15:47:35 +00:00
|
|
|
* Thu Sep 24 2009 Cole Robinson <crobinso@redhat.com> - 0.8.0-5.fc12
|
|
|
|
- Refresh host disk space in create wizard (bz 502777)
|
|
|
|
- Offer to fix disk permission issues (bz 517379)
|
|
|
|
|
2009-09-17 18:42:27 +00:00
|
|
|
* Thu Sep 17 2009 Cole Robinson <crobinso@redhat.com> - 0.8.0-4.fc12
|
|
|
|
- Don't close libvirt connection for non-fatal errors (bz 522168)
|
|
|
|
- Manager UI tweaks
|
|
|
|
- Generate better errors if disk/net stats polling fails
|
|
|
|
|
2009-09-14 15:05:51 +00:00
|
|
|
* Mon Sep 14 2009 Cole Robinson <crobinso@redhat.com> - 0.8.0-3.fc12
|
|
|
|
- Fix disk XML mangling via connect/eject cdrom (bz 516116)
|
|
|
|
- Fix delete button sensitivity (bz 518536)
|
|
|
|
- Fix populating text box from storage browser in 'New VM' (bz 517263)
|
|
|
|
- Fix a traceback in an 'Add Hardware' error path (bz 517286)
|
|
|
|
|
2009-08-13 15:40:14 +00:00
|
|
|
* Thu Aug 13 2009 Daniel P. Berrange <berrange@redhat.com> - 0.8.0-2.fc12
|
|
|
|
- Remove obsolete dep on policykit agent
|
|
|
|
|
2009-07-29 02:35:39 +00:00
|
|
|
* Tue Jul 28 2009 Cole Robinson <crobinso@redhat.com> - 0.8.0-1.fc12
|
|
|
|
- Update to release 0.8.0
|
|
|
|
- New 'Clone VM' Wizard
|
|
|
|
- Improved UI, including an overhaul of the main 'manager' view
|
|
|
|
- System tray icon for easy VM access (start, stop, view console/details)
|
|
|
|
- Wizard for adding serial, parallel, and video devices to existing VMs.
|
|
|
|
|
2009-07-27 06:55:11 +00:00
|
|
|
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.0-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-05-21 14:56:09 +00:00
|
|
|
* Thu May 21 2009 Mark McLoughlin <markmc@redhat.com> - 0.7.0-5.fc12
|
|
|
|
- Fix 'opertaing' typo in 'New VM' dialog (#495128)
|
|
|
|
- Allow details window to resize again (#491683)
|
|
|
|
- Handle collecting username for vnc authentication (#499589)
|
|
|
|
- Actually handle arch config when creating a VM (#499145)
|
|
|
|
- Log libvirt capabilities at startup to aid debugging (#500337)
|
|
|
|
|
2009-04-14 21:12:30 +00:00
|
|
|
* Tue Apr 14 2009 Cole Robinson <crobinso@redhat.com> - 0.7.0-4.fc11
|
|
|
|
- More translation updates
|
|
|
|
|
2009-04-09 19:19:07 +00:00
|
|
|
* Thu Apr 09 2009 Cole Robinson <crobinso@redhat.com> - 0.7.0-3.fc11
|
|
|
|
- Fix incorrect max vcpu setting in New VM wizard (bz 490466)
|
|
|
|
- Fix some OK/Cancel button ordering issues (bz 490207)
|
|
|
|
- Use openAuth when duplicating a connection when deleting a VM
|
|
|
|
- Updated translations (bz 493795)
|
|
|
|
|
2009-03-23 22:05:58 +00:00
|
|
|
* Mon Mar 23 2009 Cole Robinson <crobinso@redhat.com> - 0.7.0-2.fc11
|
|
|
|
- Back compat fixes for connecting to older xen installations (bz 489885)
|
|
|
|
- Don't show harmless NoneType error when launching new VM details window
|
|
|
|
|
2009-03-10 06:37:24 +00:00
|
|
|
* Tue Mar 10 2009 Cole Robinson <crobinso@redhat.com> - 0.7.0-1.fc11
|
|
|
|
- Update to release 0.7.0
|
|
|
|
- Redesigned 'New Virtual Machine' wizard
|
|
|
|
- Option to remove storage when deleting a virtual machine.
|
|
|
|
- File browser for libvirt storage pools and volumes
|
|
|
|
- Physical device assignment (PCI, USB) for existing virtual machines.
|
|
|
|
|
2009-03-04 17:53:31 +00:00
|
|
|
* Wed Mar 4 2009 Cole Robinson <crobinso@redhat.com> - 0.6.1-4.fc11
|
|
|
|
- Update polish translation (bz 263301)
|
|
|
|
- Fix sending ctrl-alt-del to guest
|
|
|
|
- Fix cpu + mem stats options to remember preference.
|
|
|
|
|
2009-02-26 00:32:18 +00:00
|
|
|
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.1-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2009-02-09 19:33:41 +00:00
|
|
|
* Mon Feb 9 2009 Cole Robinson <crobinso@redhat.com> - 0.6.1-2
|
|
|
|
- Kill off consolehelper (PolicyKit is sufficient)
|
|
|
|
|
2009-01-27 01:28:19 +00:00
|
|
|
* Mon Jan 26 2009 Cole Robinson <crobinso@redhat.com> - 0.6.1-1
|
|
|
|
- Update to 0.6.1 release
|
|
|
|
- Disk and Network VM stats reporting
|
|
|
|
- VM Migration support
|
|
|
|
- Support adding sound devices to existing VMs
|
|
|
|
- Allow specifying device model when adding a network device to an existing VM
|
|
|
|
|
2009-01-20 18:10:50 +00:00
|
|
|
* Tue Jan 20 2009 Mark McLoughlin <markmc@redhat.com> - 0.6.0-7
|
|
|
|
- Add patch to ignore fix crash on force-poweroff with serial console (#470548)
|
|
|
|
|
2008-12-04 18:21:48 +00:00
|
|
|
* Thu Dec 04 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.6.0-6
|
|
|
|
- Rebuild for Python 2.6
|
|
|
|
|
2008-12-01 17:07:17 +00:00
|
|
|
* Mon Dec 1 2008 Cole Robinson <crobinso@redhat.com> - 0.6.0-5.fc10
|
|
|
|
- Fix spec for building on F9
|
|
|
|
- Update 'New VM' virt descriptions to be less black and white (bz 470563)
|
|
|
|
|
2008-12-01 05:03:54 +00:00
|
|
|
* Sun Nov 30 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.6.0-4
|
|
|
|
- Rebuild for Python 2.6
|
|
|
|
|
2008-10-27 19:39:03 +00:00
|
|
|
* Mon Oct 27 2008 Cole Robinson <crobinso@redhat.com> - 0.6.0-3.fc10
|
|
|
|
- Add dbus-x11 to Requires (bug 467886)
|
|
|
|
- Fedora translation updates (bug 467808)
|
|
|
|
- Don't add multiple sound devices if install fails
|
|
|
|
- Only popup volume path copy option on right click
|
|
|
|
- Fix a variable typo
|
|
|
|
|
2008-10-14 20:52:33 +00:00
|
|
|
* Tue Oct 14 2008 Cole Robinson <crobinso@redhat.com> - 0.6.0-2.fc10
|
|
|
|
- Add gnome-python2-gnome requirement.
|
|
|
|
- Allow seeing connection details if disconnected.
|
|
|
|
- Updated catalan translation.
|
|
|
|
- Update dutch translation.
|
|
|
|
- Update german translation. (bug 438136)
|
|
|
|
- Fix showing domain console when connecting to hypervisor.
|
|
|
|
- Update POTFILES to reflect reality (bug 466835)
|
|
|
|
|
2008-09-10 23:06:21 +00:00
|
|
|
* Wed Sep 10 2008 Cole Robinson <crobinso@redhat.com> - 0.6.0-1.fc10
|
|
|
|
- Update to 0.6.0 release
|
|
|
|
- Add libvirt storage management support
|
|
|
|
- Basic support for remote guest installation
|
|
|
|
- Merge VM console and details windows
|
|
|
|
- Poll avahi for libvirtd advertisement
|
|
|
|
- Hypervisor autoconnect option
|
|
|
|
- Add sound emulation when creating new guests
|
|
|
|
|
2008-04-03 21:41:10 +00:00
|
|
|
* Thu Apr 3 2008 Daniel P. Berrange <berrange@redhat.com> - 0.5.4-3.fc9
|
|
|
|
- Updated sr, de, fi, it, pl translations
|
|
|
|
|
2008-03-13 18:02:05 +00:00
|
|
|
* Thu Mar 13 2008 Daniel P. Berrange <berrange@redhat.com> - 0.5.4-2.fc9
|
|
|
|
- Don't run policykit checks when root (rhbz #436994)
|
|
|
|
|
2008-03-11 00:33:40 +00:00
|
|
|
* Mon Mar 10 2008 Daniel P. Berrange <berrange@redhat.com> - 0.5.4-1.fc9
|
|
|
|
- Update to 0.5.4 release
|
|
|
|
|
2008-02-18 21:13:13 +00:00
|
|
|
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.5.3-2
|
|
|
|
- Autorebuild for GCC 4.3
|
|
|
|
|
2008-01-11 01:46:25 +00:00
|
|
|
* Thu Jan 10 2008 Daniel P. Berrange <berrange@redhat.com> - 0.5.3-1.fc9
|
|
|
|
- Update to 0.5.3 release
|
|
|
|
|
2007-10-15 21:08:18 +00:00
|
|
|
* Mon Oct 15 2007 Daniel P. Berrange <berrange@redhat.com> - 0.5.2-2.fc8
|
|
|
|
- Change TLS x509 credential name to sync with libvirt
|
|
|
|
|
2007-10-05 02:08:20 +00:00
|
|
|
* Thu Oct 4 2007 Daniel P. Berrange <berrange@redhat.com> - 0.5.2-1.fc8
|
|
|
|
- Update to 0.5.2 release
|
|
|
|
- No scrollbars for high res guest in low res host (rhbz 273181)
|
|
|
|
- Unable to remove network device (rhbz 242900)
|
|
|
|
- Fixed broken menu items (rhbz 307551)
|
|
|
|
- Require libvirt 0.3.3 to get CDROM change capability for Xen
|
|
|
|
|
2007-09-25 18:22:02 +00:00
|
|
|
* Tue Sep 25 2007 Daniel P. Berrange <berrange@redhat.com> - 0.5.1-1.fc8
|
|
|
|
- Updated to 0.5.1 release
|
|
|
|
- Open connections in background
|
|
|
|
- Make VNC connection retries more robust
|
|
|
|
- Allow changing of CDROM media on the fly
|
|
|
|
- Add PXE boot installation of HVM guests
|
|
|
|
- Allow tunnelling VNC over SSH
|
|
|
|
|
2007-08-29 21:31:59 +00:00
|
|
|
* Wed Aug 29 2007 Daniel P. Berrange <berrange@redhat.com> - 0.5.0-1.fc8
|
|
|
|
- Updated to 0.5.0 release
|
|
|
|
- Support for managing remote hosts
|
|
|
|
- Switch to use GTK-VNC for the guest console
|
|
|
|
|
2007-08-24 16:12:44 +00:00
|
|
|
* Fri Aug 24 2007 Daniel P. Berrange <berrange@redhat.com> - 0.4.0-3.fc8
|
|
|
|
- Remove ExcludeArch since libvirt is now available
|
|
|
|
|
2007-05-10 18:54:22 +00:00
|
|
|
* Wed May 9 2007 Daniel P. Berrange <berrange@redhat.com> - 0.4.0-2.fc7
|
|
|
|
- Refresh po file translations (bz 238369)
|
|
|
|
- Fixed removal of disk/network devices
|
|
|
|
- Fixed toolbar menu option state
|
|
|
|
- Fixed file dialogs & default widget states
|
|
|
|
|
2007-04-16 13:51:34 +00:00
|
|
|
* Mon Apr 16 2007 Daniel P. Berrange <berrange@redhat.com> - 0.4.0-1.fc7
|
|
|
|
- Support for managing virtual networks
|
|
|
|
- Ability to attach guest to virtual networks
|
|
|
|
- Automatically set VNC keymap based on local keymap
|
|
|
|
- Support for disk & network device addition/removal
|
|
|
|
|
|
|
|
* Wed Mar 28 2007 Daniel P. Berrange <berrange@redhat.com> - 0.3.2-3.fc7
|
|
|
|
- Fix HVM check to allow KVM guests to be created (bz 233644)
|
|
|
|
- Fix default file size suggestion
|
|
|
|
|
2007-03-27 19:21:42 +00:00
|
|
|
* Tue Mar 27 2007 Daniel P. Berrange <berrange@redhat.com> - 0.3.2-2.fc7
|
|
|
|
- Ensure we own all directories we create (bz 233816)
|
|
|
|
|
2007-03-20 17:22:45 +00:00
|
|
|
* Tue Mar 20 2007 Daniel P. Berrange <berrange@redhat.com> - 0.3.2-1.fc7
|
|
|
|
- Added online help to all windows
|
|
|
|
- Bug fixes to virtual console popup, key grab & accelerator override
|
|
|
|
|
2007-03-13 16:34:46 +00:00
|
|
|
* Tue Mar 13 2007 Daniel P. Berrange <berrange@redhat.com> - 0.3.1-4.fc7
|
|
|
|
- Fixed thread locking to avoid deadlocks when a11y is enabled
|
|
|
|
|
2007-03-02 20:09:33 +00:00
|
|
|
* Fri Mar 2 2007 Daniel P. Berrange <berrange@redhat.com> - 0.3.1-3.fc7
|
|
|
|
- Fixed keyboard ungrab in VNC widget
|
|
|
|
|
2007-02-20 22:04:34 +00:00
|
|
|
* Tue Feb 20 2007 Daniel P. Berrange <berrange@redhat.com> - 0.3.1-2.fc7
|
|
|
|
- Only check for HVM on Xen hypervisor
|
|
|
|
|
2007-02-20 21:14:18 +00:00
|
|
|
* Tue Feb 20 2007 Daniel P. Berrange <berrange@redhat.com> - 0.3.1-1.fc7
|
|
|
|
- Added support for managing QEMU domains
|
|
|
|
- Automatically grab mouse pointer to workaround dual-cursor crazyness
|
|
|
|
|
2007-01-31 21:30:42 +00:00
|
|
|
* Wed Jan 31 2007 Daniel P. Berrange <berrange@redhat.com> - 0.3.0-2.fc7
|
|
|
|
- Added dep on desktop-file-utils for post/postun scripts
|
|
|
|
|
|
|
|
* Mon Jan 22 2007 Daniel P. Berrange <berrange@redhat.com> - 0.3.0-1.fc7
|
2007-01-23 01:06:59 +00:00
|
|
|
- Added support for managing inactive domains
|
|
|
|
- Require virt-inst >= 0.100.0 and libvirt >= 0.1.11 for ianctive
|
|
|
|
domain management capabilities
|
|
|
|
- Add progress bars during VM creation stage
|
|
|
|
- Improved reliability of VNC console
|
|
|
|
- Updated translations again
|
|
|
|
- Added destroy option to menu bar to forceably kill a guest
|
|
|
|
- Visually differentiate allocated memory, from actual used memory on host
|
|
|
|
- Validate file magic when restoring a guest from a savd file
|
|
|
|
- Performance work on domain listing
|
|
|
|
- Allow creation of non-sparse files
|
|
|
|
- Fix backspace key in serial console
|
|
|
|
|
2006-12-19 21:16:55 +00:00
|
|
|
* Tue Dec 19 2006 Daniel P. Berrange <berrange@redhat.com> - 0.2.6-3.fc7
|
|
|
|
- Imported latest translations from Fedora i18n repository (bz 203783)
|
|
|
|
- Use 127.0.0.1 address for connecting to VNC console instead of
|
|
|
|
localhost to avoid some issue with messed up /etc/hosts.
|
|
|
|
- Add selector for sparse or non-sparse file, defaulting to non-sparse.
|
|
|
|
Add appropriate warnings and progress-bar text. (bz 218996)
|
|
|
|
- Disable memory ballooning & CPU hotplug for HVM guests (bz 214432)
|
|
|
|
- Updated memory-setting UI to include a hard upper limit for physical
|
|
|
|
host RAM
|
|
|
|
- Added documentation on the page warning that setting virtual host RAM
|
|
|
|
too high can exhaust the memory of the machine
|
|
|
|
- Handle errors when hostname resolution fails to avoid app exiting (bz 216975)
|
|
|
|
|
|
|
|
* Thu Dec 7 2006 Jeremy Katz <katzj@redhat.com> - 0.2.6-2.fc7
|
2006-12-07 21:33:00 +00:00
|
|
|
- rebuild for python 2.5
|
|
|
|
|
2006-11-10 00:08:54 +00:00
|
|
|
* Thu Nov 9 2006 Daniel P. Berrange <berrange@redhat.com> - 0.2.6-1.fc7
|
|
|
|
- Imported translations from Fedora i18n repository
|
|
|
|
- Make (most) scrollbar policies automatic
|
|
|
|
- Set busy cursor while creating new VMs
|
|
|
|
- Preference for controlling keygrab policy
|
|
|
|
- Preference for when to automatically open console (bz 211385)
|
|
|
|
- Re-try VNC connection attempt periodically in case VNC daemon
|
|
|
|
hasn't finished starting up
|
|
|
|
- Added activation of URLs for about dialog (bz 210782)
|
|
|
|
- Improved error reporting when connecting to HV (bz 211229)
|
|
|
|
- Add command line args to open specific windows
|
|
|
|
- Don't skip para/full virt wizard step - instead gray out full
|
|
|
|
virt option & tell user why
|
|
|
|
- Change 'physical' to 'logical' when refering to host CPUs
|
|
|
|
- Include hostname in titlebar
|
|
|
|
- Disable wizard sensitivity while creating VM
|
|
|
|
|
2006-10-24 18:28:05 +00:00
|
|
|
* Thu Oct 19 2006 Daniel P. Berrange <berrange@redhat.com> - 0.2.5-1.fc7
|
|
|
|
- Switch to use python-virtinst instead of python-xeninst due to
|
|
|
|
renaming of original package
|
|
|
|
- Disable keyboard accelerators when grabbing mouse to avoid things like
|
|
|
|
Ctrl-W closing the local window, instead of remote window bz 210364
|
|
|
|
- Fix host memory reporting bz 211281
|
|
|
|
- Remove duplicate application menu entry bz 211230
|
|
|
|
- Fix duplicated mnemonics (bz 208408)
|
|
|
|
- Use blktap backed disks if available
|
|
|
|
- Use a drop down list to remember past URLs (bz 209479)
|
|
|
|
- Remove unused help button from preferences dialog (bz 209251)
|
|
|
|
- Fix exception when no VNC graphics is defined
|
|
|
|
- Force immediate refresh of VMs after creating a new one
|
|
|
|
- Improve error reporting if run on a kernel without Xen (bz 209122)
|
|
|
|
- More fixes to avoid stuck modifier keys on focus-out (bz 207949)
|
|
|
|
|
2006-09-29 19:57:58 +00:00
|
|
|
* Fri Sep 29 2006 Daniel P. Berrange <berrange@redhat.com> 0.2.3-2.fc6
|
|
|
|
- Fix segv in sparkline code when no data points are defined (bz 208185)
|
|
|
|
- Clamp CPU utilization between 0 & 100% just in case (bz 208185)
|
|
|
|
|
|
|
|
* Tue Sep 26 2006 Daniel Berrange <berrange@redhat.com> - 0.2.3-1.fc6
|
2006-09-26 22:00:29 +00:00
|
|
|
- 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)
|
|
|
|
|
2006-09-29 19:57:58 +00:00
|
|
|
* Fri Sep 15 2006 Daniel Berrange <berrange@redhat.com> - 0.2.2-1.fc6
|
2006-09-15 22:24:38 +00:00
|
|
|
- Fix event handling in create VM wizard (bz 206660 & 206186)
|
|
|
|
- Fix close button in about dialog (bz 205943)
|
|
|
|
- Refresh .pot files
|
|
|
|
- Turn on VNC scrollbars fulltime to avoid GTK window sizing issue
|
|
|
|
which consistently resize too small.
|
|
|
|
|
2006-09-29 19:57:58 +00:00
|
|
|
* Mon Sep 11 2006 Daniel Berrange <berrange@redhat.com> - 0.2.1-3.fc6
|
2006-09-15 21:12:07 +00:00
|
|
|
- Added requires on pygtk2-libglade & librsvg2 (bz 205941 & 205942)
|
|
|
|
- Re-arrange to use console-helper to launch app
|
|
|
|
- Added 'dist' component to release number
|
|
|
|
|
|
|
|
* Wed Sep 6 2006 Jeremy Katz <katzj@redhat.com> - 0.2.1-2
|
2006-09-06 13:35:16 +00:00
|
|
|
- don't ghost pyo files (#205448)
|
|
|
|
|
2006-09-04 19:52:14 +00:00
|
|
|
* Mon Sep 4 2006 Daniel Berrange <berrange@redhat.com> - 0.2.1-1
|
|
|
|
- Updated to 0.2.1 tar.gz
|
|
|
|
- Added rules to install/uninstall gconf schemas in preun,post,pre
|
|
|
|
scriptlets
|
|
|
|
- Updated URL for source to reflect new upstream download URL
|
|
|
|
|
2006-08-24 19:55:45 +00:00
|
|
|
* Thu Aug 24 2006 Jeremy Katz <katzj@redhat.com> - 0.2.0-3
|
|
|
|
- BR gettext
|
|
|
|
|
2006-08-24 19:47:21 +00:00
|
|
|
* Thu Aug 24 2006 Jeremy Katz <katzj@redhat.com> - 0.2.0-2
|
|
|
|
- only build on arches with virt
|
|
|
|
|
2006-08-24 19:36:34 +00:00
|
|
|
* Tue Aug 22 2006 Daniel Berrange <berrange@redhat.com> - 0.2.0-1
|
|
|
|
- Added wizard for creating virtual machines
|
|
|
|
- Added embedded serial console
|
|
|
|
- Added ability to take screenshots
|
|
|
|
|
2006-07-27 15:51:03 +00:00
|
|
|
* Mon Jul 24 2006 Daniel Berrange <berrange@redhat.com> - 0.1.5-2
|
|
|
|
- Prefix *.pyo files with 'ghost' macro
|
|
|
|
- Use fully qualified URL in Source tag
|
|
|
|
|
|
|
|
* Thu Jul 20 2006 Daniel Berrange <berrange@redhat.com> - 0.1.5-1
|
|
|
|
- Update to new 0.1.5 release snapshot
|
|
|
|
|
|
|
|
* Thu Jul 20 2006 Daniel Berrange <berrange@redhat.com> - 0.1.4-1
|
|
|
|
- Update to new 0.1.4 release snapshot
|
|
|
|
|
|
|
|
* Mon Jul 17 2006 Daniel Berrange <berrange@redhat.com> - 0.1.3-1
|
|
|
|
- Fix License tag
|
|
|
|
- Updated for new release
|
|
|
|
|
|
|
|
* Wed Jun 28 2006 Daniel Berrange <berrange@redhat.com> - 0.1.2-3
|
|
|
|
- Added missing copyright headers on all .py files
|
|
|
|
|
|
|
|
* Wed Jun 28 2006 Daniel Berrange <berrange@redhat.com> - 0.1.2-2
|
|
|
|
- Added python-devel to BuildRequires
|
|
|
|
|
|
|
|
* Wed Jun 28 2006 Daniel Berrange <berrange@redhat.com> - 0.1.2-1
|
|
|
|
- Change URL to public location
|
|
|
|
|
|
|
|
* Fri Jun 16 2006 Daniel Berrange <berrange@redhat.com> - 0.1.0-1
|
|
|
|
- Added initial support for using VNC console
|
|
|
|
|
|
|
|
* Thu Apr 20 2006 Daniel Berrange <berrange@redhat.com> - 0.0.2-1
|
|
|
|
- Added DBus remote control service
|
|
|
|
|
|
|
|
* Wed Mar 29 2006 Daniel Berrange <berrange@redhat.com> - 0.0.1-1
|
|
|
|
- Initial RPM build
|