Blame SPECS/virt-manager.spec

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