Blame SPECS/virt-manager.spec

610fa1
# -*- rpm-spec -*-
610fa1
610fa1
%global with_guestfs               0
610fa1
%global default_hvs                "qemu,xen,lxc"
610fa1
610fa1
610fa1
# End local config
610fa1
610fa1
Name: virt-manager
610fa1
Version: 3.2.0
610fa1
Release: 14%{?dist}%{?extra_release}
610fa1
%global verrel %{version}-%{release}
610fa1
610fa1
Summary: Desktop tool for managing virtual machines via libvirt
610fa1
License: GPLv2+
610fa1
BuildArch: noarch
610fa1
URL: https://virt-manager.org/
610fa1
Source0: https://virt-manager.org/download/sources/%{name}/%{name}-%{version}.tar.gz
610fa1
610fa1
# Fix 'domain not found' race (bz #1901081)
610fa1
Patch0001: 0001-virtinst-Fix-TOCTOU-in-domain-enumeration.patch
610fa1
Patch2: virt-manager-installer-Prefer-xorrisofs-over-genisoimage-mkisofs.patch
610fa1
Patch3: virt-manager-urlfetcher-Factor-out-ISOReader-class.patch
610fa1
Patch4: virt-manager-urlfetcher-Add-xorriso-ISOReader-implementation.patch
610fa1
Patch5: virt-manager-urlfetcher-Delete-the-isoinfo-ISOReader.patch
610fa1
Patch6: virt-manager-urlfetcher-Silence-xorisso-stderr-output.patch
610fa1
Patch7: virt-manager-virt-install-add-mediated-device.patch
610fa1
Patch8: virt-manager-virt-xml-add-support-for-mediated-devices.patch
610fa1
Patch9: virt-manager-hostdev-use-method-get_mdev_uuid.patch
610fa1
Patch10: virt-manager-tests-verify-MDEV-support.patch
610fa1
Patch11: virt-manager-virt-manager-enable-MDEV-support.patch
610fa1
Patch12: virt-manager-cli-introduce-resource-fibrechannel.appid-option.patch
610fa1
Patch13: virt-manager-Handle-new-nodedev-name-for-mediated-devices.patch
610fa1
Patch14: virt-manager-cli-add-ioapic.driver-to-features.patch
610fa1
Patch15: virt-manager-cli-filesystem-add-binary.sandbox.mode-and-source.socket.patch
610fa1
Patch16: virt-manager-nodedev-Improve-error-with-unknown-address-strings.patch
610fa1
Patch17: virt-manager-man-fix-default-value-for-filesystem-accessmode-option.patch
610fa1
610fa1
610fa1
Requires: virt-manager-common = %{verrel}
610fa1
Requires: python3-gobject
610fa1
Requires: gtk3
610fa1
Requires: libvirt-glib >= 0.0.9
610fa1
Requires: gtk-vnc2
610fa1
610fa1
# We can work with gtksourceview 3 or gtksourceview4, pick the latest one
610fa1
Requires: gtksourceview4
610fa1
610fa1
# virt-manager is one of those apps that people will often install onto
610fa1
# a headless machine for use over SSH. This means the virt-manager dep
610fa1
# chain needs to provide everything we need to get a usable app experience.
610fa1
# Unfortunately nothing in our chain has an explicit dep on some kind
610fa1
# of usable gsettings backend, so we explicitly depend on dconf so that
610fa1
# user settings actually persist across app runs.
610fa1
Requires: dconf
610fa1
610fa1
# The vte291 package is actually the latest vte with API version 2.91, while
610fa1
# the vte3 package is effectively a compat package with API version 2.90.
610fa1
# virt-manager works fine with either, so pull the latest bits so there's
610fa1
# no ambiguity.
610fa1
Requires: vte291
610fa1
610fa1
# Weak dependencies for the common virt-manager usecase
610fa1
Recommends: (libvirt-daemon-kvm or libvirt-daemon-qemu)
610fa1
Recommends: libvirt-daemon-config-network
610fa1
610fa1
# Optional inspection of guests
610fa1
Suggests: python3-libguestfs
610fa1
610fa1
BuildRequires: git
610fa1
BuildRequires: gettext
610fa1
BuildRequires: python3-devel
610fa1
BuildRequires: python3-docutils
610fa1
610fa1
610fa1
%description
610fa1
Virtual Machine Manager provides a graphical tool for administering virtual
610fa1
machines for KVM, Xen, and LXC. Start, stop, add or remove virtual devices,
610fa1
connect to a graphical or serial console, and see resource usage statistics
610fa1
for existing VMs on local or remote machines. Uses libvirt as the backend
610fa1
management API.
610fa1
610fa1
610fa1
%package common
610fa1
Summary: Common files used by the different Virtual Machine Manager interfaces
610fa1
610fa1
Requires: python3-argcomplete
610fa1
Requires: python3-libvirt
610fa1
Requires: python3-libxml2
610fa1
Requires: python3-requests
610fa1
Requires: libosinfo >= 0.2.10
610fa1
# Required for gobject-introspection infrastructure
610fa1
Requires: python3-gobject-base
610fa1
# Required for pulling files from iso media
610fa1
Requires: xorriso
610fa1
610fa1
%description common
610fa1
Common files used by the different virt-manager interfaces, as well as
610fa1
virt-install related tools.
610fa1
610fa1
610fa1
%package -n virt-install
610fa1
Summary: Utilities for installing virtual machines
610fa1
610fa1
Requires: virt-manager-common = %{verrel}
610fa1
# For 'virsh console'
610fa1
Requires: libvirt-client
610fa1
610fa1
Provides: virt-install
610fa1
Provides: virt-clone
610fa1
Provides: virt-xml
610fa1
610fa1
%description -n virt-install
610fa1
Package includes several command line utilities, including virt-install
610fa1
(build and install new VMs) and virt-clone (clone an existing virtual
610fa1
machine).
610fa1
610fa1
610fa1
%prep
610fa1
%autosetup -S git_am -N
610fa1
610fa1
git config gc.auto 0
610fa1
610fa1
%autopatch
610fa1
610fa1
610fa1
610fa1
%build
610fa1
%if %{default_hvs}
610fa1
%global _default_hvs --default-hvs %{default_hvs}
610fa1
%endif
610fa1
610fa1
./setup.py configure \
610fa1
    %{?_default_hvs} \
610fa1
    --default-graphics=vnc
610fa1
610fa1
610fa1
%install
610fa1
./setup.py \
610fa1
    --no-update-icon-cache --no-compile-schemas \
610fa1
    install -O1 --root=%{buildroot}
610fa1
%find_lang %{name}
610fa1
610fa1
%if 0%{?py_byte_compile:1}
610fa1
# https://docs.fedoraproject.org/en-US/packaging-guidelines/Python_Appendix/#manual-bytecompilation
610fa1
%py_byte_compile %{python3} %{buildroot}%{_datadir}/virt-manager/
610fa1
%endif
610fa1
610fa1
# Replace '#!/usr/bin/env python3' with '#!/usr/bin/python3'
610fa1
# The format is ideal for upstream, but not a distro. See:
610fa1
# https://fedoraproject.org/wiki/Features/SystemPythonExecutablesUseSystemPython
610fa1
for f in $(find %{buildroot} -type f -executable -print); do
610fa1
    sed -i "1 s|^#!/usr/bin/env python3|#!%{__python3}|" $f || :
