2007-08-17 19:42:14 +00:00
|
|
|
# -*- rpm-spec -*-
|
|
|
|
|
2013-02-13 16:33:29 +00:00
|
|
|
# Default to skipping autoreconf. Distros can change just this one line
|
|
|
|
# (or provide a command-line override) if they backport any patches that
|
|
|
|
# touch configure.ac or Makefile.am.
|
|
|
|
%{!?enable_autotools:%define enable_autotools 0}
|
|
|
|
|
2011-02-21 12:45:54 +00:00
|
|
|
%define with_spice 0
|
2014-02-26 10:43:48 +00:00
|
|
|
%if 0%{?fedora} >= 17 || 0%{?rhel} >= 6
|
2011-02-21 12:45:54 +00:00
|
|
|
%define with_spice 1
|
|
|
|
%endif
|
2011-07-12 12:17:17 +00:00
|
|
|
|
2013-05-01 16:37:44 +00:00
|
|
|
%define with_govirt 0
|
2014-02-26 10:43:48 +00:00
|
|
|
%if 0%{?fedora} > 19 || 0%{?rhel} >= 7
|
2013-05-01 16:37:44 +00:00
|
|
|
%define with_govirt 1
|
|
|
|
%endif
|
|
|
|
|
2007-08-17 19:42:14 +00:00
|
|
|
Name: virt-viewer
|
2016-11-24 16:21:44 +00:00
|
|
|
Version: 5.0
|
2017-07-27 21:21:45 +00:00
|
|
|
Release: 3%{?dist}%{?extra_release}
|
2007-08-17 19:42:14 +00:00
|
|
|
Summary: Virtual Machine Viewer
|
|
|
|
Group: Applications/System
|
|
|
|
License: GPLv2+
|
|
|
|
URL: http://virt-manager.org/
|
|
|
|
Source0: http://virt-manager.org/download/sources/%{name}/%{name}-%{version}.tar.gz
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
2008-03-10 14:58:12 +00:00
|
|
|
Requires: openssh-clients
|
2012-02-14 16:31:03 +00:00
|
|
|
Requires(post): %{_sbindir}/update-alternatives
|
|
|
|
Requires(postun): %{_sbindir}/update-alternatives
|
2012-05-16 12:07:02 +00:00
|
|
|
Requires(post): desktop-file-utils
|
|
|
|
Requires(postun): desktop-file-utils
|
2007-08-17 19:42:14 +00:00
|
|
|
|
2013-02-13 16:33:29 +00:00
|
|
|
%if 0%{?enable_autotools}
|
|
|
|
BuildRequires: autoconf
|
|
|
|
BuildRequires: automake
|
|
|
|
BuildRequires: gettext-devel
|
|
|
|
BuildRequires: libtool
|
|
|
|
%endif
|
|
|
|
|
2016-06-30 14:19:24 +00:00
|
|
|
BuildRequires: pkgconfig(glib-2.0) >= 2.38
|
|
|
|
BuildRequires: pkgconfig(gtk+-3.0) >= 3.10
|
|
|
|
BuildRequires: pkgconfig(libvirt) >= 0.10.0
|
|
|
|
BuildRequires: pkgconfig(libvirt-glib-1.0) >= 0.1.8
|
|
|
|
BuildRequires: pkgconfig(libxml-2.0) >= 2.6.0
|
|
|
|
BuildRequires: pkgconfig(gtk-vnc-2.0) >= 0.4.0
|
2011-02-21 12:45:54 +00:00
|
|
|
%if %{with_spice}
|
2016-06-30 14:19:24 +00:00
|
|
|
BuildRequires: pkgconfig(spice-client-gtk-3.0) >= 0.31
|
|
|
|
BuildRequires: pkgconfig(spice-protocol) >= 0.12.7
|
2011-02-21 12:45:54 +00:00
|
|
|
%endif
|
2009-07-29 14:33:14 +00:00
|
|
|
BuildRequires: /usr/bin/pod2man
|
2010-01-15 13:08:22 +00:00
|
|
|
BuildRequires: intltool
|
2013-05-01 16:37:44 +00:00
|
|
|
%if %{with_govirt}
|
2016-06-30 14:19:24 +00:00
|
|
|
BuildRequires: pkgconfig(govirt-1.0) >= 0.3.2
|
2008-03-10 14:58:12 +00:00
|
|
|
%endif
|
2007-08-17 19:42:14 +00:00
|
|
|
|
2013-06-04 16:27:46 +00:00
|
|
|
%if 0%{?fedora} >= 20
|
2013-06-04 16:18:34 +00:00
|
|
|
Obsoletes: spice-client < 0.12.3-2
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
2007-08-17 19:42:14 +00:00
|
|
|
%description
|
|
|
|
Virtual Machine Viewer provides a graphical console client for connecting
|
2011-07-12 12:17:17 +00:00
|
|
|
to virtual machines. It uses the GTK-VNC or SPICE-GTK widgets to provide
|
|
|
|
the display, and libvirt for looking up VNC/SPICE server details.
|
2007-08-17 19:42:14 +00:00
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
|
|
|
|
|
|
|
%build
|
2011-02-21 12:45:54 +00:00
|
|
|
|
2013-02-13 16:33:29 +00:00
|
|
|
%if 0%{?enable_autotools}
|
|
|
|
autoreconf -if
|
|
|
|
%endif
|
|
|
|
|
2011-02-21 12:45:54 +00:00
|
|
|
%if %{with_spice}
|
2011-11-09 15:22:54 +00:00
|
|
|
%define spice_arg --with-spice-gtk
|
2011-02-21 12:45:54 +00:00
|
|
|
%else
|
2011-11-09 15:22:54 +00:00
|
|
|
%define spice_arg --without-spice-gtk
|
2011-02-21 12:45:54 +00:00
|
|
|
%endif
|
|
|
|
|
2013-05-01 16:37:44 +00:00
|
|
|
%if %{with_govirt}
|
|
|
|
%define govirt_arg --with-ovirt
|
|
|
|
%endif
|
|
|
|
|
2014-07-21 14:35:50 +00:00
|
|
|
%configure %{spice_arg} %{gtk_arg} %{govirt_arg} --with-buildid=%{release} --disable-update-mimedb
|
2008-03-10 14:58:12 +00:00
|
|
|
%__make %{?_smp_mflags}
|
2007-08-17 19:42:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
2008-03-10 14:58:12 +00:00
|
|
|
%__make install DESTDIR=$RPM_BUILD_ROOT
|
2012-02-14 16:31:03 +00:00
|
|
|
mkdir -p %{buildroot}%{_libexecdir}
|
|
|
|
touch %{buildroot}%{_libexecdir}/spice-xpi-client
|
|
|
|
install -m 0755 data/spice-xpi-client-remote-viewer %{buildroot}%{_libexecdir}/
|
2010-01-15 13:02:08 +00:00
|
|
|
%find_lang %{name}
|
|
|
|
|
2007-08-17 19:42:14 +00:00
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
2012-02-14 16:31:03 +00:00
|
|
|
%post
|
|
|
|
/bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
|
2014-09-27 16:19:13 +00:00
|
|
|
/bin/touch --no-create %{_datadir}/mime/packages &> /dev/null || :
|
2012-02-14 16:31:03 +00:00
|
|
|
%{_sbindir}/update-alternatives --install %{_libexecdir}/spice-xpi-client \
|
2012-05-16 12:07:02 +00:00
|
|
|
spice-xpi-client %{_libexecdir}/spice-xpi-client-remote-viewer 25
|
2014-09-27 16:19:13 +00:00
|
|
|
/usr/bin/update-desktop-database -q %{_datadir}/applications
|
2012-02-14 16:31:03 +00:00
|
|
|
|
|
|
|
%postun
|
|
|
|
if [ $1 -eq 0 ] ; then
|
|
|
|
/bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null
|
|
|
|
/usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
2014-09-27 16:19:13 +00:00
|
|
|
/usr/bin/update-mime-database %{_datadir}/mime &> /dev/null || :
|
2012-02-14 16:31:03 +00:00
|
|
|
%{_sbindir}/update-alternatives --remove spice-xpi-client %{_libexecdir}/spice-xpi-client-remote-viewer
|
|
|
|
fi
|
2014-09-27 16:19:13 +00:00
|
|
|
/usr/bin/update-desktop-database -q %{_datadir}/applications
|
2012-02-14 16:31:03 +00:00
|
|
|
|
|
|
|
%posttrans
|
|
|
|
/usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
2014-09-27 16:19:13 +00:00
|
|
|
/usr/bin/update-mime-database %{?fedora:-n} %{_datadir}/mime &> /dev/null || :
|
2012-02-14 16:31:03 +00:00
|
|
|
|
2010-01-15 13:02:08 +00:00
|
|
|
%files -f %{name}.lang
|
2007-08-17 19:42:14 +00:00
|
|
|
%defattr(-,root,root,-)
|
2008-03-10 14:58:12 +00:00
|
|
|
%doc README COPYING AUTHORS ChangeLog NEWS
|
2007-08-17 19:42:14 +00:00
|
|
|
%{_bindir}/%{name}
|
2012-02-14 16:31:03 +00:00
|
|
|
%{_bindir}/remote-viewer
|
|
|
|
%{_datadir}/icons/hicolor/*/apps/*
|
2014-07-21 14:35:50 +00:00
|
|
|
%{_datadir}/icons/hicolor/*/devices/*
|
2012-05-16 12:07:02 +00:00
|
|
|
%{_datadir}/applications/remote-viewer.desktop
|
2016-06-30 14:19:24 +00:00
|
|
|
%{_datadir}/appdata/remote-viewer.appdata.xml
|
2013-02-13 16:33:29 +00:00
|
|
|
%{_datadir}/mime/packages/virt-viewer-mime.xml
|
2012-02-14 16:31:03 +00:00
|
|
|
%ghost %{_libexecdir}/spice-xpi-client
|
|
|
|
%{_libexecdir}/spice-xpi-client-remote-viewer
|
|
|
|
%{_mandir}/man1/virt-viewer.1*
|
|
|
|
%{_mandir}/man1/remote-viewer.1*
|
2007-08-17 19:42:14 +00:00
|
|
|
|
|
|
|
%changelog
|
2017-07-27 21:21:45 +00:00
|
|
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-02-11 17:07:30 +00:00
|
|
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2016-11-24 16:21:44 +00:00
|
|
|
* Thu Nov 24 2016 Daniel P. Berrange <berrange@redhat.com> - 5.0-1
|
|
|
|
- Update to 5.0 release
|
|
|
|
|
2016-10-05 09:44:29 +00:00
|
|
|
* Wed Oct 05 2016 Christophe Fergeau <cfergeau@redhat.com> 4.0-2
|
|
|
|
- Add upstream patch fixing virt-viewer window gradually getting bigger and
|
|
|
|
bigger
|
|
|
|
|
2016-06-30 14:19:24 +00:00
|
|
|
* Thu Jun 30 2016 Daniel P. Berrange <berrange@redhat.com> - 4.0-1
|
|
|
|
- Update to 4.0 release
|
|
|
|
|
2016-06-22 15:13:09 +00:00
|
|
|
* Wed Jun 22 2016 Christophe Fergeau <cfergeau@redhat.com> - 3.0-3
|
|
|
|
- Rebuild for spice-gtk ABI break
|
|
|
|
|
2016-02-05 02:46:22 +00:00
|
|
|
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-12-04 14:41:24 +00:00
|
|
|
* Fri Dec 4 2015 Fabiano Fidêncio <fidencio@redhat.com> - 3.0-1
|
|
|
|
- Update to 3.0 release
|
|
|
|
|
2015-06-19 02:04:02 +00:00
|
|
|
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-01-12 18:09:59 +00:00
|
|
|
* Mon Jan 12 2015 Daniel P. Berrange <berrange@redhat.com> - 2.0-1
|
|
|
|
- Update to 2.0 release
|
|
|
|
|
|
|
|
* Sat Sep 27 2014 Rex Dieter <rdieter@fedoraproject.org> - 1.0-3
|
2014-09-27 16:19:13 +00:00
|
|
|
- update/optimize mime scriptlets
|
|
|
|
|
2014-08-18 07:59:01 +00:00
|
|
|
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-07-21 14:35:50 +00:00
|
|
|
* Mon Jul 21 2014 Daniel P. Berrange <berrange@redhat.com> - 1.0-1
|
|
|
|
- Update to 1.0 release
|
|
|
|
|
2014-06-08 03:49:23 +00:00
|
|
|
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-02-26 10:44:24 +00:00
|
|
|
* Wed Feb 26 2014 Christophe Fergeau <cfergeau@redhat.com> 0.6.0-1
|
|
|
|
- Update to 0.6.0 release
|
|
|
|
|
2013-11-26 15:43:35 +00:00
|
|
|
* Tue Nov 26 2013 Christophe Fergeau <cfergeau@redhat.com> 0.5.7-2
|
|
|
|
- Rebuild for new libgovirt
|
|
|
|
|
2013-07-31 13:58:22 +00:00
|
|
|
* Wed Jul 31 2013 Daniel P. Berrange <berrange@redhat.com> - 0.5.7-1
|
|
|
|
- Update to 0.5.7 release
|
|
|
|
|
|
|
|
* Thu May 23 2013 Christophe Fergeau <cfergeau@redhat.com> - 0.5.6-2
|
2013-06-04 16:18:34 +00:00
|
|
|
- Mark remote-viewer as replacing spice-client
|
|
|
|
|
2013-05-01 16:37:44 +00:00
|
|
|
* Wed May 1 2013 Daniel P. Berrange <berrange@redhat.com> - 0.5.6-1
|
|
|
|
- Update to 0.5.6 release
|
|
|
|
|
2013-03-12 12:58:31 +00:00
|
|
|
* Wed Feb 13 2013 Daniel P. Berrange <berrange@redhat.com> - 0.5.5-1
|
|
|
|
- Update to 0.5.5 release
|
|
|
|
|
2012-12-14 22:08:17 +00:00
|
|
|
* Fri Dec 14 2012 Cole Robinson <crobinso@redhat.com> - 0.5.4-3
|
|
|
|
- Fix crash after entering spice password (bz #880381)
|
|
|
|
|
2012-10-13 14:14:29 +00:00
|
|
|
* Sat Oct 13 2012 Chris Tyler <chris@tylers.info> - 0.5.4-2
|
|
|
|
- Enabled spice support for ARM archs
|
|
|
|
|
2012-09-17 11:32:03 +00:00
|
|
|
* Mon Sep 17 2012 Daniel P. Berrange <berrange@redhat.com> - 0.5.4-1
|
|
|
|
- Update to 0.5.4 release
|
|
|
|
|
2012-09-14 10:37:33 +00:00
|
|
|
* Fri Sep 14 2012 Hans de Goede <hdegoede@redhat.com> - 0.5.3-6
|
|
|
|
- Rebuild for spice-gtk ABI breakage (previous spice-gtk build was borked)
|
|
|
|
|
2012-09-11 19:01:23 +00:00
|
|
|
* Tue Sep 11 2012 Hans de Goede <hdegoede@redhat.com> - 0.5.3-5
|
|
|
|
- Rebuild for spice-gtk ABI breakage
|
|
|
|
|
2012-09-07 18:36:18 +00:00
|
|
|
* Fri Sep 7 2012 Hans de Goede <hdegoede@redhat.com> - 0.5.3-4
|
|
|
|
- Rebuild for spice-gtk soname change
|
|
|
|
|
2012-08-13 10:30:55 +00:00
|
|
|
* Mon Aug 13 2012 Daniel P. Berrange <berrange@redhat.com> - 0.5.3-3
|
|
|
|
- Rebuild for spice-gtk soname change
|
|
|
|
|
2012-07-22 02:50:08 +00:00
|
|
|
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-05-16 12:07:02 +00:00
|
|
|
* Wed May 16 2012 Daniel P. Berrange <berrange@redhat.com> - 0.5.3-1
|
|
|
|
- Update to 0.5.3 release
|
|
|
|
|
|
|
|
* Fri Mar 9 2012 Daniel P. Berrange <berrange@redhat.com> - 0.5.2-1
|
2012-03-09 13:54:20 +00:00
|
|
|
- Update to 0.5.2 release
|
|
|
|
|
2013-07-31 13:58:22 +00:00
|
|
|
* Fri Feb 17 2012 Daniel P. Berrange <berrange@redhat.com> - 0.5.1-1
|
2012-02-17 12:11:27 +00:00
|
|
|
- Update to 0.5.1 release
|
|
|
|
|
|
|
|
* Tue Feb 14 2012 Daniel P. Berrange <berrange@redhat.com> - 0.5.0-1
|
|
|
|
- Update to 0.5.0 release
|
|
|
|
|
2012-01-14 07:59:07 +00:00
|
|
|
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-11-09 15:22:54 +00:00
|
|
|
* Wed Nov 9 2011 Daniel P. Berrange <berrange@redhat.com> - 0.4.2-1
|
|
|
|
- Update to 0.4.2 release
|
|
|
|
|
2011-08-14 20:57:59 +00:00
|
|
|
* Sun Aug 14 2011 Daniel P. Berrange <berrange@redhat.com> - 0.4.1-3
|
|
|
|
- More ssh tunnelling port fixes
|
|
|
|
|
2011-08-12 14:44:16 +00:00
|
|
|
* Fri Aug 12 2011 Daniel P. Berrange <berrange@redhat.com> - 0.4.1-2
|
|
|
|
- Fix ssh tunnelling
|
|
|
|
|
2011-08-04 10:37:54 +00:00
|
|
|
* Thu Aug 4 2011 Daniel P. Berrange <berrange@redhat.com> - 0.4.1-1
|
|
|
|
- Update to 0.4.1 release
|
|
|
|
|
2011-08-02 13:31:00 +00:00
|
|
|
* Tue Aug 2 2011 Daniel P. Berrange <berrange@redhat.com> - 0.4.0-2
|
|
|
|
- Rebuild for accidental spice-glib soname change
|
|
|
|
|
2011-07-12 12:17:17 +00:00
|
|
|
* Tue Jul 12 2011 Daniel P. Berrange <berrange@redhat.com> - 0.4.0-1
|
|
|
|
- Update to 0.4.0 release
|
|
|
|
- Switch build to GTK3 instead of GTK2
|
|
|
|
|
2011-05-31 17:28:03 +00:00
|
|
|
* Tue May 31 2011 Daniel P. Berrange <berrange@redhat.com> - 0.3.1-2
|
|
|
|
- Rebuild for spice-glib ABI breakage
|
|
|
|
|
2011-05-11 19:28:05 +00:00
|
|
|
* Wed May 11 2011 Karsten Hopp <karsten@redhat.com> 0.3.1-1.1
|
|
|
|
- spice-gtk is x86 x86_64 only, don't require it on other archs
|
|
|
|
|
2011-02-21 15:39:02 +00:00
|
|
|
* Mon Feb 21 2011 Daniel P. Berrange <berrange@redhat.com> - 0.3.1-1
|
|
|
|
- Update to 0.3.1 release
|
|
|
|
|
2011-02-21 12:45:54 +00:00
|
|
|
* Mon Feb 21 2011 Daniel P. Berrange <berrange@redhat.com> - 0.3.0-1
|
|
|
|
- Update to 0.3.0 and enable SPICE
|
|
|
|
|
2011-02-08 01:39:18 +00:00
|
|
|
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2010-01-15 13:02:08 +00:00
|
|
|
* Fri Jan 15 2010 Daniel P. Berrange <berrange@redhat.com> - 0.2.1-1
|
|
|
|
- Update to 0.2.1 release
|
|
|
|
|
2009-07-29 14:33:14 +00:00
|
|
|
* Wed Jul 29 2009 Daniel P. Berrange <berrange@redhat.com> - 0.2.0-1.fc12
|
|
|
|
- Update to 0.2.0 release
|
|
|
|
|
2009-07-27 06:55:48 +00:00
|
|
|
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.0.3-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-05-07 11:55:21 +00:00
|
|
|
* Thu May 7 2009 Daniel P. Berrange <berrange@redhat.com> - 0.0.3-5.fc12
|
|
|
|
- Fix auth against libvirt (rhbz #499594)
|
|
|
|
- Fix confusion of VNC credentials (rhbz #499595)
|
|
|
|
- Correct keyboard grab handling (rhbz #499362)
|
|
|
|
|
2009-02-26 00:36:09 +00:00
|
|
|
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.0.3-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2008-07-07 19:29:36 +00:00
|
|
|
* Mon Jul 7 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.0.3-3.fc10
|
|
|
|
- fix conditional comparison
|
|
|
|
- remove file dep
|
|
|
|
|
2008-06-25 10:03:02 +00:00
|
|
|
* Wed Jun 25 2008 Daniel P. Berrange <berrange@redhat.com> - 0.0.3-2.fc10
|
|
|
|
- Rebuild for GNU TLS ABI bump
|
|
|
|
|
2008-03-10 14:58:12 +00:00
|
|
|
* Mon Mar 10 2008 Daniel P. Berrange <berrange@redhat.com> - 0.0.3-1.fc9
|
|
|
|
- Updated to 0.0.3 release
|
|
|
|
|
2008-02-18 21:14:10 +00:00
|
|
|
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.0.2-4
|
|
|
|
- Autorebuild for GCC 4.3
|
|
|
|
|
2008-01-11 22:47:40 +00:00
|
|
|
* Fri Jan 11 2008 Daniel P. Berrange <berrange@redhat.com> - 0.0.2-3.fc9
|
|
|
|
- Set domain name as window title
|
|
|
|
- Hide input for passwd fields during auth
|
|
|
|
|
2007-10-15 21:07:34 +00:00
|
|
|
* Mon Oct 15 2007 Daniel P. Berrange <berrange@redhat.com> - 0.0.2-2.fc8
|
|
|
|
- Change TLS x509 credential name to sync with libvirt
|
|
|
|
|
2007-08-29 00:40:26 +00:00
|
|
|
* Tue Aug 28 2007 Daniel P. Berrange <berrange@redhat.com> - 0.0.2-1.fc8
|
|
|
|
- Added support for remote console access
|
|
|
|
|
2007-08-17 21:21:10 +00:00
|
|
|
* Fri Aug 17 2007 Daniel P. Berrange <berrange@redhat.com> - 0.0.1-2.fc8
|
|
|
|
- Restrict built to x86 & ia64 because libvirt is only on those arches
|
|
|
|
|
2007-08-17 19:42:14 +00:00
|
|
|
* Wed Aug 15 2007 Daniel P. Berrange <berrange@redhat.com> - 0.0.1-1.fc8
|
|
|
|
- First release
|