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