610fa1
done
610fa1
610fa1
610fa1
%files
610fa1
%doc README.md COPYING NEWS.md
610fa1
%{_bindir}/%{name}
610fa1
610fa1
%{_mandir}/man1/%{name}.1*
610fa1
610fa1
%{_datadir}/%{name}/ui/*.ui
610fa1
%{_datadir}/%{name}/virtManager
610fa1
610fa1
%{_datadir}/%{name}/icons
610fa1
%{_datadir}/icons/hicolor/*/apps/*
610fa1
610fa1
%{_datadir}/applications/%{name}.desktop
610fa1
%{_datadir}/glib-2.0/schemas/org.virt-manager.virt-manager.gschema.xml
610fa1
%{_datadir}/metainfo/%{name}.appdata.xml
610fa1
610fa1
610fa1
%files common -f %{name}.lang
610fa1
%dir %{_datadir}/%{name}
610fa1
610fa1
%{_datadir}/%{name}/virtinst
610fa1
610fa1
610fa1
%files -n virt-install
610fa1
%{_mandir}/man1/virt-install.1*
610fa1
%{_mandir}/man1/virt-clone.1*
610fa1
%{_mandir}/man1/virt-xml.1*
610fa1
610fa1
%{_datadir}/bash-completion/completions/virt-install
610fa1
%{_datadir}/bash-completion/completions/virt-clone
610fa1
%{_datadir}/bash-completion/completions/virt-xml
610fa1
610fa1
%{_bindir}/virt-install
610fa1
%{_bindir}/virt-clone
610fa1
%{_bindir}/virt-xml
610fa1
610fa1
610fa1
%changelog
610fa1
* Wed Feb  9 2022 Jonathon Jongsma <jjongsma@redhat.com> - 3.2.0-14
610fa1
- man: fix default value for filesystem accessmode option (rhbz#2045932)
610fa1
610fa1
* Mon Feb  7 2022 Jonathon Jongsma <jjongsma@redhat.com> - 3.2.0-13
610fa1
- cli: --filesystem: add binary.sandbox.mode and source.socket (rhbz#2045932)
610fa1
- nodedev: Improve error with unknown address strings (rhbz#2017840)
610fa1
610fa1
* Thu Jan 20 2022 Jonathon Jongsma <jjongsma@redhat.com> - 3.2.0-12
610fa1
- cli: add 'ioapic.driver' to --features (rhbz#2039127)
610fa1
610fa1
* Fri Nov 19 2021 Jonathon Jongsma <jjongsma@redhat.com> - 3.2.0-11
610fa1
- Handle new nodedev name for mediated devices (rhbz#2023650)
610fa1
610fa1
* Thu Nov 11 2021 Jonathon Jongsma <jjongsma@redhat.com> - 3.2.0-10
610fa1
- cli: introduce --resource fibrechannel.appid option (rhbz#2011328)
610fa1
610fa1
* Thu Sep  9 2021 Jonathon Jongsma <jjongsma@redhat.com> - 3.2.0-9
610fa1
- virt-install: add mediated device (rhbz#1995131)
610fa1
- virt-xml: add support for mediated devices (rhbz#1995131)
610fa1
- hostdev: use method get_mdev_uuid() (rhbz#1995131)
610fa1
- tests: verify MDEV support (rhbz#1995131)
610fa1
- virt-manager: enable MDEV support (rhbz#1995131)
610fa1
610fa1
* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 3.2.0-8
610fa1
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
610fa1
  Related: rhbz#1991688
610fa1
610fa1
* Fri Jul 30 2021 Jonathon Jongsma <jjongsma@redhat.com> - 3.2.0-7
610fa1
- urlfetcher: Silence xorisso stderr output (rhbz#1973236)
610fa1
610fa1
* Fri Jul 23 2021 Jonathon Jongsma <jjongsma@redhat.com> - 3.2.0-6
610fa1
- installer: Prefer xorrisofs over genisoimage/mkisofs (rhbz#1973236)
610fa1
- urlfetcher: Factor out ISOReader class (rhbz#1973236)
610fa1
- urlfetcher: Add xorriso ISOReader implementation (rhbz#1973236)
610fa1
- urlfetcher: Delete the 'isoinfo' ISOReader (rhbz#1973236)
610fa1
- Add gating.yaml for RHEL-9 (rhbz#1984222)
610fa1
610fa1
* Wed Jun 09 2021 Jonathon Jongsma <jjongsma@redhat.com> - 3.2.0-5
610fa1
- Disable spice options in virt-manager. Resolves: rhbz#1946939
610fa1
610fa1
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 3.2.0-4
610fa1
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
610fa1
610fa1
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.0-3
610fa1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
610fa1
610fa1
* Mon Jan 11 2021 Cole Robinson <crobinso@redhat.com> - 3.2.0-2
610fa1
- Fix 'domain not found' race (bz #1901081)
610fa1
610fa1
* Sat Nov 14 2020 Cole Robinson <crobinso@redhat.com> - 3.2.0-1
610fa1
- Update to version 3.2.0
610fa1
- Slim down filesystem device editor UI
610fa1
- Fix TOCTTOU virt-install bugs (Martin Pitt)
610fa1
- Several other bug fixes
610fa1
610fa1
* Wed Sep 30 2020 Cole Robinson <crobinso@redhat.com> - 3.1.0-1
610fa1
- Update to version 3.1.0
610fa1
610fa1
* Tue Sep 15 2020 Cole Robinson <crobinso@redhat.com> - 3.0.0-1
610fa1
- Update to version 3.0.0
610fa1
610fa1
* Mon Aug 31 2020 Cole Robinson <aintdiscole@gmail.com> - 2.2.1-6
610fa1
- spec: Switch to latest Fedora bytecompile macros
610fa1
610fa1
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.1-5
610fa1
- Second attempt - Rebuilt for
610fa1
  https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
610fa1
610fa1
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.1-4
610fa1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
610fa1
610fa1
* Fri Jan 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.1-3
610fa1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
610fa1
610fa1
* Sat Jul 27 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.1-2
610fa1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
610fa1
610fa1
* Wed Jul 03 2019 Cole Robinson <crobinso@redhat.com> - 2.2.1-1
610fa1
- Rebased to version 2.2.1
610fa1
- CVE-2019-10183: Replace --unattended user-password and admin-password with
610fa1
  user-password-file and admin-password-file (Fabiano Fidêncio)
610fa1
- Consistent --memballoon default across non-x86 (Andrea Bolognani)
610fa1
- virt-install: add --numatune memnode.* (Athina Plaskasoviti)
610fa1
- Drop hard dep on gtksourceview4, gtksourceview3 is fine as well
610fa1
610fa1
* Tue Jun 18 2019 Cole Robinson <crobinso@redhat.com> - 2.2.0-2
610fa1
- Add missing dep on gtksourceview
610fa1
610fa1
* Mon Jun 17 2019 Cole Robinson <crobinso@redhat.com> - 2.2.0-1
610fa1
- Rebased to version 2.2.0
610fa1
- libvirt XML viewing and editing UI for new and existing domain, pools,
610fa1
  volumes, networks
610fa1
- virt-install: libosinfo --unattended support (Fabiano Fidêncio, Cole
610fa1
  Robinson)
610fa1
- Improve CPU model security defaults (Pavel Hrdina)
610fa1
- virt-install: new --install  option. Ex: virt-install --install fedora29
610fa1
- virt-install: new --install kernel=,initrd=
610fa1
- virt-install: --disk, --memory, --name defaults from libosinfo (Fabiano
610fa1
  Fidêncio, Cole Robinson)
610fa1
- virt-install: add device suboption aliases which consistently match
610fa1
  libvirt XML naming
610fa1
- virt-xml: new --start, --no-define options (Marc Hartmayer)
610fa1
- virt-install: Add driver_queues argument to --controller (Vasudeva Kamath)
610fa1
- RISC-V support (Andrea Bolognani)
610fa1
- Device default improvements for non-x86 KVM (Andrea Bolognani)
610fa1
- Redesigned 'New Network' wizard
610fa1
- libguestfs inspection improvements (Pino Toscano)
610fa1
- virt-install: Add support for xenbus controller (Jim Fehlig)
610fa1
- cli: Add --disk wwn=,rawio= (Athina Plaskasoviti)
610fa1
- cli: Add --memballoon autodeflate=,stats.period= (Athina Plaskasoviti)
610fa1
- cli: Add --iothreads (Athina Plaskasoviti)
610fa1
- cli: Add --numatune memory.placement (Athina Plaskasoviti)
610fa1
- cli: Add --launchSecurity option (Erik Skultety)
610fa1
- cli: Fill in --memorybacking options
610fa1
- cli: --smartcard: support database= and certificate[0-9]*=
610fa1
- cli: --sysinfo: Add chasis suboptions
610fa1
- cli: --metadata: add genid= and genid_enable=
610fa1
- cli: --vcpus: add vcpus.vcpu[0-9]* config
610fa1
- cli: fill in all common char source options for --serial, --parellel,
610fa1
  --console, --channel, --smartcard, --rng, --redirdev
610fa1
610fa1
* Wed Apr 03 2019 Cole Robinson <crobinso@redhat.com> - 2.1.0-2
610fa1
- Fix --initrd-inject with f30 URLs (bz #1686464)
610fa1
610fa1
* Sun Feb 03 2019 Cole Robinson <crobinso@redhat.com> - 2.1.0-1
610fa1
- Rebased to version 2.1.0
610fa1
- Bash autocompletion support (Lin Ma, Cole Robinson)
610fa1
- UI and command line --vsock support (Slavomir Kaslev)
610fa1
- virt-xml: Add --os-variant option (Andrea Bolognani)
610fa1
- virt-install: use libosinfo cpu, mem, disk size defaults (Fabiano
610fa1
  Fidencio)
610fa1
- virt-install: Better usage of libosinfo -unknown distro IDs (Fabiano
610fa1
  Fidencio)
610fa1
- virt-install: More usage of libosinfo for ISO --location detection
610fa1
- virt-install: Add --location LOCATION,kernel=X,initrd=Y for pointing to
610fa1
  kernel/initrd in media that virt-install/libosinfo fails to detect
610fa1
610fa1
* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.0-2
610fa1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
610fa1
610fa1
* Mon Oct 15 2018 Cole Robinson <crobinso@redhat.com> - 2.0.0-1
610fa1
- Rebased to version 2.0.0
610fa1
- Finish port to Python 3
610fa1
- Improved VM defaults: q35 PCIe, usb3, CPU host-model
610fa1
- Search based OS selection UI for new VMs
610fa1
- Track OS name for lifetime of domain in <metadata> XML
610fa1
- Host interface management UI has been completely removed
610fa1
- Show domain IP on interface details page
610fa1
610fa1
* Fri Sep 07 2018 Cole Robinson <crobinso@redhat.com> - 1.6.0-1.3.3.git3bc7ff24c
610fa1
- Enable arm32+uefi (bz #1613996)
610fa1
610fa1
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.0-0.3.git3bc7ff24c
610fa1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
610fa1
610fa1
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 1.6.0-0.2.git3bc7ff24c
610fa1
- Rebuilt for Python 3.7
610fa1
610fa1
* Thu Apr 26 2018 Cole Robinson <crobinso@redhat.com> - 1.6.0-0.1.git3bc7ff24c
610fa1
- Update to latest git snapshot, contains python3 port
610fa1
610fa1
* Wed Feb 28 2018 Cole Robinson <crobinso@redhat.com> - 1.5.1-1
610fa1
- Rebased to version 1.5.1
610fa1
- Fix disk/net/mem stats graphs
610fa1
610fa1
* Wed Feb 07 2018 Iryna Shcherbina <ishcherb@redhat.com> - 1.5.0-2
610fa1
- Update Python 2 dependency declarations to new packaging standards
610fa1
  (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
610fa1
610fa1
* Tue Feb 06 2018 Cole Robinson <crobinso@redhat.com> - 1.5.0-1
610fa1
- Rebased to version 1.5.0
610fa1
- python3 prep work (Radostin Stoyanov, Cole Robinson, Cédric Bosdonnat)
610fa1
- Switch --location ISO to use isoinfo (Andrew Wong)
610fa1
- virt-install: add --cpu numa distance handling (Menno Lageman)
610fa1
- virt-install: fix --disk for rbd volumes with auth (Rauno Väli)
610fa1
- virt-install: add --cputune vcpupin handling (Wim ten Have)
610fa1
- details ui: Showing attached scsi devices per controller (Lin Ma)
610fa1
- network ui: Show details about SR-IOV VF pool (Lin Ma)
610fa1
- Greatly expand UI test suite coverage
610fa1
610fa1
* Tue Feb 06 2018 Cole Robinson <crobinso@redhat.com> - 1.5.0-1
610fa1
- Rebased to version 1.5.0
610fa1
- python3 prep work (Radostin Stoyanov, Cole Robinson, Cédric Bosdonnat)
610fa1
- Switch --location ISO to use isoinfo (Andrew Wong)
610fa1
- virt-install: add --cpu numa distance handling (Menno Lageman)
610fa1
- virt-install: fix --disk for rbd volumes with auth (Rauno Väli)
610fa1
- virt-install: add --cputune vcpupin handling (Wim ten Have)
610fa1
- details ui: Showing attached scsi devices per controller (Lin Ma)
610fa1
- network ui: Show details about SR-IOV VF pool (Lin Ma)
610fa1
- Greatly expand UI test suite coverage
610fa1
610fa1
* Fri Jan 05 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.4.3-3
610fa1
- Remove obsolete scriptlets
610fa1
610fa1
* Tue Nov 21 2017 Cole Robinson <crobinso@redhat.com> - 1.4.3-2
610fa1
- Fix 'Add Hardware' wizard for non-x86 guests (bz #1505532)
610fa1
610fa1
* Tue Sep 19 2017 Cole Robinson <crobinso@redhat.com> - 1.4.3-1
610fa1
- Rebased to version 1.4.3
610fa1
- Improve install of debian/ubuntu non-x86 media (Viktor Mihajlovski, Andrew
610fa1
  Wong)
610fa1
- New virt-install --graphics listen.* (Pavel Hrdina)
610fa1
- New virt-install --disk snapshot_policy= (Pavel Hrdina)
610fa1
- New virt-install --cpu cache.* (Lin Ma)
610fa1
- Several bug fixes
610fa1
610fa1
* Wed Aug 09 2017 Cole Robinson <crobinso@redhat.com> - 1.4.2-1
610fa1
- Rebased to version 1.4.2
610fa1
- New VM wixard virt-bootstrap integration (Radostin Stoyanov)
610fa1
- New VM wizard support for virtuozzo containers (Mikhail Feoktistov)
610fa1
- network UI: add support to create SR-IOV VF pool (Lin Ma)
610fa1
- Nicer OS list in New VM wizard (Pino Toscano)
610fa1
- Better defaults for UEFI secureboot builds (Pavel Hrdina)
610fa1
- Fix defaults for aarch64 VMs if graphics are requested
610fa1
- virt-install: new --memdev option (Pavel Hrdina)
610fa1
- virt-install: add --disk logical/physical_block_size (Yuri Arabadji)
610fa1
- virt-install: add --features hyperv_reset=, hyperv_synic= (Venkat Datta N
610fa1
  H)
610fa1
610fa1
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.1-3
610fa1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
610fa1
610fa1
* Wed Mar 22 2017 Cole Robinson <crobinso@redhat.com> - 1.4.1-2
610fa1
- Fix broken it/ko translations (bz #1433800)
610fa1
610fa1
* Mon Mar 13 2017 Cole Robinson <crobinso@redhat.com> - 1.4.1-1
610fa1
- Rebased to version 1.4.1
610fa1
- storage/nodedev event API support (Jovanka Gulicoska)
610fa1
- UI options for enabling spice GL (Marc-André Lureau)
610fa1
- Add default virtio-rng /dev/urandom for supported guest OS
610fa1
- Cloning and rename support for UEFI VMs (Pavel Hrdina)
610fa1
- libguestfs inspection UI improvements (Pino Toscano)
610fa1
- virt-install: Add --qemu-commandline
610fa1
- virt-install: Add --network vhostuser (Chen Hanxiao)
610fa1
- virt-install: Add --sysinfo (Charles Arnold)
610fa1
610fa1
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.0-6
610fa1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
610fa1
610fa1
* Tue Dec 13 2016 Cole Robinson <crobinso@redhat.com> - 1.4.0-5
610fa1
- Fix version check for spice GL support
610fa1
- Don't return virtio1.0-net as a valid device name (bz #1399083)
610fa1
- Fix window size tracking on wayland (bz #1375175)
610fa1
- Fix 'resize to VM' on wayland (bz #1397598)
610fa1
610fa1
* Sun Nov 06 2016 Cole Robinson <crobinso@redhat.com> - 1.4.0-4
610fa1
- Fix fedora24 installs from incorrectly using virtio-input (bz #1391522)
610fa1
- Fix error checking extra_args for console argument
610fa1
610fa1
* Wed Jun 29 2016 Cole Robinson <crobinso@redhat.com> - 1.4.0-3
610fa1
- Fix italian translation from breaking the app (bz #1350185)
610fa1
610fa1
* Sat Jun 18 2016 Cole Robinson <crobinso@redhat.com> - 1.4.0-2
610fa1
- Fix executing virt-* scripts (bz #1347938)
610fa1
610fa1
* Sat Jun 18 2016 Cole Robinson <crobinso@redhat.com> - 1.4.0-1
610fa1
- Rebased to version 1.4.0
610fa1
610fa1
* Fri May 20 2016 Cole Robinson <crobinso@redhat.com> - 1.3.2-4.20160520git2204de62d9
610fa1
- Rebase to latest git
610fa1
- Update translations (bz #1323015)
610fa1
- Fix rawhide URL installs (bz #1322011)
610fa1
- Update viewer to work with spice GL
610fa1
610fa1
* Thu Mar 17 2016 Cole Robinson <crobinso@redhat.com> - 1.3.2-3
610fa1
- Fix screenshot on F24 rawhide (bz #1297988)
610fa1
- Fix URL installs when content-length header missing (bz #1297900)
610fa1
610fa1
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.2-2
610fa1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
610fa1
610fa1
* Thu Dec 24 2015 Cole Robinson <crobinso@redhat.com> - 1.3.2-1
610fa1
- Rebased to version 1.3.2
610fa1
- Fix dependency issues with vte (bz #1290262)
610fa1
610fa1
* Sun Dec 06 2015 Cole Robinson <crobinso@redhat.com> - 1.3.1-1
610fa1
- Rebased to version 1.3.1
610fa1
- Fix command line API on RHEL7 pygobject
610fa1
610fa1
* Wed Nov 25 2015 Cole Robinson <crobinso@redhat.com> - 1.3.0-1
610fa1
- Rebased to version 1.3.0
610fa1
- Error when trying to modify existing 9p share (bz #1257565)
610fa1
- virt-manager tries to create vmport device on non-x86 backends (bz #1259998)
610fa1
- Details/Virtual networks: Allow manually specifying a bridge for
610fa1
  qemu:///session (bz #1212443)
610fa1
- [RFE] Improve Solaris 10 x86-64 support in virt-manager (bz #1262093)
610fa1
- No system tray icon in Cinnamon session (bz #1257949)
610fa1
- virt-install does not remove orphaned images on failure (bz #1212617)
610fa1
- virt-manager does not warn if it cannot find the network (bz #1212616)
610fa1
- Storage volume manager looses focus when a volume is deleted (bz #1279861)
610fa1
- Storage volume manager does not update free space (bz #1279940)
610fa1
- Reboot/Shutdown buttons does not work on aarch64 (bz #1212826)
610fa1
610fa1
* Tue Aug 11 2015 Cole Robinson <crobinso@redhat.com> - 1.2.1-3
610fa1
- Fix errors with missing nodedevs (bz #1225771)
610fa1
- Fix CDROM media change if device is bootable (bz #1229819)
610fa1
- Fix adding iscsi pools (bz #1231558)
610fa1
- spec: Add LXC to default connection list (bz #1235972)
610fa1
- Fix backtrace when reporting OS error (bz #1241902)
610fa1
- Raise upper limits for lxc ID namespaces (bz #1244490)
610fa1
- Fix 'copy host CPU definition'
610fa1
- Fix displaying VM machine type when connecting to old libvirt
610fa1
- Fix qemu:///session handling in 'Add Connection' dialog
610fa1
- Fix default storage path for qemu:///session, it should be .local/share/...
610fa1
610fa1
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.1-2
610fa1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
610fa1
610fa1
* Sat Jun 06 2015 Cole Robinson <crobinso@redhat.com> - 1.2.1-1
610fa1
- Rebased to version 1.2.1
610fa1
- Bugfix release
610fa1
- Fix connecting to older libvirt versions (Michał Kępień)
610fa1
- Fix connecting to VM console with non-IP hostname (Giuseppe Scrivano)
610fa1
- Fix addhardware/create wizard errors when a nodedev disappears
610fa1
- Fix adding a second cdrom via customize dialog
610fa1
610fa1
* Mon May 04 2015 Cole Robinson <crobinso@redhat.com> - 1.2.0-1
610fa1
- Rebased to version 1.2.0
610fa1
610fa1
* Mon Apr 13 2015 Cole Robinson <crobinso@redhat.com> - 1.1.0-7.git6dbe19bd8
610fa1
- Catch ppc64le domaincapabilities errors (bz #1209723)
610fa1
- Fix missing install options for ppc64le (bz #1209720)
610fa1
- Allow adding SATA CDROM devices for q35 (bz #1207834)
610fa1
- Fix crashes with ssh spice connections (bz #1135808)
610fa1
- Drop incorrect dep on gnome-icon-theme (bz #1207061)
610fa1
610fa1
* Fri Mar 27 2015 Cole Robinson <crobinso@redhat.com> - 1.1.0-6.git8ca8490c
610fa1
- Update to latest git
610fa1
- Fix new VM disk image names when VM name changes (bz #1169141)
610fa1
- Fix missing virt-install dep on pygobject (bz #1195794)
610fa1
- Fix changing VM video type away from qxl (bz #1182710)
610fa1
- Don't use vmvga for ubuntu VMs on remote centos hosts (bz #1147662)
610fa1
- Clear vendor field when changing CPU (bz #1190851)
610fa1
- Drop bogus network domain name validation (bz #1195873)
610fa1
- Fix Fedora URL examples in virt-install man page (bz #1172818)
610fa1
- Fix misleading virt-install text after --import install (bz #1180558)
610fa1
610fa1
* Sun Feb 22 2015 Cole Robinson <crobinso@redhat.com> - 1.1.0-5.git310f6527
610fa1
- Fix BuildRequires for f22/rawhide
610fa1
610fa1
* Sun Nov 16 2014 Cole Robinson <crobinso@redhat.com> - 1.1.0-4.git310f6527
610fa1
- Fix crash when rebooting VMs after install (bz #1135546)
610fa1
- Fix dep on libosinfo (bz #1159370)
610fa1
- Fix PCI/USB hotplug (bz #1146297)
610fa1
610fa1
* Tue Sep 23 2014 Cole Robinson <crobinso@redhat.com> - 1.1.0-3.git310f6527
610fa1
- Fix defaults for arm and aarch64 VMs
610fa1
610fa1
* Mon Sep 22 2014 Cole Robinson <crobinso@redhat.com> - 1.1.0-2.git30db9ece2
610fa1
- Fix app hanging at connection startup with remote host (bz #1123266)
610fa1
- Fix several issues creating host bridges (bz #1122743)
610fa1
- Only use 2 usb redir devs by default to free up USB ports (bz #1135488)
610fa1
- Create qemu-ga channels for rhel/centos 6/7 VMs (bz #1139109)
610fa1
610fa1
* Sun Sep 07 2014 Cole Robinson <crobinso@redhat.com> - 1.1.0-1
610fa1
- Rebased to version 1.1.0
610fa1
- Switch to libosinfo as OS metadata database (Giuseppe Scrivano)
610fa1
- Use libosinfo for OS detection from CDROM media labels (Giuseppe
610fa1
  Scrivano)
610fa1
- Use libosinfo for improved OS defaults, like recommended disk size
610fa1
  (Giuseppe Scrivano)
610fa1
- virt-image tool has been removed, as previously announced
610fa1
- Enable Hyper-V enlightenments for Windows VMs
610fa1
- Revert virtio-console default, back to plain serial console
610fa1
- Experimental q35 option in new VM 'customize' dialog
610fa1
- UI for virtual network QoS settings (Giuseppe Scrivano)
610fa1
- virt-install: --disk discard= support (Jim Minter)
610fa1
- addhardware: Add spiceport UI (Marc-André Lureau)
610fa1
- virt-install: --events on_poweroff etc. support (Chen Hanxiao)
610fa1
- cli --network portgroup= support and UI support
610fa1
- cli --boot initargs= and UI support
610fa1
- addhardware: allow setting controller model (Chen Hanxiao)
610fa1
- virt-install: support setting hugepage options (Chen Hanxiao)
610fa1
610fa1
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.1-3.1
610fa1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
610fa1
610fa1
* Tue Apr 29 2014 Cole Robinson <crobinso@redhat.com> - 1.0.1-3
610fa1
- filesystem: Fix target validation when editing device (bz #1089422)
610fa1
- details: Explicit warn that 'format' doesn't change image format (bz
610fa1
  #1089457)
610fa1
- snapshots: Fix screenshot with qxl+spice (bz #1089780)
610fa1
- Fix using storage when the directory name contains whitespace (bz #1091384)
610fa1
- packageutils: Fix install when one package is already installed (bz
610fa1
  #1090181)
610fa1
610fa1
* Wed Apr 16 2014 Cole Robinson <crobinso@redhat.com> - 1.0.1-2
610fa1
- gfxdetails: Show port number for active autoport VM (bz #1081614)
610fa1
- connection: Hook into domain balloon event (bz #1081424)
610fa1
- details: Fix showing vcpus values in 'customize' dialog (bz #1083903)
610fa1
- details: Fix changing graphics type (bz #1083903)
610fa1
- createpool: Clarify iscsi IQN fields (bz #1084011)
610fa1
- More fixes for errors on libvirtd disconnect (bz #1069351)
610fa1
610fa1
* Sat Mar 22 2014 Cole Robinson <crobinso@redhat.com> - 1.0.1-1
610fa1
- Rebased to version 1.0.1
610fa1
- virt-install/virt-xml: New --memorybacking option (Chen Hanxiao)
610fa1
- virt-install/virt-xml: New --memtune option (Chen Hanxiao)
610fa1
- virt-manager: UI for LXC <idmap> (Chen Hanxiao)
610fa1
- virt-manager: gsettings key to disable keygrab (Kjö Hansi Glaz)
610fa1
- virt-manager: Show domain state reason in the UI (Giuseppe Scrivano)
610fa1
- Fix a number of bugs found since the 1.0.0 release
610fa1
610fa1
* Mon Mar 10 2014 Cole Robinson <crobinso@redhat.com> - 1.0.0-6
610fa1
- connection: Handle errors when deregistering events on close (bz #1069351)
610fa1
610fa1
* Fri Mar 07 2014 Cole Robinson <crobinso@redhat.com> - 1.0.0-5
610fa1
- addhardware: Fix adding disk through 'customize' dialog (bz #1073808)
610fa1
610fa1
* Thu Mar 06 2014 Cole Robinson <crobinso@redhat.com> - 1.0.0-4
610fa1
- virt-convert: better error if unar is not installed
610fa1
- details: Fix fallback if fetching CPU models fails (bz #1072704)
610fa1
- fsdetails: Fix adding a filesystem device (bz #1073067)
610fa1
- virt-install: Fix --location iso again, and test it (bz #1071513)
610fa1
- Handle libvirt generating invalid volume XML (bz #1072770)
610fa1
610fa1
* Fri Feb 28 2014 Cole Robinson <crobinso@redhat.com> - 1.0.0-3
610fa1
- Fix creating storage paths if directory is all digits (bz #1069351)
610fa1
- Properly close connection if tick fails (bz #1069351)
610fa1
- virt-manager: Handle unrefreshed storage pools (bz #1070883)
610fa1
- Fix unsetting 'auto resize' console property
610fa1
610fa1
* Tue Feb 18 2014 Cole Robinson <crobinso@redhat.com> - 1.0.0-2
610fa1
- Fix open connection->lxc
610fa1
- Fix issues creating ppc64 guests
610fa1
- Fix generating disk targets from customize->addhw
610fa1
610fa1
* Fri Feb 14 2014 Cole Robinson <crobinso@redhat.com> - 1.0.0-1
610fa1
- Rebased to version 1.0.0
610fa1
- New tool virt-xml: Edit libvirt XML in one shot from the command line
610fa1
- Improved defaults: qcow2, USB2, host CPU model, guest agent channel
610fa1
- Introspect command line options like --disk=? or --network=help
610fa1
610fa1
* Sun Nov 10 2013 Cole Robinson <crobinso@redhat.com> - 0.10.0-5.git1ffcc0cc
610fa1
- Fix running virt-manager on rawhide (bz #1024569)
610fa1
- Fix vcpu vs. maxvcpu UI (bz #1016318)
610fa1
- Fix app startup when run as root (bz #1016435)
610fa1
- Release serial console when details window is closed (bz #1016445)
610fa1
- Clarify snapshot VM state UI (bz #1016604)
610fa1
- Fix adding qemu-guest-agent by default (bz #1016613)
610fa1
- Fix first run app install (bz #1016825)
610fa1
- Fix error reporting if initrd fetch fails (bz #1017419)
610fa1
- Fix error reporting if app is run with no DISPLAY (bz #1021482)
610fa1
- Fix usage of install media in /home/crobinso (bz #1025355)
610fa1
610fa1
* Sun Oct 06 2013 Cole Robinson <crobinso@redhat.com> - 0.10.0-4.git79196cdf
610fa1
- Fix cdrom ordering if added via 'customize' (bz #905439)
610fa1
- Default to spice/qxl for virt-install (bz #911734)
610fa1
- Fill in cache and io values for new VMs (bz #967643)
610fa1
- Add dep on dconf (bz #1012884)
610fa1
610fa1
* Tue Sep 24 2013 Cole Robinson <crobinso@redhat.com> - 0.10.0-3.gita2e52067
610fa1
- Sync with git
610fa1
- Don't try to launch multiple ssh askpass dialogs at once (bz #811346)
610fa1
- Fix confusion when multiple progress dialogs are run (bz #1003101)
610fa1
- Fix error adding macvtap nic (bz #1006324)
610fa1
- Add an appdata file (bz #1011120)
610fa1
- virt-install: fix nfs:// style URLs (bz #1011177)
610fa1
- Fix spice with TLS (bz #904295)
610fa1
- Reduce impact of memory leak (bz #972371)
610fa1
- Fix parsing rawhide .treeinfo (bz #989162)
610fa1
610fa1
* Wed Aug 21 2013 Cole Robinson <crobinso@redhat.com> 0.10.0-2.git948b5359
610fa1
- Update to git snapshot for ARM support
610fa1
610fa1
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.10.0-1.1
610fa1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
610fa1
610fa1
* Wed Jun 19 2013 Cole Robinson <crobinso@redhat.com> - 0.10.0-1
610fa1
- Rebased to version 0.10.0
610fa1
- Fix screenshots (bz #969410)
610fa1
- Add Fedora 19 osdict option (bz #950230)
610fa1
- Fix loading libguestfs OS icons (bz #905238)
610fa1
- Make packagekit search cancellable (bz #973777)
610fa1
- Fix freeze on guest shutdown if serial console connected (bz #967968)
610fa1
610fa1
* Mon May 27 2013 Cole Robinson <crobinso@redhat.com> - 0.10.0-0.5.gitde1695b2
610fa1
- Fix default graphics, should be spice+qxl (bz #965864)
610fa1
- Check for libvirt default network package on first run (bz #950329)
610fa1
- Fix changing VM cirrus->QXL (bz #928882)
610fa1
610fa1
* Wed May 15 2013 Cole Robinson <crobinso@redhat.com> - 0.10.0-0.4.gitb68faac8
610fa1
- Drop bogus packagekit check for avahi-tools (bz #963472)
610fa1
610fa1
* Wed May 15 2013 Cole Robinson <crobinso@redhat.com> - 0.10.0-0.3.gitb68faac8
610fa1
- Fix error creating QEMU guests (bz #962569)
610fa1
610fa1
* Thu May 09 2013 Cole Robinson <crobinso@redhat.com> - 0.10.0-0.2.gitb68faac8
610fa1
- Fix dep on vte3 (bz #958945)
610fa1
- Fix dep on virt-manager-common (bz #958730)
610fa1
- Fix crash when installing from ISO media (bz #958641)
610fa1
- Fix poor error reporting with unknown CLI option (bz #958730)
610fa1
610fa1
* Mon Apr 29 2013 Cole Robinson <crobinso@redhat.com> - 0.10.0-0.1.gitd3f9bc8e
610fa1
- Update to git snapshot for next release
610fa1
610fa1
* Mon Apr 01 2013 Cole Robinson <crobinso@redhat.com> - 0.9.5-1
610fa1
- Rebased to version 0.9.5
610fa1
- Enable adding virtio-scsi disks (Chen Hanxiao) (bz 887584)
610fa1
- Support security auto-relabel setting (Martin Kletzander)
610fa1
- Support disk iotune settings (David Shane Holden)
610fa1
- Support 'reset' as a reboot option (John Doyle)
610fa1
- Don't pull in non-native qemu packages on first run (bz 924469)
610fa1
- Don't create LVM volumes with alloc=0, it doesn't work (bz 872162)
610fa1
- Fix storage browser hang on KDE (bz 880781)
610fa1
- Fix package installation on KDE (bz 882024)
610fa1
610fa1
* Fri Mar 01 2013 Cole Robinson <crobinso@redhat.com> - 0.9.4-5
610fa1
- Add explicit dep on pod2man (bz #914562)
610fa1
610fa1
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.4-4.1
610fa1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
610fa1
610fa1
* Mon Dec 17 2012 Cole Robinson <crobinso@redhat.com> - 0.9.4-4
610fa1
- Use correct KVM package names on first run (bz #873878)
610fa1
- network: fix parsing ip blocks with prefix= (bz #872814)
610fa1
- Don't recommend all of libvirt, just the kvm bits (bz #872246)
610fa1
610fa1
* Tue Oct 30 2012 Cole Robinson <crobinso@redhat.com> - 0.9.4-3
610fa1
- Fix first run packagekit interaction (bz #870851)
610fa1
- Fix another backtrace if guest is pmsuspended (bz #871237)
610fa1
610fa1
* Wed Oct 24 2012 Cole Robinson <crobinso@redhat.com> - 0.9.4-2
610fa1
- Fix KVM package install on app first run
610fa1
- Fix listing domain with 'suspended' state (bz #850954)
610fa1
- Fix 'browse local' behavior when choosing directory (bz #855335)
610fa1
- Fix libgnome-keyring dep (bz #811921)
610fa1
610fa1
* Sun Jul 29 2012 Cole Robinson <crobinso@redhat.com> - 0.9.4-1
610fa1
- Rebased to version 0.9.4
610fa1
- Fix VNC keygrab issues (bz 840240)
610fa1
610fa1
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.3-1.1
610fa1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
610fa1
610fa1
* Mon Jul 09 2012 Cole Robinson <crobinso@redhat.com> - 0.9.3-1
610fa1
- Rebased to version 0.9.3
610fa1
- Convert to gtkbuilder: UI can now be editted with modern glade tool
610fa1
- virt-manager no longer runs on RHEL5, but can manage a remote RHEL5
610fa1
  host
610fa1
- Option to configure spapr net and disk devices for pseries (Li Zhang)
610fa1
- Offer to install openssh-askpass if we need it (bz 754484)
610fa1
- Don't leave defunct SSH processes around (bz 757892)
610fa1
- Offer to start libvirtd after install (bz 791152)
610fa1
- Fix crash when deleting storage volumes (bz 805950)
610fa1
- Show serial device PTY path again (bz 811760)
610fa1
- Fix possible crash when rebooting fails (bz 813119)
610fa1
- Offer to discard state if restore fails (bz 837236)
610fa1
610fa1
* Wed Jun 06 2012 Cole Robinson <crobinso@redhat.com> - 0.9.1-4
610fa1
- Fix connecting to console with specific listen address
610fa1
- Fix regression that dropped spice dependency (bz 819270)
610fa1
610fa1
* Wed Apr 25 2012 Cole Robinson <crobinso@redhat.com> - 0.9.1-3
610fa1
- Actually make spice the default (bz 757874)
610fa1
- Only depend on spice on arch it is available (bz 811030)
610fa1
- Depend on libgnome-keyring (bz 811921)
610fa1
610fa1
* Mon Feb 13 2012 Cole Robinson <crobinso@redhat.com> - 0.9.1-2
610fa1
- Fix error reporting for failed remote connections (bz 787011)
610fa1
- Fix setting window title when VNC mouse is grabbed (bz 788443)
610fa1
- Advertise VDI format in disk details (bz 761300)
610fa1
- Don't let an unavailable host hang the app (bz 766769)
610fa1
- Don't overwrite existing create dialog when reshowing (bz 754152)
610fa1
- Improve tooltip for 'force console shortcuts' (bz 788448)
610fa1
610fa1
* Wed Feb 01 2012 Cole Robinson <crobinso@redhat.com> - 0.9.1-1
610fa1
- Rebased to version 0.9.1
610fa1
- Support for adding usb redirection devices (Marc-André Lureau)
610fa1
- Option to switch usb controller to support usb2.0 (Marc-André Lureau)
610fa1
- Option to specify machine type for non-x86 guests (Li Zhang)
610fa1
- Support for filesystem device type and write policy (Deepak C Shetty)
610fa1
- Many bug fixes!
610fa1
610fa1
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.0-8.1
610fa1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
610fa1
610fa1
* Fri Oct 28 2011 Cole Robinson <crobinso@redhat.com> - 0.9.0-8
610fa1
- Fix crashes when deleting a VM (bz 749263)
610fa1
610fa1
* Tue Sep 27 2011 Cole Robinson <crobinso@redhat.com> - 0.9.0-7
610fa1
- Fix 'Resize to VM' graphical option (bz 738806)
610fa1
- Fix deleting guest with managed save data
610fa1
- Fix error when adding default storage
610fa1
- Don't flush XML cache on every tick
610fa1
- Use labels for non-editable network info fields (bz 738751)
610fa1
- Properly update icon cache (bz 733836)
610fa1
610fa1
* Tue Aug 02 2011 Cole Robinson <crobinso@redhat.com> - 0.9.0-6
610fa1
- Fix python-newt_syrup dep
610fa1
610fa1
* Mon Aug 01 2011 Cole Robinson <crobinso@redhat.com> - 0.9.0-5
610fa1
- Don't have a hard dep on libguestfs (bz 726364)
610fa1
- Depend on needed python-newt_syrup version
610fa1
610fa1
* Thu Jul 28 2011 Cole Robinson <crobinso@redhat.com> - 0.9.0-4
610fa1
- Fix typo that broke net stats reporting
610fa1
610fa1
* Wed Jul 27 2011 Cole Robinson <crobinso@redhat.com> - 0.9.0-3
610fa1
- Add BuildRequires: GConf2 to fix pre scriplet error
610fa1
610fa1
* Tue Jul 26 2011 Cole Robinson <crobinso@redhat.com> - 0.9.0-2
610fa1
- Fix virtinst dep
610fa1
610fa1
* Tue Jul 26 2011 Cole Robinson <crobinso@redhat.com> - 0.9.0-1.fc17
610fa1
- Rebased to version 0.9.0
610fa1
- Use a hiding toolbar for fullscreen mode
610fa1
- Use libguestfs to show guest packagelist and more (Richard W.M. Jones)
610fa1
- Basic 'New VM' wizard support for LXC guests
610fa1
- Remote serial console access (with latest libvirt)
610fa1
- Remote URL guest installs (with latest libvirt)
610fa1
- Add Hardware: Support <filesystem> devices
610fa1
- Add Hardware: Support <smartcard> devices (Marc-André Lureau)
610fa1
- Enable direct interface selection for qemu/kvm (Gerhard Stenzel)
610fa1
- Allow viewing and changing disk serial number
610fa1
610fa1
* Thu Apr 28 2011 Cole Robinson <crobinso@redhat.com> - 0.8.7-5.fc16
610fa1
- Stop netcf errors from flooding logs (bz 676920)
610fa1
- Bump default mem for new guests to 1GB so F15 installs work (bz
610fa1
  700480)
610fa1
610fa1
* Tue Apr 19 2011 Cole Robinson <crobinso@redhat.com> - 0.8.7-4.fc16
610fa1
- Fix spice RPM dependency (bz 697729)
610fa1
610fa1
* Thu Apr 07 2011 Cole Robinson <crobinso@redhat.com> - 0.8.7-3.fc16
610fa1
- Fix broken cs.po which crashed gettext
610fa1
- Fix offline attach fallback if hotplug fails
610fa1
- Offer to attach spicevmc if switching to spice
610fa1
610fa1
* Thu Mar 31 2011 Cole Robinson <crobinso@redhat.com> - 0.8.7-2.fc16
610fa1
- Fix using spice as default graphics type
610fa1
- Fix lockup as non-root (bz 692570)
610fa1
610fa1
* Mon Mar 28 2011 Cole Robinson <crobinso@redhat.com> - 0.8.7-1.fc16
610fa1
- Rebased to version 0.8.7
610fa1
- Allow renaming an offline VM
610fa1
- Spice password support (Marc-André Lureau)
610fa1
- Allow editting NIC <virtualport> settings (Gerhard Stenzel)
610fa1
- Allow enabling/disabling individual CPU features
610fa1
- Allow easily changing graphics type between VNC/SPICE for existing VM
610fa1
- Allow easily changing network source device for existing VM
610fa1
610fa1
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.6-2
610fa1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
610fa1
610fa1
* Wed Feb  2 2011 Cole Robinson <crobinso@redhat.com> - 0.8.6-1.fc15
610fa1
- Update to 0.8.6
610fa1
- SPICE support (requires spice-gtk) (Marc-André Lureau)
610fa1
- Option to configure CPU model
610fa1
- Option to configure CPU topology
610fa1
- Save and migration cancellation (Wen Congyang)
610fa1
- Save and migration progress reporting
610fa1
- Option to enable bios boot menu
610fa1
- Option to configure direct kernel/initrd boot
610fa1
610fa1
* Wed Aug 25 2010 Cole Robinson <crobinso@redhat.com> - 0.8.5-1.fc15
610fa1
- Update to 0.8.5
610fa1
- Improved save/restore support
610fa1
- Option to view and change disk cache mode
610fa1
- Configurable VNC keygrab sequence (Michal Novotny)
610fa1
610fa1
* Mon Aug  2 2010 David Malcolm <dmalcolm@redhat.com> - 0.8.4-3.fc15
610fa1
- fix python 2.7 incompatibility (bz 620216)
610fa1
610fa1
* Thu May 27 2010 Cole Robinson <crobinso@redhat.com> - 0.8.4-2.fc14
610fa1
- Only close connection on specific remote errors
610fa1
- Fix weird border in manager UI (bz 583728)
610fa1
- Fix broken icons
610fa1
- Cancel post-install reboot if VM is forced off
610fa1
- Fix traceback if customizing a livecd install (bz 583712)
610fa1
- Add pool refresh button
610fa1
- Properly autodetect VNC keymap (bz 586201)
610fa1
- Fix traceback when reconnecting to remote VNC console (bz 588254)
610fa1
- Fix remote VNC connection with zsh as default shell
610fa1
610fa1
* Wed Mar 24 2010 Cole Robinson <crobinso@redhat.com> - 0.8.4-1.fc14
610fa1
- Update to version 0.8.4
610fa1
- 'Import' install option, to create a VM around an existing OS image
610fa1
- Support multiple boot devices and boot order
610fa1
- Watchdog device support
610fa1
- Enable setting a human readable VM description.
610fa1
- Option to manually specifying a bridge name, if bridge isn't detected
610fa1
610fa1
* Mon Mar 22 2010 Cole Robinson <crobinso@redhat.com> - 0.8.3-2.fc14
610fa1
- Fix using a manual 'default' pool (bz 557020)
610fa1
- Don't force grab focus when app is run (bz 548430)
610fa1
- Check packagekit for KVM and libvirtd (bz 513494)
610fa1
- Fake a reboot implementation if libvirt doesn't support it (bz 532216)
610fa1
- Mark some strings as translatable (bz 572645)
610fa1
610fa1
* Mon Feb  8 2010 Cole Robinson <crobinso@redhat.com> - 0.8.3-1.fc13
610fa1
- Update to 0.8.3 release
610fa1
- Manage network interfaces: start, stop, view, provision bridges, bonds, etc.
610fa1
- Option to 'customize VM before install'.
610fa1
610fa1
* Tue Jan 12 2010 Cole Robinson <crobinso@redhat.com> - 0.8.2-2.fc13
610fa1
- Build with actual upstream tarball (not manually built dist)
610fa1
610fa1
* Mon Dec 14 2009 Cole Robinson <crobinso@redhat.com> - 0.8.2-1.fc13
610fa1
- Update to 0.8.2 release
610fa1
- Fix first virt-manager run on a new install
610fa1
- Enable floppy media eject/connect
610fa1
610fa1
* Wed Dec 09 2009 Cole Robinson <crobinso@redhat.com> - 0.8.1-3.fc13
610fa1
- Select manager row on right click, regressed with 0.8.1
610fa1
610fa1
* Sat Dec  5 2009 Cole Robinson <crobinso@redhat.com> - 0.8.1-2.fc13
610fa1
- Set proper version Requires: for python-virtinst
610fa1
610fa1
* Thu Dec  3 2009 Cole Robinson <crobinso@redhat.com> - 0.8.1-1.fc13
610fa1
- Update to release 0.8.1
610fa1
- VM Migration wizard, exposing various migration options
610fa1
- Enumerate CDROM and bridge devices on remote connections
610fa1
- Support storage pool source enumeration for LVM, NFS, and SCSI
610fa1
610fa1
* Mon Oct 05 2009 Cole Robinson <crobinso@redhat.com> - 0.8.0-8.fc13
610fa1
- Don't allow creating a volume without a name (bz 526111)
610fa1
- Don't allow volume allocation > capacity (bz 526077)
610fa1
- Add tooltips for toolbar buttons (bz 524083)
610fa1
610fa1
* Mon Oct 05 2009 Cole Robinson <crobinso@redhat.com> - 0.8.0-7.fc13
610fa1
- More translations (bz 493795)
610fa1
610fa1
* Tue Sep 29 2009 Cole Robinson <crobinso@redhat.com> - 0.8.0-6.fc13
610fa1
- Fix VCPU hotplug
610fa1
- Remove access to outdated docs (bz 522823, bz 524805)
610fa1
- Update VM state text in manager view (bz 526182)
610fa1
- Update translations (bz 493795)
610fa1
610fa1
* Thu Sep 24 2009 Cole Robinson <crobinso@redhat.com> - 0.8.0-5.fc12
610fa1
- Refresh host disk space in create wizard (bz 502777)
610fa1
- Offer to fix disk permission issues (bz 517379)
610fa1
610fa1
* Thu Sep 17 2009 Cole Robinson <crobinso@redhat.com> - 0.8.0-4.fc12
610fa1
- Don't close libvirt connection for non-fatal errors (bz 522168)
610fa1
- Manager UI tweaks
610fa1
- Generate better errors if disk/net stats polling fails
610fa1
610fa1
* Mon Sep 14 2009 Cole Robinson <crobinso@redhat.com> - 0.8.0-3.fc12
610fa1
- Fix disk XML mangling via connect/eject cdrom (bz 516116)
610fa1
- Fix delete button sensitivity (bz 518536)
610fa1
- Fix populating text box from storage browser in 'New VM' (bz 517263)
610fa1
- Fix a traceback in an 'Add Hardware' error path (bz 517286)
610fa1
610fa1
* Thu Aug 13 2009 Daniel P. Berrange <berrange@redhat.com> - 0.8.0-2.fc12
610fa1
- Remove obsolete dep on policykit agent
610fa1
610fa1
* Tue Jul 28 2009 Cole Robinson <crobinso@redhat.com> - 0.8.0-1.fc12
610fa1
- Update to release 0.8.0
610fa1
- New 'Clone VM' Wizard
610fa1
- Improved UI, including an overhaul of the main 'manager' view
610fa1
- System tray icon for easy VM access (start, stop, view console/details)
610fa1
- Wizard for adding serial, parallel, and video devices to existing VMs.
610fa1
610fa1
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.0-6
610fa1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
610fa1
610fa1
* Thu May 21 2009 Mark McLoughlin <markmc@redhat.com> - 0.7.0-5.fc12
610fa1
- Fix 'opertaing' typo in 'New VM' dialog (#495128)
610fa1
- Allow details window to resize again (#491683)
610fa1
- Handle collecting username for vnc authentication (#499589)
610fa1
- Actually handle arch config when creating a VM (#499145)
610fa1
- Log libvirt capabilities at startup to aid debugging (#500337)
610fa1
610fa1
* Tue Apr 14 2009 Cole Robinson <crobinso@redhat.com> - 0.7.0-4.fc11
610fa1
- More translation updates
610fa1
610fa1
* Thu Apr 09 2009 Cole Robinson <crobinso@redhat.com> - 0.7.0-3.fc11
610fa1
- Fix incorrect max vcpu setting in New VM wizard (bz 490466)
610fa1
- Fix some OK/Cancel button ordering issues (bz 490207)
610fa1
- Use openAuth when duplicating a connection when deleting a VM
610fa1
- Updated translations (bz 493795)
610fa1
610fa1
* Mon Mar 23 2009 Cole Robinson <crobinso@redhat.com> - 0.7.0-2.fc11
610fa1
- Back compat fixes for connecting to older xen installations (bz 489885)
610fa1
- Don't show harmless NoneType error when launching new VM details window
610fa1
610fa1
* Tue Mar 10 2009 Cole Robinson <crobinso@redhat.com> - 0.7.0-1.fc11
610fa1
- Update to release 0.7.0
610fa1
- Redesigned 'New Virtual Machine' wizard
610fa1
- Option to remove storage when deleting a virtual machine.
610fa1
- File browser for libvirt storage pools and volumes
610fa1
- Physical device assignment (PCI, USB) for existing virtual machines.
610fa1
610fa1
* Wed Mar  4 2009 Cole Robinson <crobinso@redhat.com> - 0.6.1-4.fc11
610fa1
- Update polish translation (bz 263301)
610fa1
- Fix sending ctrl-alt-del to guest
610fa1
- Fix cpu + mem stats options to remember preference.
610fa1
610fa1
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.1-3
610fa1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
610fa1
610fa1
* Mon Feb  9 2009 Cole Robinson <crobinso@redhat.com> - 0.6.1-2
610fa1
- Kill off consolehelper (PolicyKit is sufficient)
610fa1
610fa1
* Mon Jan 26 2009 Cole Robinson <crobinso@redhat.com> - 0.6.1-1
610fa1
- Update to 0.6.1 release
610fa1
- Disk and Network VM stats reporting
610fa1
- VM Migration support
610fa1
- Support adding sound devices to existing VMs
610fa1
- Allow specifying device model when adding a network device to an existing VM
610fa1
610fa1
* Tue Jan 20 2009 Mark McLoughlin <markmc@redhat.com> - 0.6.0-7
610fa1
- Add patch to ignore fix crash on force-poweroff with serial console (#470548)
610fa1
610fa1
* Thu Dec 04 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.6.0-6
610fa1
- Rebuild for Python 2.6
610fa1
610fa1
* Mon Dec  1 2008 Cole Robinson <crobinso@redhat.com> - 0.6.0-5.fc10
610fa1
- Fix spec for building on F9
610fa1
- Update 'New VM' virt descriptions to be less black and white (bz 470563)
610fa1
610fa1
* Sun Nov 30 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.6.0-4
610fa1
- Rebuild for Python 2.6
610fa1
610fa1
* Mon Oct 27 2008 Cole Robinson <crobinso@redhat.com> - 0.6.0-3.fc10
610fa1
- Add dbus-x11 to Requires (bug 467886)
610fa1
- Fedora translation updates (bug 467808)
610fa1
- Don't add multiple sound devices if install fails
610fa1
- Only popup volume path copy option on right click
610fa1
- Fix a variable typo
610fa1
610fa1
* Tue Oct 14 2008 Cole Robinson <crobinso@redhat.com> - 0.6.0-2.fc10
610fa1
- Add gnome-python2-gnome requirement.
610fa1
- Allow seeing connection details if disconnected.
610fa1
- Updated catalan translation.
610fa1
- Update dutch translation.
610fa1
- Update german translation. (bug 438136)
610fa1
- Fix showing domain console when connecting to hypervisor.
610fa1
- Update POTFILES to reflect reality (bug 466835)
610fa1
610fa1
* Wed Sep 10 2008 Cole Robinson <crobinso@redhat.com> - 0.6.0-1.fc10
610fa1
- Update to 0.6.0 release
610fa1
- Add libvirt storage management support
610fa1
- Basic support for remote guest installation
610fa1
- Merge VM console and details windows
610fa1
- Poll avahi for libvirtd advertisement
610fa1
- Hypervisor autoconnect option
610fa1
- Add sound emulation when creating new guests
610fa1
610fa1
* Thu Apr  3 2008 Daniel P. Berrange <berrange@redhat.com> - 0.5.4-3.fc9
610fa1
- Updated sr, de, fi, it, pl translations
610fa1
610fa1
* Thu Mar 13 2008 Daniel P. Berrange <berrange@redhat.com> - 0.5.4-2.fc9
610fa1
- Don't run policykit checks when root (rhbz #436994)
610fa1
610fa1
* Mon Mar 10 2008 Daniel P. Berrange <berrange@redhat.com> - 0.5.4-1.fc9
610fa1
- Update to 0.5.4 release
610fa1
610fa1
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.5.3-2
610fa1
- Autorebuild for GCC 4.3
610fa1
610fa1
* Thu Jan 10 2008 Daniel P. Berrange <berrange@redhat.com> - 0.5.3-1.fc9
610fa1
- Update to 0.5.3 release
610fa1
610fa1
* Mon Oct 15 2007 Daniel P. Berrange <berrange@redhat.com> - 0.5.2-2.fc8
610fa1
- Change TLS x509 credential name to sync with libvirt
610fa1
610fa1
* Thu Oct  4 2007 Daniel P. Berrange <berrange@redhat.com> - 0.5.2-1.fc8
610fa1
- Update to 0.5.2 release
610fa1
- No scrollbars for high res guest in low res host (rhbz 273181)
610fa1
- Unable to remove network device (rhbz 242900)
610fa1
- Fixed broken menu items (rhbz 307551)
610fa1
- Require libvirt 0.3.3 to get CDROM change capability for Xen
610fa1
610fa1
* Tue Sep 25 2007 Daniel P. Berrange <berrange@redhat.com> - 0.5.1-1.fc8
610fa1
- Updated to 0.5.1 release
610fa1
- Open connections in background
610fa1
- Make VNC connection retries more robust
610fa1
- Allow changing of CDROM media on the fly
610fa1
- Add PXE boot installation of HVM guests
610fa1
- Allow tunnelling VNC over SSH
610fa1
610fa1
* Wed Aug 29 2007 Daniel P. Berrange <berrange@redhat.com> - 0.5.0-1.fc8
610fa1
- Updated to 0.5.0 release
610fa1
- Support for managing remote hosts
610fa1
- Switch to use GTK-VNC for the guest console
610fa1
610fa1
* Fri Aug 24 2007 Daniel P. Berrange <berrange@redhat.com> - 0.4.0-3.fc8
610fa1
- Remove ExcludeArch since libvirt is now available
610fa1
610fa1
* Wed May  9 2007 Daniel P. Berrange <berrange@redhat.com> - 0.4.0-2.fc7
610fa1
- Refresh po file translations (bz 238369)
610fa1
- Fixed removal of disk/network devices
610fa1
- Fixed toolbar menu option state
610fa1
- Fixed file dialogs & default widget states
610fa1
610fa1
* Mon Apr 16 2007 Daniel P. Berrange <berrange@redhat.com> - 0.4.0-1.fc7
610fa1
- Support for managing virtual networks
610fa1
- Ability to attach guest to virtual networks
610fa1
- Automatically set VNC keymap based on local keymap
610fa1
- Support for disk & network device addition/removal
610fa1
610fa1
* Wed Mar 28 2007 Daniel P. Berrange <berrange@redhat.com> - 0.3.2-3.fc7
610fa1
- Fix HVM check to allow KVM guests to be created (bz 233644)
610fa1
- Fix default file size suggestion
610fa1
610fa1
* Tue Mar 27 2007 Daniel P. Berrange <berrange@redhat.com> - 0.3.2-2.fc7
610fa1
- Ensure we own all directories we create (bz 233816)
610fa1
610fa1
* Tue Mar 20 2007 Daniel P. Berrange <berrange@redhat.com> - 0.3.2-1.fc7
610fa1
- Added online help to all windows
610fa1
- Bug fixes to virtual console popup, key grab & accelerator override
610fa1
610fa1
* Tue Mar 13 2007 Daniel P. Berrange <berrange@redhat.com> - 0.3.1-4.fc7
610fa1
- Fixed thread locking to avoid deadlocks when a11y is enabled
610fa1
610fa1
* Fri Mar  2 2007 Daniel P. Berrange <berrange@redhat.com> - 0.3.1-3.fc7
610fa1
- Fixed keyboard ungrab in VNC widget
610fa1
610fa1
* Tue Feb 20 2007 Daniel P. Berrange <berrange@redhat.com> - 0.3.1-2.fc7
610fa1
- Only check for HVM on Xen hypervisor
610fa1
610fa1
* Tue Feb 20 2007 Daniel P. Berrange <berrange@redhat.com> - 0.3.1-1.fc7
610fa1
- Added support for managing QEMU domains
610fa1
- Automatically grab mouse pointer to workaround dual-cursor crazyness
610fa1
610fa1
* Wed Jan 31 2007 Daniel P. Berrange <berrange@redhat.com> - 0.3.0-2.fc7
610fa1
- Added dep on desktop-file-utils for post/postun scripts
610fa1
610fa1
* Mon Jan 22 2007 Daniel P. Berrange <berrange@redhat.com> - 0.3.0-1.fc7
610fa1
- Added support for managing inactive domains
610fa1
- Require virt-inst >= 0.100.0 and libvirt >= 0.1.11 for ianctive
610fa1
  domain management capabilities
610fa1
- Add progress bars during VM creation stage
610fa1
- Improved reliability of VNC console
610fa1
- Updated translations again
610fa1
- Added destroy option to menu bar to forceably kill a guest
610fa1
- Visually differentiate allocated memory, from actual used memory on host
610fa1
- Validate file magic when restoring a guest from a savd file
610fa1
- Performance work on domain listing
610fa1
- Allow creation of non-sparse files
610fa1
- Fix backspace key in serial console
610fa1
610fa1
* Tue Dec 19 2006 Daniel P. Berrange <berrange@redhat.com> - 0.2.6-3.fc7
610fa1
- Imported latest translations from Fedora i18n repository (bz 203783)
610fa1
- Use 127.0.0.1 address for connecting to VNC console instead of
610fa1
  localhost to avoid some issue with messed up /etc/hosts.
610fa1
- Add selector for sparse or non-sparse file, defaulting to non-sparse.
610fa1
  Add appropriate warnings and progress-bar text. (bz 218996)
610fa1
- Disable memory ballooning & CPU hotplug for HVM guests (bz 214432)
610fa1
- Updated memory-setting UI to include a hard upper limit for physical
610fa1
  host RAM
610fa1
- Added documentation on the page warning that setting virtual host RAM
610fa1
  too high can exhaust the memory of the machine
610fa1
- Handle errors when hostname resolution fails to avoid app exiting (bz 216975)
610fa1
610fa1
* Thu Dec  7 2006 Jeremy Katz <katzj@redhat.com> - 0.2.6-2.fc7
610fa1
- rebuild for python 2.5
610fa1
610fa1
* Thu Nov  9 2006 Daniel P. Berrange <berrange@redhat.com> - 0.2.6-1.fc7
610fa1
- Imported translations from Fedora i18n repository
610fa1
- Make (most) scrollbar policies automatic
610fa1
- Set busy cursor while creating new VMs
610fa1
- Preference for controlling keygrab policy
610fa1
- Preference for when to automatically open console (bz 211385)
610fa1
- Re-try VNC connection attempt periodically in case VNC daemon
610fa1
  hasn't finished starting up
610fa1
- Added activation of URLs for about dialog (bz 210782)
610fa1
- Improved error reporting when connecting to HV (bz 211229)
610fa1
- Add command line args to open specific windows
610fa1
- Don't skip para/full virt wizard step - instead gray out full
610fa1
  virt option & tell user why
610fa1
- Change 'physical' to 'logical' when refering to host CPUs
610fa1
- Include hostname in titlebar
610fa1
- Disable wizard sensitivity while creating VM
610fa1
610fa1
* Thu Oct 19 2006 Daniel P. Berrange <berrange@redhat.com> - 0.2.5-1.fc7
610fa1
- Switch to use python-virtinst instead of python-xeninst due to 
610fa1
  renaming of original package
610fa1
- Disable keyboard accelerators when grabbing mouse to avoid things like
610fa1
  Ctrl-W closing the local window, instead of remote window bz 210364
610fa1
- Fix host memory reporting bz 211281
610fa1
- Remove duplicate application menu entry bz 211230
610fa1
- Fix duplicated mnemonics (bz 208408)
610fa1
- Use blktap backed disks if available
610fa1
- Use a drop down list to remember past URLs (bz 209479)
610fa1
- Remove unused help button from preferences dialog (bz 209251)
610fa1
- Fix exception when no VNC graphics is defined
610fa1
- Force immediate refresh of VMs after creating a new one
610fa1
- Improve error reporting if run on a kernel without Xen (bz 209122)
610fa1
- More fixes to avoid stuck modifier keys on focus-out (bz 207949)
610fa1
610fa1
* Fri Sep 29 2006 Daniel P. Berrange <berrange@redhat.com> 0.2.3-2.fc6
610fa1
- Fix segv in sparkline code when no data points are defined (bz  208185)
610fa1
- Clamp CPU utilization between 0 & 100% just in case (bz 208185)
610fa1
610fa1
* Tue Sep 26 2006 Daniel Berrange <berrange@redhat.com> - 0.2.3-1.fc6
610fa1
- Require xeninst >= 0.93.0 to fix block backed devices
610fa1
- Skip para/fully-virt step when going back in wizard if not HVM host (bz 207409)
610fa1
- Fix handling of modifier keys in VNC console so Alt key doesn't get stuck (bz 207949)
610fa1
- Allow sticky modifier keys by pressing same key 3 times in row (enables Ctrl-Alt-F1
610fa1
  by doing Ctrl Ctrl Ctrl  Alt-F1)
610fa1
- Improved error handling during guest creation
610fa1
- Log errors with python logging, instead of to stdout
610fa1
- Remove unused buttons from main domain list window
610fa1
- Switch out of full screen & release key grab when closing console
610fa1
- Trim sparkline CPU history graph to 40 samples max
610fa1
- Constraint VCPU adjuster to only allow upto guest's max VCPU count
610fa1
- Show guest's max & current VCPU count in details page
610fa1
- Fix rounding of disk sizes to avoid a 1.9 GB disk being rounded down to 1 GB
610fa1
- Use raw block device path to CDROM not mount point for HVM guest (bz 206965)
610fa1
- Fix visibility of file size spin box (bz 206186 part 2)
610fa1
- Check for GTK failing to open X11 display (bz 205938)
610fa1
610fa1
* Fri Sep 15 2006 Daniel Berrange <berrange@redhat.com> - 0.2.2-1.fc6
610fa1
- Fix event handling in create VM wizard (bz 206660 & 206186)
610fa1
- Fix close button in about dialog (bz 205943)
610fa1
- Refresh .pot files
610fa1
- Turn on VNC scrollbars fulltime to avoid GTK window sizing issue
610fa1
  which consistently resize too small.
610fa1
610fa1
* Mon Sep 11 2006 Daniel Berrange <berrange@redhat.com> - 0.2.1-3.fc6
610fa1
- Added requires on pygtk2-libglade & librsvg2 (bz 205941 & 205942)
610fa1
- Re-arrange to use console-helper to launch app
610fa1
- Added 'dist' component to release number
610fa1
610fa1
* Wed Sep  6 2006 Jeremy Katz <katzj@redhat.com> - 0.2.1-2
610fa1
- don't ghost pyo files (#205448)
610fa1
610fa1
* Mon Sep  4 2006 Daniel Berrange <berrange@redhat.com> - 0.2.1-1
610fa1
- Updated to 0.2.1 tar.gz
610fa1
- Added rules to install/uninstall gconf schemas in preun,post,pre
610fa1
  scriptlets
610fa1
- Updated URL for source to reflect new upstream download URL
610fa1
610fa1
* Thu Aug 24 2006 Jeremy Katz <katzj@redhat.com> - 0.2.0-3
610fa1
- BR gettext
610fa1
610fa1
* Thu Aug 24 2006 Jeremy Katz <katzj@redhat.com> - 0.2.0-2
610fa1
- only build on arches with virt
610fa1
610fa1
* Tue Aug 22 2006 Daniel Berrange <berrange@redhat.com> - 0.2.0-1
610fa1
- Added wizard for creating virtual machines
610fa1
- Added embedded serial console
610fa1
- Added ability to take screenshots
610fa1
610fa1
* Mon Jul 24 2006 Daniel Berrange <berrange@redhat.com> - 0.1.5-2
610fa1
- Prefix *.pyo files with 'ghost' macro
610fa1
- Use fully qualified URL in Source  tag
610fa1
610fa1
* Thu Jul 20 2006 Daniel Berrange <berrange@redhat.com> - 0.1.5-1
610fa1
- Update to new 0.1.5 release snapshot
610fa1
610fa1
* Thu Jul 20 2006 Daniel Berrange <berrange@redhat.com> - 0.1.4-1
610fa1
- Update to new 0.1.4 release snapshot
610fa1
610fa1
* Mon Jul 17 2006 Daniel Berrange <berrange@redhat.com> - 0.1.3-1
610fa1
- Fix License tag
610fa1
- Updated for new release
610fa1
610fa1
* Wed Jun 28 2006 Daniel Berrange <berrange@redhat.com> - 0.1.2-3
610fa1
- Added missing copyright headers on all .py files
610fa1
610fa1
* Wed Jun 28 2006 Daniel Berrange <berrange@redhat.com> - 0.1.2-2
610fa1
- Added python-devel to BuildRequires
610fa1
610fa1
* Wed Jun 28 2006 Daniel Berrange <berrange@redhat.com> - 0.1.2-1
610fa1
- Change URL to public location
610fa1
610fa1
* Fri Jun 16 2006 Daniel Berrange <berrange@redhat.com> - 0.1.0-1
610fa1
- Added initial support for using VNC console
610fa1
610fa1
* Thu Apr 20 2006 Daniel Berrange <berrange@redhat.com> - 0.0.2-1
610fa1
- Added DBus remote control service
610fa1
610fa1
* Wed Mar 29 2006 Daniel Berrange <berrange@redhat.com> - 0.0.1-1
610fa1
- Initial RPM build