Blame SPECS/virt-manager.spec

8799e5
# -*- rpm-spec -*-
8799e5
8799e5
8799e5
%global with_guestfs               0
8799e5
%global stable_defaults            0
8799e5
%global askpass_package            "openssh-askpass"
8799e5
%global qemu_user                  "qemu"
8799e5
%global libvirt_packages           "libvirt-daemon-kvm,libvirt-daemon-config-network"
8799e5
%global kvm_packages               ""
8799e5
%global preferred_distros          "fedora,rhel"
8799e5
%global default_hvs                "qemu,xen"
8799e5
8799e5
%if 0%{?rhel}
8799e5
%global preferred_distros          "rhel,fedora"
8799e5
%global stable_defaults            1
8799e5
%endif
8799e5
8799e5
8799e5
# End local config
8799e5
8799e5
Name: virt-manager
8799e5
Version: 1.4.3
8799e5
Release: 3%{?dist}%{?extra_release}
8799e5
%global verrel %{version}-%{release}
8799e5
8799e5
Summary: Desktop tool for managing virtual machines via libvirt
8799e5
Group: Applications/Emulators
8799e5
License: GPLv2+
8799e5
BuildArch: noarch
8799e5
URL: http://virt-manager.org/
8799e5
Source0: http://virt-manager.org/download/sources/%{name}/%{name}-%{version}.tar.gz
8799e5
Source1: symlinks
8799e5
8799e5
Patch1: virt-manager-RHEL-only-virt-install-doc-remove-reference-to-physical-CD-devices.patch
8799e5
Patch2: virt-manager-domain-don-t-add-URI-into-params-for-tunneled-migration.patch
8799e5
Patch3: virt-manager-diskbackend-convert-to-long-the-calculated-size.patch
8799e5
Patch4: virt-manager-diskbackend-get-a-proper-size-of-existing-block-device-while-cloning.patch
8799e5
Patch5: virt-manager-delete-undefine-only-persistent-domain.patch
8799e5
Patch6: virt-manager-localization-update-Japanese-translations.patch
8799e5
8799e5
8799e5
Requires: virt-manager-common = %{verrel}
8799e5
Requires: pygobject3
8799e5
Requires: gtk3
8799e5
Requires: libvirt-glib >= 0.0.9
8799e5
Requires: dconf
8799e5
Requires: dbus-x11
8799e5
8799e5
# The vte291 package is actually the latest vte with API version 2.91, while
8799e5
# the vte3 package is effectively a compat package with API version 2.90.
8799e5
# virt-manager works fine with either, so pull the latest bits so there's
8799e5
# no ambiguity.
8799e5
Requires: vte291
8799e5
8799e5
# For console widget
8799e5
Requires: gtk-vnc2
8799e5
Requires: spice-gtk3
8799e5
8799e5
%if 0%{?rhel} == 7
8799e5
Requires: gnome-icon-theme
8799e5
%endif
8799e5
8799e5
8799e5
BuildRequires: git
8799e5
BuildRequires: intltool
8799e5
BuildRequires: /usr/bin/pod2man
8799e5
# For python, and python2 rpm macros
8799e5
BuildRequires: python2-devel
8799e5
8799e5
8799e5
%description
8799e5
Virtual Machine Manager provides a graphical tool for administering virtual
8799e5
machines for KVM, Xen, and LXC. Start, stop, add or remove virtual devices,
8799e5
connect to a graphical or serial console, and see resource usage statistics
8799e5
for existing VMs on local or remote machines. Uses libvirt as the backend
8799e5
management API.
8799e5
8799e5
8799e5
%package common
8799e5
Summary: Common files used by the different Virtual Machine Manager interfaces
8799e5
Group: Applications/Emulators
8799e5
8799e5
# This version not strictly required: virt-manager should work with older,
8799e5
# however varying amounts of functionality will not be enabled.
8799e5
Requires: libvirt-python >= 0.7.0
8799e5
Requires: libxml2-python
8799e5
Requires: python-requests
8799e5
Requires: python-ipaddr
8799e5
Requires: libosinfo >= 0.2.11
8799e5
# Required for gobject-introspection infrastructure
8799e5
Requires: pygobject3-base
8799e5
8799e5
%description common
8799e5
Common files used by the different virt-manager interfaces, as well as
8799e5
virt-install related tools.
8799e5
8799e5
8799e5
%package -n virt-install
8799e5
Summary: Utilities for installing virtual machines
8799e5
8799e5
Requires: virt-manager-common = %{verrel}
8799e5
# For 'virsh console'
8799e5
Requires: libvirt-client
8799e5
8799e5
Provides: virt-install
8799e5
Provides: virt-clone
8799e5
Provides: virt-xml
8799e5
Obsoletes: python-virtinst
8799e5
8799e5
%description -n virt-install
8799e5
Package includes several command line utilities, including virt-install
8799e5
(build and install new VMs) and virt-clone (clone an existing virtual
8799e5
machine).
8799e5
8799e5
8799e5
%prep
8799e5
%setup -q
8799e5
8799e5
# "make dist" replaces all symlinks with a copy of the linked files;
8799e5
# we need to replace all of them with the original symlinks
8799e5
echo "Restoring symlinks"
8799e5
while read lnk target; do
8799e5
    if [ -e $lnk ]; then
8799e5
        rm -rf $lnk
8799e5
        ln -s $target $lnk
8799e5
    fi
8799e5
done <%{_sourcedir}/symlinks || exit 1
8799e5
8799e5
8799e5
# Patches have to be stored in a temporary file because RPM has
8799e5
# a limit on the length of the result of any macro expansion;
8799e5
# if the string is longer, it's silently cropped
8799e5
%{lua:
8799e5
    tmp = os.tmpname();
8799e5
    f = io.open(tmp, "w+");
8799e5
    count = 0;
8799e5
    for i, p in ipairs(patches) do
8799e5
        f:write(p.."\n");
8799e5
        count = count + 1;
8799e5
    end;
8799e5
    f:close();
8799e5
    print("PATCHCOUNT="..count.."\n")
8799e5
    print("PATCHLIST="..tmp.."\n")
8799e5
}
8799e5
8799e5
git init -q
8799e5
git config user.name rpm-build
8799e5
git config user.email rpm-build
8799e5
git config gc.auto 0
8799e5
git add .
8799e5
git commit -q -a --author 'rpm-build <rpm-build>' \
8799e5
           -m '%{name}-%{version} base'
8799e5
8799e5
COUNT=$(grep '\.patch$' $PATCHLIST | wc -l)
8799e5
if [ $COUNT -ne $PATCHCOUNT ]; then
8799e5
    echo "Found $COUNT patches in $PATCHLIST, expected $PATCHCOUNT"
8799e5
    exit 1
8799e5
fi
8799e5
if [ $COUNT -gt 0 ]; then
8799e5
    xargs git am <$PATCHLIST || exit 1
8799e5
fi
8799e5
echo "Applied $COUNT patches"
8799e5
rm -f $PATCHLIST
8799e5
8799e5
8799e5
%build
8799e5
%if %{qemu_user}
8799e5
%global _qemu_user --qemu-user=%{qemu_user}
8799e5
%endif
8799e5
8799e5
%if %{kvm_packages}
8799e5
%global _kvm_packages --kvm-package-names=%{kvm_packages}
8799e5
%endif
8799e5
8799e5
%if %{preferred_distros}
8799e5
%global _preferred_distros --preferred-distros=%{preferred_distros}
8799e5
%endif
8799e5
8799e5
%if %{libvirt_packages}
8799e5
%global _libvirt_packages --libvirt-package-names=%{libvirt_packages}
8799e5
%endif
8799e5
8799e5
%if %{askpass_package}
8799e5
%global _askpass_package --askpass-package-names=%{askpass_package}
8799e5
%endif
8799e5
8799e5
%if %{stable_defaults}
8799e5
%global _stable_defaults --stable-defaults
8799e5
%endif
8799e5
8799e5
%if %{default_hvs}
8799e5
%global _default_hvs --default-hvs %{default_hvs}
8799e5
%endif
8799e5
8799e5
python setup.py configure \
8799e5
    %{?_qemu_user} \
8799e5
    %{?_kvm_packages} \
8799e5
    %{?_libvirt_packages} \
8799e5
    %{?_askpass_package} \
8799e5
    %{?_preferred_distros} \
8799e5
    %{?_stable_defaults} \
8799e5
    %{?_default_hvs}
8799e5
8799e5
8799e5
%install
8799e5
python setup.py \
8799e5
    --no-update-icon-cache --no-compile-schemas \
8799e5
    install -O1 --root=%{buildroot}
8799e5
%find_lang %{name}
8799e5
8799e5
# Replace '#!/usr/bin/env python2' with '#!/usr/bin/python2'
8799e5
# The format is ideal for upstream, but not a distro. See:
8799e5
# https://fedoraproject.org/wiki/Features/SystemPythonExecutablesUseSystemPython
8799e5
for f in $(find %{buildroot} -type f -executable -print); do
8799e5
    sed -i "1 s|^#!/usr/bin/env python2|#!%{__python2}|" $f || :
8799e5
done
8799e5
8799e5
# The conversion script was only added to virt-manager after several
8799e5
# Fedora cycles of using gsettings. Installing it now could convert old data
8799e5
# and wipe out recent settings.
8799e5
rm %{buildroot}%{_datadir}/GConf/gsettings/org.virt-manager.virt-manager.convert
8799e5
8799e5
8799e5
%post
8799e5
/bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
8799e5
/usr/bin/update-desktop-database &> /dev/null || :
8799e5
8799e5
8799e5
%postun
8799e5
if [ $1 -eq 0 ] ; then
8799e5
    /bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null
8799e5
    /usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
8799e5
    /usr/bin/glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null || :
8799e5
fi
8799e5
/usr/bin/update-desktop-database &> /dev/null || :
8799e5
8799e5
8799e5
%posttrans
8799e5
/usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
8799e5
/usr/bin/glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null || :
8799e5
8799e5
8799e5
%files
8799e5
%doc README.md COPYING NEWS.md
8799e5
%{_bindir}/%{name}
8799e5
8799e5
%{_mandir}/man1/%{name}.1*
8799e5
8799e5
%{_datadir}/%{name}/ui/*.ui
8799e5
%{_datadir}/%{name}/virt-manager
8799e5
%{_datadir}/%{name}/virtManager
8799e5
8799e5
%{_datadir}/%{name}/icons
8799e5
%{_datadir}/icons/hicolor/*/apps/*
8799e5
8799e5
%{_datadir}/appdata/%{name}.appdata.xml
8799e5
%{_datadir}/applications/%{name}.desktop
8799e5
%{_datadir}/glib-2.0/schemas/org.virt-manager.virt-manager.gschema.xml
8799e5
8799e5
8799e5
%files common -f %{name}.lang
8799e5
%dir %{_datadir}/%{name}
8799e5
8799e5
%{_datadir}/%{name}/virtcli
8799e5
%exclude %{_datadir}/%{name}/virtconv
8799e5
%{_datadir}/%{name}/virtinst
8799e5
8799e5
8799e5
%files -n virt-install
8799e5
%{_mandir}/man1/virt-install.1*
8799e5
%{_mandir}/man1/virt-clone.1*
8799e5
%exclude %{_mandir}/man1/virt-convert.1*
8799e5
%{_mandir}/man1/virt-xml.1*
8799e5
8799e5
%{_datadir}/%{name}/virt-install
8799e5
%{_datadir}/%{name}/virt-clone
8799e5
%exclude %{_datadir}/%{name}/virt-convert
8799e5
%{_datadir}/%{name}/virt-xml
8799e5
8799e5
%{_bindir}/virt-install
8799e5
%{_bindir}/virt-clone
8799e5
%exclude %{_bindir}/virt-convert
8799e5
%{_bindir}/virt-xml
8799e5
8799e5
8799e5
%changelog
8799e5
* Mon Dec 18 2017 Pavel Hrdina <phrdina@redhat.com> - 1.4.3-3
8799e5
- delete: undefine only persistent domain (rhbz#1517119)
8799e5
- localization: update Japanese translations (rhbz#1481239)
8799e5
8799e5
* Tue Nov 21 2017 Pavel Hrdina <phrdina@redhat.com> - 1.4.3-2
8799e5
- domain: don't add URI into params for tunneled migration (rhbz#1456185)
8799e5
- diskbackend: convert to long the calculated size (rhbz#1450908)
8799e5
- diskbackend: get a proper size of existing block device while cloning (rhbz#1450908)
8799e5
8799e5
* Wed Sep 20 2017 Pavel Hrdina <phrdina@redhat.com> - 1.4.3-1
8799e5
- Rebased to virt-manager-1.4.3 (rhbz#1472271)
8799e5
- The rebase also fixes the following bugs:
8799e5
    rhbz#1486313, rhbz#1461684, rhbz#1456185, rhbz#1455491, rhbz#1453094
8799e5
    rhbz#1446486, rhbz#1441127, rhbz#1430642
8799e5
8799e5
* Thu Sep 14 2017 Pavel Hrdina <phrdina@redhat.com> - 1.4.2-2
8799e5
- virtinst: connection: Fix error caching new pool (rhbz#1491542)
8799e5
8799e5
* Tue Sep 12 2017 Pavel Hrdina <phrdina@redhat.com> - 1.4.2-1
8799e5
- Rebased to virt-manager-1.4.2 (rhbz#1472271)
8799e5
- The rebase also fixes the following bugs:
8799e5
    rhbz#1457170
8799e5
8799e5
* Thu Jun 08 2017 Pavel Hrdina <phrdina@redhat.com> - 1.4.1-7
8799e5
- virtinst: enable secure feature together with smm for UEFI (rhbz#1387479)
8799e5
8799e5
* Mon Jun 05 2017 Pavel Hrdina <phrdina@redhat.com> - 1.4.1-6
8799e5
- virt-install: add support for SMM feature (rhbz#1387479)
8799e5
- virt-install: add support for loader secure attribute (rhbz#1387479)
8799e5
- virtinst: if required by UEFI enable SMM feature and set q35 machine type (rhbz#1387479)
8799e5
- localization: update Japanese translations (rhbz#1375044)
8799e5
8799e5
* Wed May 24 2017 Pavel Hrdina <phrdina@redhat.com> - 1.4.1-5
8799e5
- Reset Guest.domain to None on domain creation error (rhbz#1441902)
8799e5
- guest: Don't repeatedly overwrite self.domain (rhbz#1441902)
8799e5
- guest: Only use define+start logic for vz (rhbz#1441902)
8799e5
- virtinst.diskbackend: set pool after creating StorageVolume (rhbz#1450311)
8799e5
- virtManager.connection: introduce cb_add_new_pool (rhbz#1435064)
8799e5
8799e5
* Tue May 16 2017 Pavel Hrdina <phrdina@redhat.com> - 1.4.1-4
8799e5
- virtinst.cpu: don't validate "cpus" for NUMA cells (rhbz#1281526)
8799e5
- virtinst: introduce support for <maxMemory> element (rhbz#1281526)
8799e5
- virtinst: add support for memory device (rhbz#1281526)
8799e5
- interface: don't print error for active interface without an IP address (rhbz#1449509)
8799e5
8799e5
* Wed May 03 2017 Pavel Hrdina <phrdina@redhat.com> - 1.4.1-3
8799e5
- cli: Don't double warn when skipping disk size warning (rhbz#1433239)
8799e5
- devicedisk: Raise proper error on invalid source_volume (rhbz#1445198)
8799e5
- sshtunnels: Detect listen type=none for VNC (rhbz#1445714)
8799e5
8799e5
* Thu Apr 20 2017 Pavel Hrdina <phrdina@redhat.com> - 1.4.1-2
8799e5
- graphics: skip authentication only for VNC with listen type none (rhbz#1434551)
8799e5
- storage: Move alloc/cap validation to validate() (rhbz#1433239)
8799e5
- Update italian translation from zanata (rhbz#1435806)
8799e5
- Fix busted italian translation, again (bug 1433800) (rhbz#1435806)
8799e5
- Update some translations (rhbz#1435806)
8799e5
- Fix format errors in it.po and ko.po (rhbz#1435806)
8799e5
8799e5
* Fri Mar 10 2017 Pavel Hrdina <phrdina@redhat.com> - 1.4.1-1
8799e5
- rebased to latest upstream version 1.4.1 (rhbz#1422472)
8799e5
- virtManager.clone: don't generate default clone_path for some storage pools (rhbz#1420190)
8799e5
- virtinst.diskbackend: unify how we get disk type (rhbz#1420187)
8799e5
- virtManager/interface: detect whether IP address comes from DHCP server (rhbz#1410722)
8799e5
- virtManager/viewers: fix connection to remote SPICE with password (rhbz#1401790)
8799e5
- man: virt-install: keymap is valid for spice graphics as well (rhbz#1399091)
8799e5
- virtinst/cli: set default value for disk sparse to "yes" (rhbz#1392990)
8799e5
- virtManager/addhardware: get supported disk bus types from libvirt (rhbz#1387218)
8799e5
- domain: Use libvirt.VIR_DOMAIN_OPEN_GRAPHICS_SKIPAUTH (rhbz#1379581)
8799e5
- virt-manager: don't autostart other connection if --show-* was specified (rhbz#1377244)
8799e5
- ui/snapshots: add a tooltip for refresh button (rhbz#1375452)
8799e5
- virt-install: fix --wait=0 to behave like --noautoconsole (rhbz#1371781)
8799e5
- domain: add support to rename domain with nvram vars file (rhbz#1368922)
8799e5
- man/virt-install: remove -c as short for --connect (rhbz#1366241)
8799e5
- console: set unavailable page while closing details window (rhbz#1365367)
8799e5
- virt-clone: add support to clone nvram VARS (rhbz#1243335)
8799e5
8799e5
* Wed Sep 07 2016 Pavel Hrdina <phrdina@redhat.com> - 1.4.0-2
8799e5
- translation: mark some strings to be translated (rhbz#1271152)
8799e5
- translation: fix usage of translate function (rhbz#1271152)
8799e5
- Add complete translations for supported languages (rhbz#1282276)
8799e5
8799e5
* Mon Jun 20 2016 Pavel Hrdina <phrdina@redhat.com> - 1.4.0-1
8799e5
- rebased to latest upstream version 1.4.0 (rhbz#1296550)
8799e5
- virt-manager: connect with openGraphicsFD (rhbz#1341453)
8799e5
- ui: remove "Restore Saved Machine..." from File menu of Connection Details (rhbz#1340356)
8799e5
- virt-install: add a new guest feature GIC for ARM guests (rhbz#1334857)
8799e5
- virt-manager: fix --show-domain-creator to not depend on manager window (rhbz#1331707)
8799e5
- man: virt-manager: properly indent --spice-disable-auto-usbredir (rhbz#1331633)
8799e5
- virtinst: add virtio device model and accel3d attribute (rhbz#1326589)
8799e5
- addhardware: don't remove QXL if VNC graphics are configured (rhbz#1326544)
8799e5
- urlfetcher: Fix rawhide URL detection (rhbz#1321719)
8799e5
- virt-install: concatenate all extra-args argument (rhbz#1315941)
8799e5
- create: report an error if storage doesn't exists for import installation (rhbz#1305210)
8799e5
- console: fix checkbox to save password if it was loaded from keyring (rhbz#1302175)
8799e5
- connection: fix detection that libvirtd is stopped (rhbz#1297303)
8799e5
- localization: mark several strings as translatable (rhbz#1271152)
8799e5
- create: skip continue-install restart if user destroys VM (rhbz#1235238)
8799e5
- cli: add --graphics listen=socket support (rhbz#1044570)
8799e5
8799e5
* Thu Apr 07 2016 Pavel Hrdina <phrdina@redhat.com> - 1.3.2-1
8799e5
- rebased to latest upstream version 1.3.2 (rhbz#1296550)
8799e5
- create: Drop explicit kickstart UI (rhbz#1086577)
8799e5
- virt-manager: revive cli dbus API (rhbz#1162815)
8799e5
- cli: Have '--input tablet' default to bus=usb (rhbz#1232087)
8799e5
- storage: Fix updating UI when volume deleted (rhbz#1233531)
8799e5
- ui: improve pause/resume tooltip (rhbz#1238618)
8799e5
- virt-install: don't report missing console in extra-args for ppc64 (rhbz#1247434)
8799e5
- details: Use devicedisk path lookup for source_pool (rhbz#1257469)
8799e5
- virtinst.connection: detect RHEL system also for session connection (rhbz#1258691)
8799e5
- man: virt-install: fix a typo in examples (rhbz#1263900)
8799e5
- virt-install: report warning for cpuset=auto on non-NUMA host (rhbz#1263903)
8799e5
- virt-install: always enable pae for xen hvm 64bit guest (rhbz#1267160)
8799e5
- urlfetcher: Recognize RHEL Atomic Host ISOs (rhbz#1268001)
8799e5
- storage: remove attempt counter from disk allocation thread (rhbz#1270277)
8799e5
- virt-install: use correct path for linux and initrd for SLES on ppc64 (rhbz#1270430)
8799e5
- virt-clone: remove socket path for unix channel (rhbz#1270696)
8799e5
- man: fix cdrom section in virt-install man (rhbz#1290314)
8799e5
8799e5
* Wed Sep 30 2015 Pavel Hrdina <phrdina@redhat.com> - 1.2.1-8
8799e5
- Localization: fix some wrong translations (rhbz#1228094)
8799e5
8799e5
* Tue Sep 22 2015 Pavel Hrdina <phrdina@redhat.com> - 1.2.1-7
8799e5
- Add complete translations for supported languages (rhbz#1228094)
8799e5
8799e5
* Wed Aug 19 2015 Pavel Hrdina <phrdina@redhat.com> - 1.2.1-6
8799e5
- addhardware: Fix USB host device listing (rhbz#1254115)
8799e5
8799e5
* Tue Aug 11 2015 Pavel Hrdina <phrdina@redhat.com> - 1.2.1-5
8799e5
- details: don't display error if machine is missing in XML (rhbz#1238981)
8799e5
- hostdev: add an address element for USB host devs if necessary (rhbz#1230611)
8799e5
- virtinst: fix two undefined variable warnings (rhbz#1230611)
8799e5
- Revert "create: customize: Hide bus=virtio-scsi" (rhbz#1206097)
8799e5
- scsi-storage: unify SCSI storage code and logic (rhbz#1206097)
8799e5
- virt-install: report an error for pxe install without network (rhbz#1250382)
8799e5
- addstorage: remove _check_ideal_path (rhbz#1232599)
8799e5
8799e5
* Wed Jul 22 2015 Pavel Hrdina <phrdina@redhat.com> - 1.2.1-4
8799e5
- virtManager/create: update capsinfo sooner in set_conn_state (rhbz#1244566)
8799e5
- support: enable hv_time since qemu-kvm 1.5.3 from RHEL (rhbz#1083537)
8799e5
8799e5
* Fri Jul 17 2015 Pavel Hrdina <phrdina@redhat.com> - 1.2.1-3
8799e5
- Fix adding iscsi pools (bz 1231558) (rhbz#1235987)
8799e5
- virt-xml: refactor the handling of --define and --update (rhbz#1192875)
8799e5
- virtinst.cpu: fix copy host cpu definition (rhbz#1240938)
8799e5
- refactor detection of guest type capabilities (rhbz#1215692)
8799e5
- capabilities: detect ACPI and APIC capabilites properly (rhbz#1215692)
8799e5
- virtinst.support: enable hv_time support since qemu-kvm (rhbz#1083537)
8799e5
8799e5
* Mon Jun 22 2015 Pavel Hrdina <phrdina@redhat.com> - 1.2.1-2
8799e5
- spec: fix rpm's to contain virt-xml - rebase related (rhbz#1197254)
8799e5
8799e5
* Mon Jun 22 2015 Pavel Hrdina <phrdina@redhat.com> - 1.2.1-1
8799e5
- rebased to latest upstream version 1.2.1 (rhbz#1197254)
8799e5
- clone: do not use a '/' separator when using a disk file under / (rhbz#1210564)
8799e5
- spec: we don't need to depend on qemu-kvm (rhbz#1046651)
8799e5
- doc: make --sparse documentation in man page consistent (rhbz#1210572)
8799e5
8799e5
* Tue May 26 2015 Pavel Hrdina <phrdina@redhat.com> - 1.2.0-4
8799e5
- man: virt-xml: Fix example (rhbz#1222983)
8799e5
- create: verify HYPER-V support after customization (rhbz#1185253)
8799e5
8799e5
* Fri May 15 2015 Giuseppe Scrivano <gscrivan@redhat.com> - 1.2.0-3
8799e5
- Fix --show-host-summary (rhbz#1220322)
8799e5
- Fix listing of VMs on hosts with old libvirt (rhbz#1219629)
8799e5
- Fix delete of VMs which have disks with type volume (rhbz#1219427)
8799e5
- Fix USB Redirection type shortcut key (rhbz#1172108)
8799e5
- Show correctly the start mode for running network interfaces (rhbz#1154480)
8799e5
8799e5
* Thu May 7 2015 Giuseppe Scrivano <gscrivan@redhat.com> - 1.2.0-2
8799e5
- Fix exception when the address is not an IP (rhbz#1219023)
8799e5
8799e5
* Wed May 6 2015 Giuseppe Scrivano <gscrivan@redhat.com> - 1.2.0-1
8799e5
- Allow to clone guest with custom path via virt-manager (rhbz#1183495)
8799e5
- Allow to open guest console after input incorrect passwd (rhbz#1165990)
8799e5
- virt-manager shows correctly the domain processor page (rhbz#1167600)
8799e5
- Shortcut keys on hardware page take effect (rhbz#1172108)
8799e5
- virt-clone can clone guest with disk type volume (rhbz#1177099)
8799e5
- virt-manager can create a new guest on a remote xen host (rhbz#1177113)
8799e5
- virt-manager can show the right state of guest on a remote XEN server (rhbz#1177207)
8799e5
- virt-manager does not show the new added hot-plug devices immediately (rhbz#1179138)
8799e5
- Can create Ubuntu guest on rhel7 host (rhbz#1179652)
8799e5
- Fixed misleading "restart your domain" message (rhbz#1180559)
8799e5
- Windows 2008 R2 or Win7 SP1 smp guest booting hang with hv_t (rhbz#1185253)
8799e5
- Fixed wrong boot options example in virt-xml manual (rhbz#1192768)
8799e5
- Fixed virt-install rpm missing dependency on pygobject3-base (rhbz#1195860)
8799e5
- Possibility to use persistent reservation on FC disks created via KVM (rhbz#1200356)
8799e5
- virt-install: auto-add usb controller(s) for usbredir (rhbz#1204895)
8799e5
- Using virt-clone on a qcow2 image doesn't behave differently (rhbz#1207729)
8799e5
- The progress bar shows correctly when set output disk under /root (rhbz#1210265)
8799e5
- virt-clone deals correctly with --file path under / (rhbz#1210564)
8799e5
- Make manual doc and error message similar about 'sparse' usage (rhbz#1210572)
8799e5
- Handle virt-rhelsaX.Y machine types (rhbz#1212021)
8799e5
- Do not keep showing error message after first failed attempt to add a device (rhbz#1213202)
8799e5
- Show the serial console when no graphical screen is configured (rhbz#1213911)
8799e5
- Better support for Ipv6 addresses (rhbz#1217302)
8799e5
- Use the VM name to name disks (rhbz#1218278)
8799e5
- aarch64 support (rhbz#1197254)
8799e5
8799e5
* Tue May 5 2015 Giuseppe Scrivano <gscrivan@redhat.com> - 1.1.0-14
8799e5
- Allow to clone guest with custom path via virt-manager (rhbz#1183495)
8799e5
- Allow to open guest console after input incorrect passwd (rhbz#1165990)
8799e5
- virt-manager shows correctly the domain processor page (rhbz#1167600)
8799e5
- Shortcut keys on hardware page take effect (rhbz#1172108)
8799e5
- virt-clone can clone guest with disk type volume (rhbz#1177099)
8799e5
- virt-manager can create a new guest on a remote xen host (rhbz#1177113)
8799e5
- virt-manager can show the right state of guest on a remot (rhbz#1177207)
8799e5
- virt-manager does not show the new added hot-plug devices immediately (rhbz#1179138)
8799e5
- Can create Ubuntu guest on rhel7 host (rhbz#1179652)
8799e5
- Fixed misleading "restart your domain" message (rhbz#1180559)
8799e5
- Windows 2008 R2 or Win7 SP1 smp guest booting hang with hv_t (rhbz#1185253)
8799e5
- Fixed wrong boot options example in virt-xml manual (rhbz#1192768)
8799e5
- Fixed virt-install rpm missing dependency on pygobject3-base (rhbz#1195860)
8799e5
- Possibility to use persistent reservation on FC disks created via KVM (rhbz#1200356)
8799e5
- virt-install: auto-add usb controller(s) for usbredir (rhbz#1204895)
8799e5
- Using virt-clone on a qcow2 image doesn't behave differently (rhbz#1207729)
8799e5
- The progress bar shows correctly when set output disk under /root (rhbz#1210265)
8799e5
- virt-clone deals correctly with --file path under / (rhbz#1210564)
8799e5
- Make manual doc and error message similar about 'sparse' usage (rhbz#1210572)
8799e5
- Handle virt-rhelsaX.Y machine types (rhbz#1212021)
8799e5
- Do not keep showing error message after first failed attempt to add a device (rhbz#1213202)
8799e5
- Show the serial console when no graphical screen is configured (rhbz#1213911)
8799e5
- Better support for Ipv6 addresses (rhbz#1217302)
8799e5
- Use the VM name to name disks (rhbz#1218278)
8799e5
- aarch64 support (rhbz#1197254)
8799e5
8799e5
* Sun May 3 2015 Giuseppe Scrivano <gscrivan@redhat.com> - 1.1.0-13
8799e5
- PPC64LE support (rhbz#1209844)
8799e5
8799e5
* Sat Jan 10 2015 Giuseppe Scrivano <gscrivan@redhat.com> - 1.1.0-12
8799e5
- Enable inspection only if the add_libvirt_dom function is present (rhbz#1138203)
8799e5
8799e5
* Fri Jan 9 2015 Giuseppe Scrivano <gscrivan@redhat.com> - 1.1.0-11
8799e5
- Limit number of default usb redirdevs to 2 (rhbz#1175447)
8799e5
8799e5
* Tue Dec 9 2014 Giuseppe Scrivano <gscrivan@redhat.com> - 1.1.0-10
8799e5
- Fix add bridge (rhbz#1172028)
8799e5
8799e5
* Tue Dec 2 2014 Giuseppe Scrivano <gscrivan@redhat.com> - 1.1.0-9
8799e5
- Fix video model switch (rhbz#1169295)
8799e5
8799e5
* Fri Nov 21 2014 Giuseppe Scrivano <gscrivan@redhat.com> - 1.1.0-8
8799e5
- Display correctly IPv6 addresses (rhbz#1094631)
8799e5
8799e5
* Tue Nov 18 2014 Giuseppe Scrivano <gscrivan@redhat.com> - 1.1.0-7
8799e5
- Install virt-xml (rhbz#1159401)
8799e5
- Quit immediately if the wrong id is passed to -show* functions (rhbz#1164691)
8799e5
- Add virtio26 alias to --os-variant (rhbz#1162800)
8799e5
- do not show MAC address when not set (rhbz#1164123)
8799e5
8799e5
* Mon Nov 10 2014 Giuseppe Scrivano <gscrivan@redhat.com> - 1.1.0-6
8799e5
- Add dependency on libosinfo to virt-manager-common (rhbz#1159401)
8799e5
8799e5
* Fri Oct 31 2014 Giuseppe Scrivano <gscrivan@redhat.com> - 1.1.0-5
8799e5
- Fix delete for disk type='volume'. (rhbz#1146869)
8799e5
- Handle correctly a SPICE auth error. (rhbz#1152981)
8799e5
8799e5
* Wed Oct 08 2014 Giuseppe Scrivano <gscrivan@redhat.com> - 1.1.0-4
8799e5
- show disk info for guest with disk type volume (rhbz#1146869)
8799e5
- depend on dconf and dbus-x11 (rhbz#1146982)
8799e5
- OVMF support (rhbz#1111986)
8799e5
- depend on gnome-icon-theme (rhbz#1146612)
8799e5
8799e5
* Tue Sep 23 2014 Giuseppe Scrivano <gscrivan@redhat.com> - 1.1.0-3
8799e5
- Improve UI responsiveness on a high latency connection (rhbz#607735)
8799e5
8799e5
* Tue Sep 16 2014 Giuseppe Scrivano <gscrivan@redhat.com> - 1.1.0-2
8799e5
- Use libosinfo for improved OS metadata (rhbz#1055588)
8799e5
- Add "ich9-intel-hda" to the sound device list (rhbz#1140937)
8799e5
8799e5
* Mon Sep 08 2014 Giuseppe Scrivano <gscrivan@redhat.com> - 1.1.0-1
8799e5
- Rebase to 1.1.0 (bz #1055588)
8799e5
- The rebase also fixes these bugs:
8799e5
    rhbz#1138190, rhbz#1130105, rhbz#1130077, rhbz#1122059,
8799e5
    rhbz#1098040, rhbz#1093762, rhbz#1092786, rhbz#1091666,
8799e5
    rhbz#1091331, rhbz#1087689, rhbz#1083461, rhbz#1048054,
8799e5
    rhbz#1047875, rhbz#1047874, rhbz#1047725, rhbz#1027576,
8799e5
    rhbz#948525, rhbz#607735
8799e5
8799e5
* Mon Mar 24 2014 Giuseppe Scrivano <gscrivan@redhat.com> - 0.10.0-20
8799e5
- Remove CD/DVDROM example from the documentation (bz #1072610)
8799e5
8799e5
* Thu Mar 20 2014 Giuseppe Scrivano <gscrivan@redhat.com> - 0.10.0-19
8799e5
- Not propose to install from CD/DVD in RHEL7 (bz #1072610)
8799e5
- Disable add filesystem passthrough for RHEL7 qemu (bz #1077172)
8799e5
8799e5
* Fri Feb 28 2014 Giuseppe Scrivano <gscrivan@redhat.com> - 0.10.0-18
8799e5
- Fix virtio-scsi disk addressing (bz #1036716)
8799e5
8799e5
* Thu Feb 20 2014 Giuseppe Scrivano <gscrivan@redhat.com> - 0.10.0-17
8799e5
- files: drop virt-image and virt-convert (bz #1061913)
8799e5
8799e5
* Mon Feb 10 2014 Giuseppe Scrivano <gscrivan@redhat.com> - 0.10.0-16
8799e5
- doc: reintroduce --force in man pages (bz #1060571)
8799e5
8799e5
* Fri Feb 07 2014 Giuseppe Scrivano <gscrivan@redhat.com> - 0.10.0-15
8799e5
- cli: drop --prompt from --help output (bz #1060571)
8799e5
8799e5
* Wed Feb 05 2014 Giuseppe Scrivano <gscrivan@redhat.com> - 0.10.0-14
8799e5
- inhibit --prompt for cli tools (bz #1060571)
8799e5
- Don't use SCSI or USB disks with stable_defaults (bz #1058808)
8799e5
8799e5
* Wed Jan 22 2014 Giuseppe Scrivano <gscrivan@redhat.com> - 0.10.0-13
8799e5
- include proper patch for "Rename hide_unsupported_rhel_options to stable_defaults and clean-up its usage" (bz #908616)
8799e5
8799e5
* Tue Jan 21 2014 Giuseppe Scrivano <gscrivan@redhat.com> - 0.10.0-12
8799e5
- update translations (bz #1030385)
8799e5
- Rename hide_unsupported_rhel_options to stable_defaults and clean-up its usage (bz #908616)
8799e5
- osdict: Mark RHEL 7 as supported (bz #1053074)
8799e5
8799e5
* Wed Jan 15 2014 Giuseppe Scrivano <gscrivan@redhat.com> - 0.10.0-11
8799e5
- doc: state correctly the number of possible values for --network= (bz #1049041)
8799e5
8799e5
* Fri Jan 10 2014 Martin Kletzander <mkletzan@redhat.com> - 0.10.0-10
8799e5
- addhw: Fix FS UI for non-qemu (bz #1039829)
8799e5
- virt-manager: vmmCreateVolume uses the correct connection (bz #1043150)
8799e5
- virt-manager: use DISPLAY in the error message only when it is set (bz #1038496)
8799e5
- virt-install: Support --network source, source_mode, target (bz #1049041)
8799e5
8799e5
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 0.10.0-9
8799e5
- Mass rebuild 2013-12-27
8799e5
8799e5
* Mon Dec 09 2013 Martin Kletzander <mkletzan@redhat.com> - 0.10.0-8
8799e5
- capabilities: correctly parse "cpus" in the host NUMA topology (bz #1032320)
8799e5
- console: Fix console_active() logic (bz #947020)
8799e5
- virt-manager: Yet more fixes for DISPLAY unset error (bz #1038496)
8799e5
8799e5
* Fri Nov 08 2013 Martin Kletzander <mkletzan@redhat.com> - 0.10.0-7
8799e5
- Add file with the patch for rhbz#1021789
8799e5
8799e5
* Thu Nov 07 2013 Martin Kletzander <mkletzan@redhat.com> - 0.10.0-6
8799e5
- LVM: Show warning when allocation==0 and allocation != capacity (bz #1021789)
8799e5
8799e5
* Wed Oct 30 2013 Martin Kletzander <mkletzan@redhat.com> - 0.10.0-5
8799e5
- virtinst: allow EGD RNG devices to have both bind and connect sources (bz #1001773)
8799e5
- virt-install: EGD RNG devs need a host to connect to if backend_mode=bind (bz #1001773)
8799e5
- virt-manager: fix adding EGD RNG devices in UDP mode (bz #1001773)
8799e5
- virt-manager: show correctly EGD RNG devices information (bz #1001773)
8799e5
8799e5
* Thu Oct 10 2013 Martin Kletzander <mkletzan@redhat.com> - 0.10.0-4
8799e5
- Add support for multifunction address parameter (bz #956700)
8799e5
- Automatically add multifunction address parameter when needed (bz #956700)
8799e5
- Fix addresses in manual (bz #956700)
8799e5
- Fix automatic search for multifunction parameter (bz #956700)
8799e5
- virtinst: add support for virtio-rng devices (bz #1001773)
8799e5
- virt-install: add support for virtio-rng devices (bz #1001773)
8799e5
- virtManager: add GUI elements for showing RNG devices (bz #1001773)
8799e5
- virtManager: add GUI elements for adding a RNG device (bz #1001773)
8799e5
- virt-install: accept a single argument form for RNG devices (bz #1001773)
8799e5
- cli: rng devices accepts options also when the short form is used (bz #1001773)
8799e5
- tests: move the storage pool under /dev (bz #1014338)
8799e5
- Fix tests on f20, /dev/loop0 isn't available (bz #1014338)
8799e5
8799e5
* Mon Sep 02 2013 Martin Kletzander <mkletzan@redhat.com> - 0.10.0-3
8799e5
- Fix UUID generation according to RFC 4122 (bz #963161)
8799e5
- Handle storage formats properly (bz #907289)
8799e5
- virt-manager: do not delete tabs while destroying the details window (bz #985291)
8799e5
- change virt-manager option spice-disable-usbredir to spice-disable-auto-usbredir (bz #923567)
8799e5
8799e5
* Fri Aug 09 2013 Martin Kletzander <mkletzan@redhat.com> - 0.10.0-2
8799e5
- virt-install: Make default graphics configurable (bz #912615)
8799e5
- Use proper disk targets (bz #968878)
8799e5
- inspection: Check can_set_row_none before setting icon to None (bz #979979)
8799e5
- virt-manager: Fix self.config (bz #907289)
8799e5
- add new "spice-disable-usbredir" option to disable autoredir feature (bz #923567)
8799e5
- error: use helper function to embed customized widget into dialog (bz #923567)
8799e5
- details: Add auto USB redirection support in console viewer (bz #923567)
8799e5
8799e5
* Wed Jun 19 2013 Cole Robinson <crobinso@redhat.com> - 0.10.0-1
8799e5
- Rebased to version 0.10.0
8799e5
- Fix screenshots (bz #969410)
8799e5
- Add Fedora 19 osdict option (bz #950230)
8799e5
- Fix loading libguestfs OS icons (bz #905238)
8799e5
- Make packagekit search cancellable (bz #973777)
8799e5
- Fix freeze on guest shutdown if serial console connected (bz #967968)
8799e5
8799e5
* Mon May 27 2013 Cole Robinson <crobinso@redhat.com> - 0.10.0-0.5.gitde1695b2
8799e5
- Fix default graphics, should be spice+qxl (bz #965864)
8799e5
- Check for libvirt default network package on first run (bz #950329)
8799e5
- Fix changing VM cirrus->QXL (bz #928882)
8799e5
8799e5
* Wed May 15 2013 Cole Robinson <crobinso@redhat.com> - 0.10.0-0.4.gitb68faac8
8799e5
- Drop bogus packagekit check for avahi-tools (bz #963472)
8799e5
8799e5
* Wed May 15 2013 Cole Robinson <crobinso@redhat.com> - 0.10.0-0.3.gitb68faac8
8799e5
- Fix error creating QEMU guests (bz #962569)
8799e5
8799e5
* Thu May 09 2013 Cole Robinson <crobinso@redhat.com> - 0.10.0-0.2.gitb68faac8
8799e5
- Fix dep on vte3 (bz #958945)
8799e5
- Fix dep on virt-manager-common (bz #958730)
8799e5
- Fix crash when installing from ISO media (bz #958641)
8799e5
- Fix poor error reporting with unknown CLI option (bz #958730)
8799e5
8799e5
* Mon Apr 29 2013 Cole Robinson <crobinso@redhat.com> - 0.10.0-0.1.gitd3f9bc8e
8799e5
- Update to git snapshot for next release
8799e5
8799e5
* Mon Apr 01 2013 Cole Robinson <crobinso@redhat.com> - 0.9.5-1
8799e5
- Rebased to version 0.9.5
8799e5
- Enable adding virtio-scsi disks (Chen Hanxiao) (bz 887584)
8799e5
- Support security auto-relabel setting (Martin Kletzander)
8799e5
- Support disk iotune settings (David Shane Holden)
8799e5
- Support 'reset' as a reboot option (John Doyle)
8799e5
- Don't pull in non-native qemu packages on first run (bz 924469)
8799e5
- Don't create LVM volumes with alloc=0, it doesn't work (bz 872162)
8799e5
- Fix storage browser hang on KDE (bz 880781)
8799e5
- Fix package installation on KDE (bz 882024)
8799e5
8799e5
* Fri Mar 01 2013 Cole Robinson <crobinso@redhat.com> - 0.9.4-5
8799e5
- Add explicit dep on pod2man (bz #914562)
8799e5
8799e5
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.4-4.1
8799e5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
8799e5
8799e5
* Mon Dec 17 2012 Cole Robinson <crobinso@redhat.com> - 0.9.4-4
8799e5
- Use correct KVM package names on first run (bz #873878)
8799e5
- network: fix parsing ip blocks with prefix= (bz #872814)
8799e5
- Don't recommend all of libvirt, just the kvm bits (bz #872246)
8799e5
8799e5
* Tue Oct 30 2012 Cole Robinson <crobinso@redhat.com> - 0.9.4-3
8799e5
- Fix first run packagekit interaction (bz #870851)
8799e5
- Fix another backtrace if guest is pmsuspended (bz #871237)
8799e5
8799e5
* Wed Oct 24 2012 Cole Robinson <crobinso@redhat.com> - 0.9.4-2
8799e5
- Fix KVM package install on app first run
8799e5
- Fix listing domain with 'suspended' state (bz #850954)
8799e5
- Fix 'browse local' behavior when choosing directory (bz #855335)
8799e5
- Fix libgnome-keyring dep (bz #811921)
8799e5
8799e5
* Sun Jul 29 2012 Cole Robinson <crobinso@redhat.com> - 0.9.4-1
8799e5
- Rebased to version 0.9.4
8799e5
- Fix VNC keygrab issues (bz 840240)
8799e5
8799e5
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.3-1.1
8799e5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
8799e5
8799e5
* Mon Jul 09 2012 Cole Robinson <crobinso@redhat.com> - 0.9.3-1
8799e5
- Rebased to version 0.9.3
8799e5
- Convert to gtkbuilder: UI can now be editted with modern glade tool
8799e5
- virt-manager no longer runs on RHEL5, but can manage a remote RHEL5
8799e5
  host
8799e5
- Option to configure spapr net and disk devices for pseries (Li Zhang)
8799e5
- Offer to install openssh-askpass if we need it (bz 754484)
8799e5
- Don't leave defunct SSH processes around (bz 757892)
8799e5
- Offer to start libvirtd after install (bz 791152)
8799e5
- Fix crash when deleting storage volumes (bz 805950)
8799e5
- Show serial device PTY path again (bz 811760)
8799e5
- Fix possible crash when rebooting fails (bz 813119)
8799e5
- Offer to discard state if restore fails (bz 837236)
8799e5
8799e5
* Wed Jun 06 2012 Cole Robinson <crobinso@redhat.com> - 0.9.1-4
8799e5
- Fix connecting to console with specific listen address
8799e5
- Fix regression that dropped spice dependency (bz 819270)
8799e5
8799e5
* Wed Apr 25 2012 Cole Robinson <crobinso@redhat.com> - 0.9.1-3
8799e5
- Actually make spice the default (bz 757874)
8799e5
- Only depend on spice on arch it is available (bz 811030)
8799e5
- Depend on libgnome-keyring (bz 811921)
8799e5
8799e5
* Mon Feb 13 2012 Cole Robinson <crobinso@redhat.com> - 0.9.1-2
8799e5
- Fix error reporting for failed remote connections (bz 787011)
8799e5
- Fix setting window title when VNC mouse is grabbed (bz 788443)
8799e5
- Advertise VDI format in disk details (bz 761300)
8799e5
- Don't let an unavailable host hang the app (bz 766769)
8799e5
- Don't overwrite existing create dialog when reshowing (bz 754152)
8799e5
- Improve tooltip for 'force console shortcuts' (bz 788448)
8799e5
8799e5
* Wed Feb 01 2012 Cole Robinson <crobinso@redhat.com> - 0.9.1-1
8799e5
- Rebased to version 0.9.1
8799e5
- Support for adding usb redirection devices (Marc-André Lureau)
8799e5
- Option to switch usb controller to support usb2.0 (Marc-André Lureau)
8799e5
- Option to specify machine type for non-x86 guests (Li Zhang)
8799e5
- Support for filesystem device type and write policy (Deepak C Shetty)
8799e5
- Many bug fixes!
8799e5
8799e5
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.0-8.1
8799e5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
8799e5
8799e5
* Fri Oct 28 2011 Cole Robinson <crobinso@redhat.com> - 0.9.0-8
8799e5
- Fix crashes when deleting a VM (bz 749263)
8799e5
8799e5
* Tue Sep 27 2011 Cole Robinson <crobinso@redhat.com> - 0.9.0-7
8799e5
- Fix 'Resize to VM' graphical option (bz 738806)
8799e5
- Fix deleting guest with managed save data
8799e5
- Fix error when adding default storage
8799e5
- Don't flush XML cache on every tick
8799e5
- Use labels for non-editable network info fields (bz 738751)
8799e5
- Properly update icon cache (bz 733836)
8799e5
8799e5
* Tue Aug 02 2011 Cole Robinson <crobinso@redhat.com> - 0.9.0-6
8799e5
- Fix python-newt_syrup dep
8799e5
8799e5
* Mon Aug 01 2011 Cole Robinson <crobinso@redhat.com> - 0.9.0-5
8799e5
- Don't have a hard dep on libguestfs (bz 726364)
8799e5
- Depend on needed python-newt_syrup version
8799e5
8799e5
* Thu Jul 28 2011 Cole Robinson <crobinso@redhat.com> - 0.9.0-4
8799e5
- Fix typo that broke net stats reporting
8799e5
8799e5
* Wed Jul 27 2011 Cole Robinson <crobinso@redhat.com> - 0.9.0-3
8799e5
- Add BuildRequires: GConf2 to fix pre scriplet error
8799e5
8799e5
* Tue Jul 26 2011 Cole Robinson <crobinso@redhat.com> - 0.9.0-2
8799e5
- Fix virtinst dep
8799e5
8799e5
* Tue Jul 26 2011 Cole Robinson <crobinso@redhat.com> - 0.9.0-1.fc17
8799e5
- Rebased to version 0.9.0
8799e5
- Use a hiding toolbar for fullscreen mode
8799e5
- Use libguestfs to show guest packagelist and more (Richard W.M. Jones)
8799e5
- Basic 'New VM' wizard support for LXC guests
8799e5
- Remote serial console access (with latest libvirt)
8799e5
- Remote URL guest installs (with latest libvirt)
8799e5
- Add Hardware: Support <filesystem> devices
8799e5
- Add Hardware: Support <smartcard> devices (Marc-André Lureau)
8799e5
- Enable direct interface selection for qemu/kvm (Gerhard Stenzel)
8799e5
- Allow viewing and changing disk serial number
8799e5
8799e5
* Thu Apr 28 2011 Cole Robinson <crobinso@redhat.com> - 0.8.7-5.fc16
8799e5
- Stop netcf errors from flooding logs (bz 676920)
8799e5
- Bump default mem for new guests to 1GB so F15 installs work (bz
8799e5
  700480)
8799e5
8799e5
* Tue Apr 19 2011 Cole Robinson <crobinso@redhat.com> - 0.8.7-4.fc16
8799e5
- Fix spice RPM dependency (bz 697729)
8799e5
8799e5
* Thu Apr 07 2011 Cole Robinson <crobinso@redhat.com> - 0.8.7-3.fc16
8799e5
- Fix broken cs.po which crashed gettext
8799e5
- Fix offline attach fallback if hotplug fails
8799e5
- Offer to attach spicevmc if switching to spice
8799e5
8799e5
* Thu Mar 31 2011 Cole Robinson <crobinso@redhat.com> - 0.8.7-2.fc16
8799e5
- Fix using spice as default graphics type
8799e5
- Fix lockup as non-root (bz 692570)
8799e5
8799e5
* Mon Mar 28 2011 Cole Robinson <crobinso@redhat.com> - 0.8.7-1.fc16
8799e5
- Rebased to version 0.8.7
8799e5
- Allow renaming an offline VM
8799e5
- Spice password support (Marc-André Lureau)
8799e5
- Allow editting NIC <virtualport> settings (Gerhard Stenzel)
8799e5
- Allow enabling/disabling individual CPU features
8799e5
- Allow easily changing graphics type between VNC/SPICE for existing VM
8799e5
- Allow easily changing network source device for existing VM
8799e5
8799e5
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.6-2
8799e5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
8799e5
8799e5
* Wed Feb  2 2011 Cole Robinson <crobinso@redhat.com> - 0.8.6-1.fc15
8799e5
- Update to 0.8.6
8799e5
- SPICE support (requires spice-gtk) (Marc-André Lureau)
8799e5
- Option to configure CPU model
8799e5
- Option to configure CPU topology
8799e5
- Save and migration cancellation (Wen Congyang)
8799e5
- Save and migration progress reporting
8799e5
- Option to enable bios boot menu
8799e5
- Option to configure direct kernel/initrd boot
8799e5
8799e5
* Wed Aug 25 2010 Cole Robinson <crobinso@redhat.com> - 0.8.5-1.fc15
8799e5
- Update to 0.8.5
8799e5
- Improved save/restore support
8799e5
- Option to view and change disk cache mode
8799e5
- Configurable VNC keygrab sequence (Michal Novotny)
8799e5
8799e5
* Mon Aug  2 2010 David Malcolm <dmalcolm@redhat.com> - 0.8.4-3.fc15
8799e5
- fix python 2.7 incompatibility (bz 620216)
8799e5
8799e5
* Thu May 27 2010 Cole Robinson <crobinso@redhat.com> - 0.8.4-2.fc14
8799e5
- Only close connection on specific remote errors
8799e5
- Fix weird border in manager UI (bz 583728)
8799e5
- Fix broken icons
8799e5
- Cancel post-install reboot if VM is forced off
8799e5
- Fix traceback if customizing a livecd install (bz 583712)
8799e5
- Add pool refresh button
8799e5
- Properly autodetect VNC keymap (bz 586201)
8799e5
- Fix traceback when reconnecting to remote VNC console (bz 588254)
8799e5
- Fix remote VNC connection with zsh as default shell
8799e5
8799e5
* Wed Mar 24 2010 Cole Robinson <crobinso@redhat.com> - 0.8.4-1.fc14
8799e5
- Update to version 0.8.4
8799e5
- 'Import' install option, to create a VM around an existing OS image
8799e5
- Support multiple boot devices and boot order
8799e5
- Watchdog device support
8799e5
- Enable setting a human readable VM description.
8799e5
- Option to manually specifying a bridge name, if bridge isn't detected
8799e5
8799e5
* Mon Mar 22 2010 Cole Robinson <crobinso@redhat.com> - 0.8.3-2.fc14
8799e5
- Fix using a manual 'default' pool (bz 557020)
8799e5
- Don't force grab focus when app is run (bz 548430)
8799e5
- Check packagekit for KVM and libvirtd (bz 513494)
8799e5
- Fake a reboot implementation if libvirt doesn't support it (bz 532216)
8799e5
- Mark some strings as translatable (bz 572645)
8799e5
8799e5
* Mon Feb  8 2010 Cole Robinson <crobinso@redhat.com> - 0.8.3-1.fc13
8799e5
- Update to 0.8.3 release
8799e5
- Manage network interfaces: start, stop, view, provision bridges, bonds, etc.
8799e5
- Option to 'customize VM before install'.
8799e5
8799e5
* Tue Jan 12 2010 Cole Robinson <crobinso@redhat.com> - 0.8.2-2.fc13
8799e5
- Build with actual upstream tarball (not manually built dist)
8799e5
8799e5
* Mon Dec 14 2009 Cole Robinson <crobinso@redhat.com> - 0.8.2-1.fc13
8799e5
- Update to 0.8.2 release
8799e5
- Fix first virt-manager run on a new install
8799e5
- Enable floppy media eject/connect
8799e5
8799e5
* Wed Dec 09 2009 Cole Robinson <crobinso@redhat.com> - 0.8.1-3.fc13
8799e5
- Select manager row on right click, regressed with 0.8.1
8799e5
8799e5
* Sat Dec  5 2009 Cole Robinson <crobinso@redhat.com> - 0.8.1-2.fc13
8799e5
- Set proper version Requires: for python-virtinst
8799e5
8799e5
* Thu Dec  3 2009 Cole Robinson <crobinso@redhat.com> - 0.8.1-1.fc13
8799e5
- Update to release 0.8.1
8799e5
- VM Migration wizard, exposing various migration options
8799e5
- Enumerate CDROM and bridge devices on remote connections
8799e5
- Support storage pool source enumeration for LVM, NFS, and SCSI
8799e5
8799e5
* Mon Oct 05 2009 Cole Robinson <crobinso@redhat.com> - 0.8.0-8.fc13
8799e5
- Don't allow creating a volume without a name (bz 526111)
8799e5
- Don't allow volume allocation > capacity (bz 526077)
8799e5
- Add tooltips for toolbar buttons (bz 524083)
8799e5
8799e5
* Mon Oct 05 2009 Cole Robinson <crobinso@redhat.com> - 0.8.0-7.fc13
8799e5
- More translations (bz 493795)
8799e5
8799e5
* Tue Sep 29 2009 Cole Robinson <crobinso@redhat.com> - 0.8.0-6.fc13
8799e5
- Fix VCPU hotplug
8799e5
- Remove access to outdated docs (bz 522823, bz 524805)
8799e5
- Update VM state text in manager view (bz 526182)
8799e5
- Update translations (bz 493795)
8799e5
8799e5
* Thu Sep 24 2009 Cole Robinson <crobinso@redhat.com> - 0.8.0-5.fc12
8799e5
- Refresh host disk space in create wizard (bz 502777)
8799e5
- Offer to fix disk permission issues (bz 517379)
8799e5
8799e5
* Thu Sep 17 2009 Cole Robinson <crobinso@redhat.com> - 0.8.0-4.fc12
8799e5
- Don't close libvirt connection for non-fatal errors (bz 522168)
8799e5
- Manager UI tweaks
8799e5
- Generate better errors if disk/net stats polling fails
8799e5
8799e5
* Mon Sep 14 2009 Cole Robinson <crobinso@redhat.com> - 0.8.0-3.fc12
8799e5
- Fix disk XML mangling via connect/eject cdrom (bz 516116)
8799e5
- Fix delete button sensitivity (bz 518536)
8799e5
- Fix populating text box from storage browser in 'New VM' (bz 517263)
8799e5
- Fix a traceback in an 'Add Hardware' error path (bz 517286)
8799e5
8799e5
* Thu Aug 13 2009 Daniel P. Berrange <berrange@redhat.com> - 0.8.0-2.fc12
8799e5
- Remove obsolete dep on policykit agent
8799e5
8799e5
* Tue Jul 28 2009 Cole Robinson <crobinso@redhat.com> - 0.8.0-1.fc12
8799e5
- Update to release 0.8.0
8799e5
- New 'Clone VM' Wizard
8799e5
- Improved UI, including an overhaul of the main 'manager' view
8799e5
- System tray icon for easy VM access (start, stop, view console/details)
8799e5
- Wizard for adding serial, parallel, and video devices to existing VMs.
8799e5
8799e5
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.0-6
8799e5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
8799e5
8799e5
* Thu May 21 2009 Mark McLoughlin <markmc@redhat.com> - 0.7.0-5.fc12
8799e5
- Fix 'opertaing' typo in 'New VM' dialog (#495128)
8799e5
- Allow details window to resize again (#491683)
8799e5
- Handle collecting username for vnc authentication (#499589)
8799e5
- Actually handle arch config when creating a VM (#499145)
8799e5
- Log libvirt capabilities at startup to aid debugging (#500337)
8799e5
8799e5
* Tue Apr 14 2009 Cole Robinson <crobinso@redhat.com> - 0.7.0-4.fc11
8799e5
- More translation updates
8799e5
8799e5
* Thu Apr 09 2009 Cole Robinson <crobinso@redhat.com> - 0.7.0-3.fc11
8799e5
- Fix incorrect max vcpu setting in New VM wizard (bz 490466)
8799e5
- Fix some OK/Cancel button ordering issues (bz 490207)
8799e5
- Use openAuth when duplicating a connection when deleting a VM
8799e5
- Updated translations (bz 493795)
8799e5
8799e5
* Mon Mar 23 2009 Cole Robinson <crobinso@redhat.com> - 0.7.0-2.fc11
8799e5
- Back compat fixes for connecting to older xen installations (bz 489885)
8799e5
- Don't show harmless NoneType error when launching new VM details window
8799e5
8799e5
* Tue Mar 10 2009 Cole Robinson <crobinso@redhat.com> - 0.7.0-1.fc11
8799e5
- Update to release 0.7.0
8799e5
- Redesigned 'New Virtual Machine' wizard
8799e5
- Option to remove storage when deleting a virtual machine.
8799e5
- File browser for libvirt storage pools and volumes
8799e5
- Physical device assignment (PCI, USB) for existing virtual machines.
8799e5
8799e5
* Wed Mar  4 2009 Cole Robinson <crobinso@redhat.com> - 0.6.1-4.fc11
8799e5
- Update polish translation (bz 263301)
8799e5
- Fix sending ctrl-alt-del to guest
8799e5
- Fix cpu + mem stats options to remember preference.
8799e5
8799e5
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.1-3
8799e5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
8799e5
8799e5
* Mon Feb  9 2009 Cole Robinson <crobinso@redhat.com> - 0.6.1-2
8799e5
- Kill off consolehelper (PolicyKit is sufficient)
8799e5
8799e5
* Mon Jan 26 2009 Cole Robinson <crobinso@redhat.com> - 0.6.1-1
8799e5
- Update to 0.6.1 release
8799e5
- Disk and Network VM stats reporting
8799e5
- VM Migration support
8799e5
- Support adding sound devices to existing VMs
8799e5
- Allow specifying device model when adding a network device to an existing VM
8799e5
8799e5
* Tue Jan 20 2009 Mark McLoughlin <markmc@redhat.com> - 0.6.0-7
8799e5
- Add patch to ignore fix crash on force-poweroff with serial console (#470548)
8799e5
8799e5
* Thu Dec 04 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.6.0-6
8799e5
- Rebuild for Python 2.6
8799e5
8799e5
* Mon Dec  1 2008 Cole Robinson <crobinso@redhat.com> - 0.6.0-5.fc10
8799e5
- Fix spec for building on F9
8799e5
- Update 'New VM' virt descriptions to be less black and white (bz 470563)
8799e5
8799e5
* Sun Nov 30 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.6.0-4
8799e5
- Rebuild for Python 2.6
8799e5
8799e5
* Mon Oct 27 2008 Cole Robinson <crobinso@redhat.com> - 0.6.0-3.fc10
8799e5
- Add dbus-x11 to Requires (bug 467886)
8799e5
- Fedora translation updates (bug 467808)
8799e5
- Don't add multiple sound devices if install fails
8799e5
- Only popup volume path copy option on right click
8799e5
- Fix a variable typo
8799e5
8799e5
* Tue Oct 14 2008 Cole Robinson <crobinso@redhat.com> - 0.6.0-2.fc10
8799e5
- Add gnome-python2-gnome requirement.
8799e5
- Allow seeing connection details if disconnected.
8799e5
- Updated catalan translation.
8799e5
- Update dutch translation.
8799e5
- Update german translation. (bug 438136)
8799e5
- Fix showing domain console when connecting to hypervisor.
8799e5
- Update POTFILES to reflect reality (bug 466835)
8799e5
8799e5
* Wed Sep 10 2008 Cole Robinson <crobinso@redhat.com> - 0.6.0-1.fc10
8799e5
- Update to 0.6.0 release
8799e5
- Add libvirt storage management support
8799e5
- Basic support for remote guest installation
8799e5
- Merge VM console and details windows
8799e5
- Poll avahi for libvirtd advertisement
8799e5
- Hypervisor autoconnect option
8799e5
- Add sound emulation when creating new guests
8799e5
8799e5
* Thu Apr  3 2008 Daniel P. Berrange <berrange@redhat.com> - 0.5.4-3.fc9
8799e5
- Updated sr, de, fi, it, pl translations
8799e5
8799e5
* Thu Mar 13 2008 Daniel P. Berrange <berrange@redhat.com> - 0.5.4-2.fc9
8799e5
- Don't run policykit checks when root (rhbz #436994)
8799e5
8799e5
* Mon Mar 10 2008 Daniel P. Berrange <berrange@redhat.com> - 0.5.4-1.fc9
8799e5
- Update to 0.5.4 release
8799e5
8799e5
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.5.3-2
8799e5
- Autorebuild for GCC 4.3
8799e5
8799e5
* Thu Jan 10 2008 Daniel P. Berrange <berrange@redhat.com> - 0.5.3-1.fc9
8799e5
- Update to 0.5.3 release
8799e5
8799e5
* Mon Oct 15 2007 Daniel P. Berrange <berrange@redhat.com> - 0.5.2-2.fc8
8799e5
- Change TLS x509 credential name to sync with libvirt
8799e5
8799e5
* Thu Oct  4 2007 Daniel P. Berrange <berrange@redhat.com> - 0.5.2-1.fc8
8799e5
- Update to 0.5.2 release
8799e5
- No scrollbars for high res guest in low res host (rhbz 273181)
8799e5
- Unable to remove network device (rhbz 242900)
8799e5
- Fixed broken menu items (rhbz 307551)
8799e5
- Require libvirt 0.3.3 to get CDROM change capability for Xen
8799e5
8799e5
* Tue Sep 25 2007 Daniel P. Berrange <berrange@redhat.com> - 0.5.1-1.fc8
8799e5
- Updated to 0.5.1 release
8799e5
- Open connections in background
8799e5
- Make VNC connection retries more robust
8799e5
- Allow changing of CDROM media on the fly
8799e5
- Add PXE boot installation of HVM guests
8799e5
- Allow tunnelling VNC over SSH
8799e5
8799e5
* Wed Aug 29 2007 Daniel P. Berrange <berrange@redhat.com> - 0.5.0-1.fc8
8799e5
- Updated to 0.5.0 release
8799e5
- Support for managing remote hosts
8799e5
- Switch to use GTK-VNC for the guest console
8799e5
8799e5
* Fri Aug 24 2007 Daniel P. Berrange <berrange@redhat.com> - 0.4.0-3.fc8
8799e5
- Remove ExcludeArch since libvirt is now available
8799e5
8799e5
* Wed May  9 2007 Daniel P. Berrange <berrange@redhat.com> - 0.4.0-2.fc7
8799e5
- Refresh po file translations (bz 238369)
8799e5
- Fixed removal of disk/network devices
8799e5
- Fixed toolbar menu option state
8799e5
- Fixed file dialogs & default widget states
8799e5
8799e5
* Mon Apr 16 2007 Daniel P. Berrange <berrange@redhat.com> - 0.4.0-1.fc7
8799e5
- Support for managing virtual networks
8799e5
- Ability to attach guest to virtual networks
8799e5
- Automatically set VNC keymap based on local keymap
8799e5
- Support for disk & network device addition/removal
8799e5
8799e5
* Wed Mar 28 2007 Daniel P. Berrange <berrange@redhat.com> - 0.3.2-3.fc7
8799e5
- Fix HVM check to allow KVM guests to be created (bz 233644)
8799e5
- Fix default file size suggestion
8799e5
8799e5
* Tue Mar 27 2007 Daniel P. Berrange <berrange@redhat.com> - 0.3.2-2.fc7
8799e5
- Ensure we own all directories we create (bz 233816)
8799e5
8799e5
* Tue Mar 20 2007 Daniel P. Berrange <berrange@redhat.com> - 0.3.2-1.fc7
8799e5
- Added online help to all windows
8799e5
- Bug fixes to virtual console popup, key grab & accelerator override
8799e5
8799e5
* Tue Mar 13 2007 Daniel P. Berrange <berrange@redhat.com> - 0.3.1-4.fc7
8799e5
- Fixed thread locking to avoid deadlocks when a11y is enabled
8799e5
8799e5
* Fri Mar  2 2007 Daniel P. Berrange <berrange@redhat.com> - 0.3.1-3.fc7
8799e5
- Fixed keyboard ungrab in VNC widget
8799e5
8799e5
* Tue Feb 20 2007 Daniel P. Berrange <berrange@redhat.com> - 0.3.1-2.fc7
8799e5
- Only check for HVM on Xen hypervisor
8799e5
8799e5
* Tue Feb 20 2007 Daniel P. Berrange <berrange@redhat.com> - 0.3.1-1.fc7
8799e5
- Added support for managing QEMU domains
8799e5
- Automatically grab mouse pointer to workaround dual-cursor crazyness
8799e5
8799e5
* Wed Jan 31 2007 Daniel P. Berrange <berrange@redhat.com> - 0.3.0-2.fc7
8799e5
- Added dep on desktop-file-utils for post/postun scripts
8799e5
8799e5
* Mon Jan 22 2007 Daniel P. Berrange <berrange@redhat.com> - 0.3.0-1.fc7
8799e5
- Added support for managing inactive domains
8799e5
- Require virt-inst >= 0.100.0 and libvirt >= 0.1.11 for ianctive
8799e5
  domain management capabilities
8799e5
- Add progress bars during VM creation stage
8799e5
- Improved reliability of VNC console
8799e5
- Updated translations again
8799e5
- Added destroy option to menu bar to forceably kill a guest
8799e5
- Visually differentiate allocated memory, from actual used memory on host
8799e5
- Validate file magic when restoring a guest from a savd file
8799e5
- Performance work on domain listing
8799e5
- Allow creation of non-sparse files
8799e5
- Fix backspace key in serial console
8799e5
8799e5
* Tue Dec 19 2006 Daniel P. Berrange <berrange@redhat.com> - 0.2.6-3.fc7
8799e5
- Imported latest translations from Fedora i18n repository (bz 203783)
8799e5
- Use 127.0.0.1 address for connecting to VNC console instead of
8799e5
  localhost to avoid some issue with messed up /etc/hosts.
8799e5
- Add selector for sparse or non-sparse file, defaulting to non-sparse.
8799e5
  Add appropriate warnings and progress-bar text. (bz 218996)
8799e5
- Disable memory ballooning & CPU hotplug for HVM guests (bz 214432)
8799e5
- Updated memory-setting UI to include a hard upper limit for physical
8799e5
  host RAM
8799e5
- Added documentation on the page warning that setting virtual host RAM
8799e5
  too high can exhaust the memory of the machine
8799e5
- Handle errors when hostname resolution fails to avoid app exiting (bz 216975)
8799e5
8799e5
* Thu Dec  7 2006 Jeremy Katz <katzj@redhat.com> - 0.2.6-2.fc7
8799e5
- rebuild for python 2.5
8799e5
8799e5
* Thu Nov  9 2006 Daniel P. Berrange <berrange@redhat.com> - 0.2.6-1.fc7
8799e5
- Imported translations from Fedora i18n repository
8799e5
- Make (most) scrollbar policies automatic
8799e5
- Set busy cursor while creating new VMs
8799e5
- Preference for controlling keygrab policy
8799e5
- Preference for when to automatically open console (bz 211385)
8799e5
- Re-try VNC connection attempt periodically in case VNC daemon
8799e5
  hasn't finished starting up
8799e5
- Added activation of URLs for about dialog (bz 210782)
8799e5
- Improved error reporting when connecting to HV (bz 211229)
8799e5
- Add command line args to open specific windows
8799e5
- Don't skip para/full virt wizard step - instead gray out full
8799e5
  virt option & tell user why
8799e5
- Change 'physical' to 'logical' when refering to host CPUs
8799e5
- Include hostname in titlebar
8799e5
- Disable wizard sensitivity while creating VM
8799e5
8799e5
* Thu Oct 19 2006 Daniel P. Berrange <berrange@redhat.com> - 0.2.5-1.fc7
8799e5
- Switch to use python-virtinst instead of python-xeninst due to
8799e5
  renaming of original package
8799e5
- Disable keyboard accelerators when grabbing mouse to avoid things like
8799e5
  Ctrl-W closing the local window, instead of remote window bz 210364
8799e5
- Fix host memory reporting bz 211281
8799e5
- Remove duplicate application menu entry bz 211230
8799e5
- Fix duplicated mnemonics (bz 208408)
8799e5
- Use blktap backed disks if available
8799e5
- Use a drop down list to remember past URLs (bz 209479)
8799e5
- Remove unused help button from preferences dialog (bz 209251)
8799e5
- Fix exception when no VNC graphics is defined
8799e5
- Force immediate refresh of VMs after creating a new one
8799e5
- Improve error reporting if run on a kernel without Xen (bz 209122)
8799e5
- More fixes to avoid stuck modifier keys on focus-out (bz 207949)
8799e5
8799e5
* Fri Sep 29 2006 Daniel P. Berrange <berrange@redhat.com> 0.2.3-2.fc6
8799e5
- Fix segv in sparkline code when no data points are defined (bz  208185)
8799e5
- Clamp CPU utilization between 0 & 100% just in case (bz 208185)
8799e5
8799e5
* Tue Sep 26 2006 Daniel Berrange <berrange@redhat.com> - 0.2.3-1.fc6
8799e5
- Require xeninst >= 0.93.0 to fix block backed devices
8799e5
- Skip para/fully-virt step when going back in wizard if not HVM host (bz 207409)
8799e5
- Fix handling of modifier keys in VNC console so Alt key doesn't get stuck (bz 207949)
8799e5
- Allow sticky modifier keys by pressing same key 3 times in row (enables Ctrl-Alt-F1
8799e5
  by doing Ctrl Ctrl Ctrl  Alt-F1)
8799e5
- Improved error handling during guest creation
8799e5
- Log errors with python logging, instead of to stdout
8799e5
- Remove unused buttons from main domain list window
8799e5
- Switch out of full screen & release key grab when closing console
8799e5
- Trim sparkline CPU history graph to 40 samples max
8799e5
- Constraint VCPU adjuster to only allow upto guest's max VCPU count
8799e5
- Show guest's max & current VCPU count in details page
8799e5
- Fix rounding of disk sizes to avoid a 1.9 GB disk being rounded down to 1 GB
8799e5
- Use raw block device path to CDROM not mount point for HVM guest (bz 206965)
8799e5
- Fix visibility of file size spin box (bz 206186 part 2)
8799e5
- Check for GTK failing to open X11 display (bz 205938)
8799e5
8799e5
* Fri Sep 15 2006 Daniel Berrange <berrange@redhat.com> - 0.2.2-1.fc6
8799e5
- Fix event handling in create VM wizard (bz 206660 & 206186)
8799e5
- Fix close button in about dialog (bz 205943)
8799e5
- Refresh .pot files
8799e5
- Turn on VNC scrollbars fulltime to avoid GTK window sizing issue
8799e5
  which consistently resize too small.
8799e5
8799e5
* Mon Sep 11 2006 Daniel Berrange <berrange@redhat.com> - 0.2.1-3.fc6
8799e5
- Added requires on pygtk2-libglade & librsvg2 (bz 205941 & 205942)
8799e5
- Re-arrange to use console-helper to launch app
8799e5
- Added 'dist' component to release number
8799e5
8799e5
* Wed Sep  6 2006 Jeremy Katz <katzj@redhat.com> - 0.2.1-2
8799e5
- don't ghost pyo files (#205448)
8799e5
8799e5
* Mon Sep  4 2006 Daniel Berrange <berrange@redhat.com> - 0.2.1-1
8799e5
- Updated to 0.2.1 tar.gz
8799e5
- Added rules to install/uninstall gconf schemas in preun,post,pre
8799e5
  scriptlets
8799e5
- Updated URL for source to reflect new upstream download URL
8799e5
8799e5
* Thu Aug 24 2006 Jeremy Katz <katzj@redhat.com> - 0.2.0-3
8799e5
- BR gettext
8799e5
8799e5
* Thu Aug 24 2006 Jeremy Katz <katzj@redhat.com> - 0.2.0-2
8799e5
- only build on arches with virt
8799e5
8799e5
* Tue Aug 22 2006 Daniel Berrange <berrange@redhat.com> - 0.2.0-1
8799e5
- Added wizard for creating virtual machines
8799e5
- Added embedded serial console
8799e5
- Added ability to take screenshots
8799e5
8799e5
* Mon Jul 24 2006 Daniel Berrange <berrange@redhat.com> - 0.1.5-2
8799e5
- Prefix *.pyo files with 'ghost' macro
8799e5
- Use fully qualified URL in Source  tag
8799e5
8799e5
* Thu Jul 20 2006 Daniel Berrange <berrange@redhat.com> - 0.1.5-1
8799e5
- Update to new 0.1.5 release snapshot
8799e5
8799e5
* Thu Jul 20 2006 Daniel Berrange <berrange@redhat.com> - 0.1.4-1
8799e5
- Update to new 0.1.4 release snapshot
8799e5
8799e5
* Mon Jul 17 2006 Daniel Berrange <berrange@redhat.com> - 0.1.3-1
8799e5
- Fix License tag
8799e5
- Updated for new release
8799e5
8799e5
* Wed Jun 28 2006 Daniel Berrange <berrange@redhat.com> - 0.1.2-3
8799e5
- Added missing copyright headers on all .py files
8799e5
8799e5
* Wed Jun 28 2006 Daniel Berrange <berrange@redhat.com> - 0.1.2-2
8799e5
- Added python-devel to BuildRequires
8799e5
8799e5
* Wed Jun 28 2006 Daniel Berrange <berrange@redhat.com> - 0.1.2-1
8799e5
- Change URL to public location
8799e5
8799e5
* Fri Jun 16 2006 Daniel Berrange <berrange@redhat.com> - 0.1.0-1
8799e5
- Added initial support for using VNC console
8799e5
8799e5
* Thu Apr 20 2006 Daniel Berrange <berrange@redhat.com> - 0.0.2-1
8799e5
- Added DBus remote control service
8799e5
8799e5
* Wed Mar 29 2006 Daniel Berrange <berrange@redhat.com> - 0.0.1-1
8799e5
- Initial RPM build