Blame SPECS/vinagre.spec

8ab9fc
%ifarch %{ix86} x86_64
8ab9fc
%define with_spice 1
8ab9fc
%endif
8ab9fc
8ab9fc
Name:           vinagre
8ab9fc
Version:        3.22.0
ebcc67
Release:        13%{?dist}
8ab9fc
Summary:        VNC client for GNOME
8ab9fc
8ab9fc
Group:          Applications/System
8ab9fc
License:        GPLv2+
8ab9fc
URL:            https://wiki.gnome.org/Apps/Vinagre
8ab9fc
#VCS: git:git://git.gnome.org/vinagre
8ab9fc
Source0:        https://download.gnome.org/sources/%{name}/3.22/%{name}-%{version}.tar.xz
8ab9fc
8ab9fc
# https://bugzilla.redhat.com/show_bug.cgi?id=1376044
8ab9fc
Patch0:         vinagre-3.14.3-RDP-update.patch
8ab9fc
8ab9fc
# https://bugzilla.redhat.com/show_bug.cgi?id=1384965
8ab9fc
Patch1:         vinagre-3.22.0-freerdp-versions.patch
8ab9fc
Patch2:         vinagre-3.22.0-rdp-connection-cancel.patch
8ab9fc
8ab9fc
# https://bugzilla.redhat.com/show_bug.cgi?id=1435715
8ab9fc
Patch3:         vinagre-3.22.0-fullscreen-toolbar.patch
8ab9fc
8ab9fc
# https://bugzilla.redhat.com/show_bug.cgi?id=1459111
8ab9fc
Patch4:         vinagre-3.22.0-share-clipboard.patch
8ab9fc
8ab9fc
# https://bugzilla.redhat.com/show_bug.cgi?id=1680229
8ab9fc
Patch5:         vinagre-3.22.0-freerdp2.patch
8ab9fc
8ab9fc
# https://bugzilla.redhat.com/show_bug.cgi?id=1569552
8ab9fc
Patch6:         vinagre-3.22.0-rdp-password-length.patch
8ab9fc
ebcc67
# https://bugzilla.redhat.com/show_bug.cgi?id=1364527
ebcc67
Patch7:         vinagre-3.22.0-multiple-app-instances.patch
ebcc67
8ab9fc
%if 0%{?with_spice}
8ab9fc
BuildRequires:  pkgconfig(spice-client-gtk-3.0)
8ab9fc
%endif
8ab9fc
BuildRequires:  pkgconfig(avahi-gobject)
8ab9fc
BuildRequires:  pkgconfig(avahi-ui-gtk3)
8ab9fc
BuildRequires:  pkgconfig(freerdp2)
8ab9fc
BuildRequires:  pkgconfig(gio-unix-2.0)
8ab9fc
BuildRequires:  pkgconfig(gtk+-3.0)
8ab9fc
BuildRequires:  pkgconfig(gtk-vnc-2.0)
8ab9fc
BuildRequires:  pkgconfig(libsecret-1)
8ab9fc
BuildRequires:  pkgconfig(libxml-2.0)
8ab9fc
BuildRequires:  pkgconfig(telepathy-glib)
8ab9fc
BuildRequires:  pkgconfig(vte-2.91)
8ab9fc
BuildRequires:  gnome-common
8ab9fc
BuildRequires:  desktop-file-utils
8ab9fc
BuildRequires:  /usr/bin/appstream-util
8ab9fc
BuildRequires:  intltool
8ab9fc
BuildRequires:  itstool
8ab9fc
BuildRequires:  vala-devel
8ab9fc
BuildRequires:  libappstream-glib-devel
8ab9fc
BuildRequires:  yelp-tools
8ab9fc
BuildRequires:  autoconf
8ab9fc
BuildRequires:  automake
8ab9fc
8ab9fc
# for /usr/share/dbus-1/services
8ab9fc
Requires: dbus
8ab9fc
Requires: telepathy-filesystem
8ab9fc
8ab9fc
%description
8ab9fc
Vinagre is a VNC client for the GNOME desktop.
8ab9fc
8ab9fc
With Vinagre you can have several connections open simultaneously, bookmark
8ab9fc
your servers thanks to the Favorites support, store the passwords in the
8ab9fc
GNOME keyring, and browse the network to look for VNC servers.
8ab9fc
8ab9fc
Apart from the VNC protocol, vinagre supports Spice and RDP.
8ab9fc
8ab9fc
8ab9fc
%prep
8ab9fc
%setup -q
8ab9fc
%patch0 -p1 -b .RDP-update
8ab9fc
%patch1 -p1 -b .freerdp-versions
8ab9fc
%patch2 -p1 -b .rdp-connection-cancel
8ab9fc
%patch3 -p1 -b .fullscreen-toolbar
8ab9fc
%patch4 -p1 -b .share-clipboard
8ab9fc
%patch5 -p1 -b .freerdp2
8ab9fc
%patch6 -p1 -b .rdp-password-length
ebcc67
%patch7 -p1 -b .multiple-app-instances
8ab9fc
8ab9fc
%build
8ab9fc
autoreconf -ivf
8ab9fc
%configure \
8ab9fc
%if 0%{?with_spice}
8ab9fc
           --enable-spice \
8ab9fc
%endif
8ab9fc
           --enable-rdp \
8ab9fc
           --enable-ssh \
8ab9fc
           --with-avahi
8ab9fc
make V=1 %{?_smp_mflags}
8ab9fc
8ab9fc
8ab9fc
%install
8ab9fc
make install DESTDIR=%{buildroot} INSTALL="install -p"
8ab9fc
8ab9fc
%find_lang vinagre --with-gnome
8ab9fc
8ab9fc
8ab9fc
%check
8ab9fc
make check
8ab9fc
8ab9fc
8ab9fc
%post
8ab9fc
update-desktop-database &> /dev/null || :
8ab9fc
touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
8ab9fc
touch --no-create %{_datadir}/mime/packages &>/dev/null || :
8ab9fc
8ab9fc
8ab9fc
%postun
8ab9fc
update-desktop-database &> /dev/null || :
8ab9fc
if [ $1 -eq 0 ]; then
8ab9fc
  touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
8ab9fc
  gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
8ab9fc
  touch --no-create %{_datadir}/mime/packages &>/dev/null || :
8ab9fc
  update-mime-database -n %{_datadir}/mime &>/dev/null || :
8ab9fc
  glib-compile-schemas %{_datadir}/glib-2.0/schemas &>/dev/null || :
8ab9fc
fi
8ab9fc
8ab9fc
8ab9fc
%posttrans
8ab9fc
gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
8ab9fc
update-mime-database -n %{_datadir}/mime &>/dev/null || :
8ab9fc
glib-compile-schemas %{_datadir}/glib-2.0/schemas &>/dev/null || :
8ab9fc
8ab9fc
8ab9fc
%files -f vinagre.lang
8ab9fc
%doc AUTHORS NEWS README
8ab9fc
%license COPYING
8ab9fc
%{_bindir}/vinagre
8ab9fc
%{_datadir}/metainfo/*.appdata.xml
8ab9fc
%{_datadir}/applications/*.desktop
8ab9fc
%{_datadir}/icons/hicolor/*/*/*
8ab9fc
%{_datadir}/mime/packages/vinagre-mime.xml
8ab9fc
%{_datadir}/vinagre/
8ab9fc
%{_datadir}/dbus-1/services/org.freedesktop.Telepathy.Client.Vinagre.service
8ab9fc
%{_datadir}/telepathy/clients/Vinagre.client
8ab9fc
%{_datadir}/glib-2.0/schemas/org.gnome.Vinagre.gschema.xml
8ab9fc
%dir %{_datadir}/GConf/
8ab9fc
%dir %{_datadir}/GConf/gsettings/
8ab9fc
%{_datadir}/GConf/gsettings/org.gnome.Vinagre.convert
8ab9fc
%doc %{_mandir}/man1/vinagre.1.gz
8ab9fc
8ab9fc
8ab9fc
%changelog
ebcc67
* Thu Apr 16 2020 Felipe Borges <feborges@redhat.com> - 3.22.0-13
ebcc67
- Allow the launch of multiple application instances
ebcc67
- Resolves: #1364527
ebcc67
8ab9fc
* Fri Mar 15 2019 Marek Kasik <mkasik@redhat.com> - 3.22.0-12
8ab9fc
- Apply the patch
8ab9fc
- Resolves: #1569552
8ab9fc
8ab9fc
* Fri Mar 15 2019 Marek Kasik <mkasik@redhat.com> - 3.22.0-11
8ab9fc
- Set maximum length of RDP password to 255 characters
8ab9fc
- Resolves: #1569552
8ab9fc
8ab9fc
* Mon Feb 25 2019 Marek Kasik <mkasik@redhat.com> - 3.22.0-10
8ab9fc
- Make vinagre build with FreeRDP 2 library
8ab9fc
- Resolves: #1680229
8ab9fc
8ab9fc
* Mon Sep 25 2017 Marek Kasik <mkasik@redhat.com> - 3.22.0-9
8ab9fc
- Fix "Share clipboard" functionality in Spice plugin
8ab9fc
- Resolves: #1459111
8ab9fc
8ab9fc
* Mon Mar 27 2017 Marek Kasik <mkasik@redhat.com> - 3.22.0-8
8ab9fc
- Rebuild with new spice-gtk3
8ab9fc
- Related: #1435715
8ab9fc
8ab9fc
* Fri Mar 24 2017 Marek Kasik <mkasik@redhat.com> - 3.22.0-7
8ab9fc
- Fix showing of fullscreen toolbar
8ab9fc
- Resolves: #1435715
8ab9fc
8ab9fc
* Wed Mar 15 2017 Kalev Lember <klember@redhat.com> - 3.22.0-6
8ab9fc
- Rebuilt for spice-gtk3 soname bump
8ab9fc
- Related: #1402474
8ab9fc
8ab9fc
* Thu Mar  2 2017 Marek Kasik <mkasik@redhat.com> - 3.22.0-5
8ab9fc
- ifdef some variables based on FreeRDP version (Coverity)
8ab9fc
- Related: #1384965
8ab9fc
8ab9fc
* Thu Mar  2 2017 Marek Kasik <mkasik@redhat.com> - 3.22.0-4
8ab9fc
- Rebuild with newer shared-mime-info
8ab9fc
- Related: #1384965
8ab9fc
8ab9fc
* Tue Feb 28 2017 Marek Kasik <mkasik@redhat.com> - 3.22.0-3
8ab9fc
- Don't rely on file triggers (they need newer rpm)
8ab9fc
- Related: #1384965
8ab9fc
8ab9fc
* Thu Feb 16 2017 Marek Kasik <mkasik@redhat.com> - 3.22.0-2
8ab9fc
- Add patches
8ab9fc
- Related: #1384965
8ab9fc
8ab9fc
* Wed Feb 15 2017 Marek Kasik <mkasik@redhat.com> - 3.22.0-1
8ab9fc
- Update to 3.22.0
8ab9fc
- Remove/modify current patches when needed
8ab9fc
- Rely on file triggers
8ab9fc
- Resolves: #1384965
8ab9fc
8ab9fc
* Mon Sep 19 2016 Marek Kasik <mkasik@redhat.com> - 3.14.3-11
8ab9fc
- Handle connection failures of RDP plugin
8ab9fc
- Resolves: #1375720
8ab9fc
8ab9fc
* Mon Sep 19 2016 Marek Kasik <mkasik@redhat.com> - 3.14.3-10
8ab9fc
- Check RDP events in timeout GSource not in idle
8ab9fc
- Resolves: #1376044
8ab9fc
8ab9fc
* Thu Sep 8 2016 Felipe Borges <feborges@redhat.com> - 3.14.3-9
8ab9fc
- Focus on new RDP tab
8ab9fc
- Do not capture key events of other tabs
8ab9fc
- Resolves: #1291275
8ab9fc
8ab9fc
* Tue Aug 30 2016 Felipe Borges <feborges@redhat.com> - 3.14.3-8
8ab9fc
- Allow to open multiple connections with same host
8ab9fc
- Resolves: #1291275
8ab9fc
8ab9fc
* Thu May 05 2016 Felipe Borges <feborges@redhat.com> - 3.14.3-7
8ab9fc
- Correct authentication attempts control
8ab9fc
- Add missing translations
8ab9fc
- Resolves: #1291275
8ab9fc
8ab9fc
* Wed Apr 27 2016 Felipe Borges <feborges@redhat.com> - 3.14.3-6
8ab9fc
- Add minimize button to the fullscreen toolbar
8ab9fc
- Handle domain when looking for credentials
8ab9fc
- Store credentials for RDP
8ab9fc
- Fix RDP initialization with recent FreeRDP
8ab9fc
- Allow scalling of RDP sessions
8ab9fc
- Resolves: #1291275
8ab9fc
8ab9fc
* Fri Mar 18 2016 Marek Kasik <mkasik@redhat.com> - 3.14.3-5
8ab9fc
- Add missing translations (patch by Parag Nemade)
8ab9fc
- Resolves: #1304230
8ab9fc
8ab9fc
* Tue Mar 01 2016 Felipe Borges <feborges@redhat.com> - 3.14.3-4
8ab9fc
- Use cached session size for RDP
8ab9fc
- Resolves: #1291281
8ab9fc
8ab9fc
* Tue Mar 01 2016 Felipe Borges <feborges@redhat.com> - 3.14.3-3
8ab9fc
- Fix selection rectangle when user leaves window
8ab9fc
- Resolves: #1291287
8ab9fc
8ab9fc
* Thu Feb 25 2016 Felipe Borges <feborges@redhat.com> - 3.14.3-2
8ab9fc
- Change SPICE passwords limited to 60 characters
8ab9fc
- Resolves: #1291297
8ab9fc
8ab9fc
* Thu Apr 30 2015 Marek Kasik <mkasik@redhat.com> - 3.14.3-1
8ab9fc
- Update to 3.14.3
8ab9fc
- Add translations update from translation team
8ab9fc
- Add translation fix from upstream
8ab9fc
- Remove unused patches
8ab9fc
- Resolves: #1174568
8ab9fc
8ab9fc
* Mon Oct 20 2014 Marek Kasik <mkasik@redhat.com> - 3.8.2-12
8ab9fc
- Add translations of new strings
8ab9fc
- Resolves: #1142870
8ab9fc
8ab9fc
* Wed Sep 17 2014 Marek Kasik <mkasik@redhat.com> - 3.8.2-11
8ab9fc
- Add build-dependency of yelp-tools
8ab9fc
- Related: #1091765
8ab9fc
8ab9fc
* Wed Sep 17 2014 Marek Kasik <mkasik@redhat.com> - 3.8.2-10
8ab9fc
- Run autoreconf because of modified configure.ac
8ab9fc
- Related: #1091765
8ab9fc
8ab9fc
* Wed Sep 17 2014 Marek Kasik <mkasik@redhat.com> - 3.8.2-9
8ab9fc
- Use FreeRDP API in RDP plugin
8ab9fc
- Request RDP certificate verification if needed
8ab9fc
- Add available translations for new strings
8ab9fc
- Resolves: #1091765
8ab9fc
8ab9fc
* Wed Sep 17 2014 Marek Kasik <mkasik@redhat.com> - 3.8.2-8
8ab9fc
- Allow to customize desktop size for RDP protocol
8ab9fc
- Add available translations for new strings
8ab9fc
- Resolves: #862389
8ab9fc
8ab9fc
* Tue Sep 16 2014 Marek Kasik <mkasik@redhat.com> - 3.8.2-7
8ab9fc
- Show correct title in error dialog
8ab9fc
- Resolves: #1141150
8ab9fc
8ab9fc
* Wed Sep 10 2014 Marek Kasik <mkasik@redhat.com> - 3.8.2-6
8ab9fc
- Rebuild because of rpmdiff
8ab9fc
- Related: #1068615
8ab9fc
8ab9fc
* Wed Sep 10 2014 Marek Kasik <mkasik@redhat.com> - 3.8.2-5
8ab9fc
- Don't close connect dialog when showing help
8ab9fc
- Resolves: #1068615
8ab9fc
8ab9fc
* Tue Jan 28 2014 David King <dking@redhat.com> - 3.8.2-4
8ab9fc
- Fix storing passwords in libsecret (#1055914)
8ab9fc
8ab9fc
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 3.8.2-3
8ab9fc
- Mass rebuild 2014-01-24
8ab9fc
8ab9fc
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 3.8.2-2
8ab9fc
- Mass rebuild 2013-12-27
8ab9fc
8ab9fc
* Wed Jul  3 2013 Marek Kasik <mkasik@redhat.com> - 3.8.2-1.2
8ab9fc
- Enable RDP again and switch to FreeRDP
8ab9fc
- Resolves: #978825
8ab9fc
8ab9fc
* Thu Jun 27 2013 Marek Kasik <mkasik@redhat.com> - 3.8.2-1.1
8ab9fc
- Disable RDP plugin temporarily
8ab9fc
- Related: #978825
8ab9fc
8ab9fc
* Tue May 14 2013 Matthias Clasen <mclasen@redhat.com> - 3.8.2-1
8ab9fc
- Update to 3.8.2
8ab9fc
8ab9fc
* Tue Apr 23 2013 Mat Booth <fedora@matbooth.co.uk> - 3.8.1-2
8ab9fc
- Add explicit dep on rdesktop for RDP functionality (#903225)
8ab9fc
8ab9fc
* Mon Apr 15 2013 Kalev Lember <kalevlember@gmail.com> - 3.8.1-1
8ab9fc
- Update to 3.8.1
8ab9fc
8ab9fc
* Tue Mar 26 2013 Kalev Lember <kalevlember@gmail.com> - 3.8.0-1
8ab9fc
- Update to 3.8.0
8ab9fc
8ab9fc
* Tue Mar 19 2013 Richard Hughes <rhughes@redhat.com> - 3.7.92-1
8ab9fc
- Update to 3.7.92
8ab9fc
8ab9fc
* Fri Mar  8 2013 Matthias Clasen <mclasen@redhat.com> - 3.7.91-1
8ab9fc
- Update to 3.7.91
8ab9fc
8ab9fc
* Tue Feb 19 2013 Richard Hughes <rhughes@redhat.com> - 3.7.90-1
8ab9fc
- Update to 3.7.90
8ab9fc
8ab9fc
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.7.4-2
8ab9fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
8ab9fc
8ab9fc
* Wed Jan 16 2013 Richard Hughes <hughsient@gmail.com> - 3.7.4-1
8ab9fc
- Update to 3.7.4
8ab9fc
8ab9fc
* Wed Jan 09 2013 Richard Hughes <hughsient@gmail.com> - 3.7.3-1
8ab9fc
- Update to 3.7.3
8ab9fc
8ab9fc
* Tue Nov 13 2012 Kalev Lember <kalevlember@gmail.com> - 3.6.2-1
8ab9fc
- Update to 3.6.2
8ab9fc
8ab9fc
* Wed Oct 17 2012 Kalev Lember <kalevlember@gmail.com> - 3.6.1-1
8ab9fc
- Update to 3.6.1
8ab9fc
8ab9fc
* Wed Sep 26 2012 Matthias Clasen <mclasen@redhat.com> - 3.6.0-1
8ab9fc
- Update to 3.6.0
8ab9fc
8ab9fc
* Wed Sep 19 2012 Richard Hughes <hughsient@gmail.com> - 3.5.92-1
8ab9fc
- Update to 3.5.92
8ab9fc
8ab9fc
* Thu Sep  6 2012 Matthias Clasen <mclasen@redhat.com> - 3.5.90-2
8ab9fc
- Rebuild against new spice
8ab9fc
8ab9fc
* Wed Aug 22 2012 Richard Hughes <hughsient@gmail.com> - 3.5.90-1
8ab9fc
- Update to 3.5.90
8ab9fc
8ab9fc
* Thu Aug 09 2012 Christophe Fergeau <cfergeau@redhat.com> - 3.5.2-3
8ab9fc
- Rebuilt against new spice-gtk
8ab9fc
8ab9fc
* Fri Jul 27 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.5.2-2
8ab9fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
8ab9fc
8ab9fc
* Thu Jun 07 2012 Richard Hughes <hughsient@gmail.com> - 3.5.2-1
8ab9fc
- Update to 3.5.2
8ab9fc
8ab9fc
* Sun May 06 2012 Kalev Lember <kalevlember@gmail.com> - 3.5.1-1
8ab9fc
- Update to 3.5.1
8ab9fc
8ab9fc
* Tue Apr 24 2012 Kalev Lember <kalevlember@gmail.com> - 3.4.1-2
8ab9fc
- Silence rpm scriptlet output
8ab9fc
8ab9fc
* Tue Apr 17 2012 Kalev Lember <kalevlember@gmail.com> - 3.4.1-1
8ab9fc
- Update to 3.4.1
8ab9fc
- Dropped upstreamed translation patch
8ab9fc
8ab9fc
* Wed Mar 28 2012 Richard Hughes <rhughes@redhat.com> - 3.4.0-2
8ab9fc
- Fix the build by fixing the Russian help translation.
8ab9fc
8ab9fc
* Tue Mar 27 2012 Debarshi Ray <rishi@fedoraproject.org> - 3.4.0-1
8ab9fc
- Update to 3.4.0
8ab9fc
8ab9fc
* Wed Mar 21 2012 Kalev Lember <kalevlember@gmail.com> - 3.3.92-1
8ab9fc
- Update to 3.3.92
8ab9fc
8ab9fc
* Fri Mar  9 2012 Ville Skyttä <ville.skytta@iki.fi> - 3.3.4-3
8ab9fc
- Own %%{_datadir}/telepathy and %%{_datadir}/GConf dirs (#681636).
8ab9fc
8ab9fc
* Mon Feb 13 2012 Matthias Clasen <mclasen@redhat.com> - 3.3.4-2
8ab9fc
- Update the description to mention RDP and Spice
8ab9fc
8ab9fc
* Tue Jan 17 2012 Matthias Clasen <mclasen@redhat.com> - 3.3.4-1
8ab9fc
- Update to 3.3.4
8ab9fc
8ab9fc
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.3-2
8ab9fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
8ab9fc
8ab9fc
* Tue Dec 20 2011 Matthias Clasen <mclasen@redhat.com> - 3.3.3-1
8ab9fc
- Update to 3.3.3
8ab9fc
8ab9fc
* Thu Nov 24 2011 Tomas Bzatek <tbzatek@redhat.com> - 3.3.2-2
8ab9fc
- Fix the spice plugin
8ab9fc
8ab9fc
* Tue Nov 22 2011 Matthias Clasen <mclasen@redhat.com> - 3.3.2-1
8ab9fc
- Update to 3.3.2
8ab9fc
8ab9fc
* Wed Nov  2 2011 Matthias Clasen <mclasen@redhat.com> - 3.3.1-1
8ab9fc
- Update to 3.3.1
8ab9fc
8ab9fc
* Wed Oct 26 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.1-2
8ab9fc
- Rebuilt for glibc bug#747377
8ab9fc
8ab9fc
* Tue Oct 18 2011 Matthias Clasen <mclasen@redhat.com> - 3.2.1-1
8ab9fc
- Update 3.2.1
8ab9fc
8ab9fc
* Tue Sep 27 2011 Ray <rstrode@redhat.com> - 3.2.0-1
8ab9fc
- Update to 3.2.0
8ab9fc
8ab9fc
* Tue Sep 20 2011 Matthias Clasen <mclasen@redhat.com> - 3.1.92-1
8ab9fc
- Update to 3.1.92
8ab9fc
8ab9fc
* Tue Sep  6 2011 Matthias Clasen <mclasen@redhat.com> - 3.1.91-1
8ab9fc
- Update to 3.1.91
8ab9fc
8ab9fc
* Wed Aug 31 2011 Matthias Clasen <mclasen@redhat.com> - 3.1.90-1
8ab9fc
- Update to 3.1.90
8ab9fc
- Make the dbus dep archful
8ab9fc
8ab9fc
* Thu Aug 18 2011 Matthias Clasen <mclasen@redhat.com> - 3.1.5-1
8ab9fc
- Update to 3.1.5
8ab9fc
8ab9fc
* Wed Aug 03 2011 Adam Williamson <awilliam@redhat.com> - 3.1.4-2
8ab9fc
- rebuild against updated spice
8ab9fc
8ab9fc
* Mon Jul 25 2011 Matthew Barnes <mbarnes@redhat.com> 3.1.4-1
8ab9fc
- Update to 3.1.4
8ab9fc
8ab9fc
* Tue Jul 05 2011 Bastien Nocera <bnocera@redhat.com> 3.1.3-1
8ab9fc
- Update to 3.1.3
8ab9fc
8ab9fc
* Mon Jun 20 2011 Tomas Bzatek <tbzatek@redhat.com> - 3.1.2-3
8ab9fc
- Fix vala sources compilation
8ab9fc
8ab9fc
* Wed Jun 15 2011 Tomas Bzatek <tbzatek@redhat.com> - 3.1.2-2
8ab9fc
- Fix the main notebook widget expansion
8ab9fc
8ab9fc
* Tue Jun 14 2011 Tomas Bzatek <tbzatek@redhat.com> - 3.1.2-1
8ab9fc
- Update to 3.1.2
8ab9fc
- Removed -devel package
8ab9fc
8ab9fc
* Wed May 11 2011 Tomas Bzatek <tbzatek@redhat.com> - 3.1.1-1
8ab9fc
- Update to 3.1.1
8ab9fc
8ab9fc
* Sat May 07 2011 Christopher Aillon <caillon@redhat.com> - 3.0.1-3
8ab9fc
- Update scriptlets
8ab9fc
8ab9fc
* Thu Apr 28 2011 Dan Horák <dan[at]danny.cz> - 3.0.1-2
8ab9fc
- spice available only on x86
8ab9fc
8ab9fc
* Mon Apr 25 2011 Matthias Clasen <mclasen@redhat.com> - 3.0.1-1
8ab9fc
- Update to 3.0.1
8ab9fc
8ab9fc
* Tue Apr  5 2011 Christopher Aillon <caillon@redhat.com> - 3.0.0-2
8ab9fc
- Kill off the remnants of GConf, this uses GSettings now.
8ab9fc
- Bring back ssh support (by building against vte3 instead of vte)
8ab9fc
8ab9fc
* Mon Apr  4 2011 Matthias Clasen <mclasen@redhat.com> - 3.0.0-1
8ab9fc
- Update to 3.0.0
8ab9fc
8ab9fc
* Fri Mar 25 2011 Matthias Clasen <mclasen@redhat.com> - 2.91.93-1
8ab9fc
- Update to 2.91.93
8ab9fc
8ab9fc
* Mon Mar 21 2011 Matthias Clasen <mclasen@redhat.com> - 2.91.92-1
8ab9fc
- Update to 2.91.92
8ab9fc
8ab9fc
* Tue Mar  8 2011 Matthias Clasen <mclasen@redhat.com> - 2.91.91-2
8ab9fc
- Fix build
8ab9fc
8ab9fc
* Mon Mar  7 2011 Matthias Clasen <mclasen@redhat.com> - 2.91.91-1
8ab9fc
- Update to 2.91.91
8ab9fc
8ab9fc
* Tue Mar  1 2011 Matthias Clasen <mclasen@redhat.com> - 2.91.8-2
8ab9fc
- Update to 2.91.8
8ab9fc
- Build the spice plugin
8ab9fc
8ab9fc
* Tue Feb 22 2011 Matthias Clasen <mclasen@redhat.com> - 2.91.7-1
8ab9fc
- Update to 2.91.7
8ab9fc
8ab9fc
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.31.4-3
8ab9fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
8ab9fc
8ab9fc
* Thu Aug 19 2010 Matthias Clasen <mclasen@redhat.com> 2.31.4-2
8ab9fc
- Disable the applet
8ab9fc
- Build against gtk3
8ab9fc
8ab9fc
* Wed Jun 30 2010 Matthias Clasen <mclasen@redhat.com> 2.31.4-1
8ab9fc
- Update to 2.31.4
8ab9fc
8ab9fc
* Sat Jun 19 2010 Matthias Clasen <mclasen@redhat.com> 2.30.1-2
8ab9fc
- Reduce overlinking
8ab9fc
8ab9fc
* Thu May 27 2010 Matthias Clasen <mclasen@redhat.com> 2.30.1-1
8ab9fc
- Update to 2.30.1
8ab9fc
8ab9fc
* Mon Mar 29 2010 Matthias Clasen <mclasen@redhat.com> 2.30.0-1
8ab9fc
- Update to 2.30.0
8ab9fc
- Modernize the icon cache handling
8ab9fc
8ab9fc
* Tue Mar  9 2010 Tomas Bzatek <tbzatek@redhat.com> 2.29.92-1
8ab9fc
- Update to 2.29.92
8ab9fc
8ab9fc
* Mon Feb 22 2010 Matthias Clasen <mclasen@redhat.com> 2.29.91-1
8ab9fc
- Update to 2.29.91
8ab9fc
8ab9fc
* Wed Feb 10 2010 Bastien Nocera <bnocera@redhat.com> 2.29.90-1
8ab9fc
- Update to 2.29.90
8ab9fc
8ab9fc
* Tue Jan 26 2010 Matthias Clasen <mclasen@redhat.com> 2.29.6-1
8ab9fc
- Update to 2.29.6
8ab9fc
8ab9fc
* Mon Jan  4 2010 Matthias Clasen <mclasen@redhat.com> 2.29.1-2
8ab9fc
- Don't crash when the history file is empty (#552076)
8ab9fc
8ab9fc
* Fri Dec  4 2009 Matthias Clasen <mclasen@redhat.com> 2.29.1-1
8ab9fc
- 2.29.1
8ab9fc
8ab9fc
* Mon Oct 19 2009 Matthias Clasen <mclasen@redhat.com> 2.28.1-1
8ab9fc
- Update to 2.28.1
8ab9fc
8ab9fc
* Wed Sep 23 2009 Matthias Clasen <mclasen@redhat.com> 2.28.0.1-1
8ab9fc
- Update to 2.28.0.1
8ab9fc
8ab9fc
* Fri Sep 18 2009 Bastien Nocera <bnocera@redhat.com> 2.27.92-3
8ab9fc
- Update mDNS patch
8ab9fc
8ab9fc
* Fri Sep 18 2009 Bastien Nocera <bnocera@redhat.com> 2.27.92-2
8ab9fc
- Fix mDNS bookmarks activation
8ab9fc
8ab9fc
* Mon Sep  7 2009 Matthias Clasen <mclasen@redhat.com> - 2.27.92-1
8ab9fc
- Update to 2.27.92
8ab9fc
8ab9fc
* Sat Sep  5 2009 Matthias Clasen <mclasen@redhat.com> - 2.27.91-3
8ab9fc
- Fix warnings at startup (#521382)
8ab9fc
8ab9fc
* Thu Sep  3 2009 Matthias Clasen <mclasen@redhat.com> - 2.27.91-2
8ab9fc
- Make ids unique
8ab9fc
8ab9fc
* Tue Aug 25 2009 Matthias Clasen <mclasen@redhat.com> - 2.27.91-1
8ab9fc
- Update to 2.27.91
8ab9fc
8ab9fc
* Tue Aug 11 2009 Matthias Clasen <mclasen@redhat.com> - 2.27.90-1
8ab9fc
- 2.27.90
8ab9fc
8ab9fc
* Tue Aug 04 2009 Bastien Nocera <bnocera@redhat.com> 2.27.5-2
8ab9fc
- Fix pkg-config requires
8ab9fc
8ab9fc
* Tue Jul 28 2009 Matthisa Clasen <mclasen@redhat.com> - 2.27.5-1
8ab9fc
- Update to 2.27.5
8ab9fc
- Split off a -devel package
8ab9fc
8ab9fc
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.26.1-2
8ab9fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
8ab9fc
8ab9fc
* Mon Apr 13 2009 Matthias Clasen <mclasen@redhat.com> - 2.26.1-1
8ab9fc
- Update to 2.26.1
8ab9fc
- See http://download.gnome.org/sources/vinagre/2.26/vinagre-2.26.1.news
8ab9fc
8ab9fc
* Mon Mar 16 2009 Matthias Clasen <mclasen@redhat.com> - 2.26.0-1
8ab9fc
- Update to 2.26.0
8ab9fc
8ab9fc
* Mon Mar  2 2009 Matthias Clasen <mclasen@redhat.com> - 2.25.92-1
8ab9fc
- Update to 2.25.92
8ab9fc
8ab9fc
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.25.91-2
8ab9fc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
8ab9fc
8ab9fc
* Wed Feb 18 2009 Matthias Clasen <mclasen@redhat.com> - 2.25.91-1
8ab9fc
- Update to 2.25.91
8ab9fc
8ab9fc
* Tue Feb  3 2009 Matthias Clasen <mclasen@redhat.com> - 2.25.90-1
8ab9fc
- Update to 2.25.90
8ab9fc
8ab9fc
* Fri Jan 23 2009 Matthias Clasen <mclasen@redhat.com> - 2.25.5-1
8ab9fc
- Update to 2.25.5
8ab9fc
8ab9fc
* Tue Jan  6 2009 Matthias Clasen <mclasen@redhat.com> - 2.25.4-1
8ab9fc
- Update to 2.25.4
8ab9fc
8ab9fc
* Wed Dec 17 2008 Matthias Clasen <mclasen@redhat.com> - 2.25.3-1
8ab9fc
- Update to 2.25.3
8ab9fc
8ab9fc
* Sat Nov 22 2008 Matthias Clasen <mclasen@redhat.com> - 2.24.1-2
8ab9fc
- Better URL
8ab9fc
- Tweak %%description
8ab9fc
8ab9fc
* Mon Oct 20 2008 Matthias Clasen <mclasen@redhat.com> - 2.24.1-1
8ab9fc
- Update to 2.24.1
8ab9fc
8ab9fc
* Thu Oct  9 2008 Matthias Clasen <mclasen@redhat.com> - 2.24.0-2
8ab9fc
- Save some space
8ab9fc
8ab9fc
* Mon Sep 22 2008 Matthias Clasen <mclasen@redhat.com> - 2.24.0-1
8ab9fc
- Update to 2.24.0
8ab9fc
8ab9fc
* Mon Sep  8 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.92-1
8ab9fc
- Update to 2.23.92
8ab9fc
8ab9fc
* Tue Sep  2 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.91-1
8ab9fc
- Update to 2.23.91
8ab9fc
8ab9fc
* Fri Aug 22 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.90-1
8ab9fc
- Update to 2.23.90
8ab9fc
8ab9fc
* Wed Jun 25 2008 - Bastien Nocera <bnocera@redhat.com> - 2.23.4-2
8ab9fc
- Rebuild
8ab9fc
8ab9fc
* Tue Jun 17 2008 - Bastien Nocera <bnocera@redhat.com> - 2.23.4-1
8ab9fc
- Update to 2.23.4
8ab9fc
- Fix URL (#451746)
8ab9fc
8ab9fc
* Wed Jun  4 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.3.1-1
8ab9fc
- Update to 2.23.3.1
8ab9fc
8ab9fc
* Fri Apr 25 2008 Matthias Clasen <mclasen@redhat.com> - 2.23.1-1
8ab9fc
- Update to 2.23.1
8ab9fc
8ab9fc
* Mon Apr  7 2008 Matthias Clasen <mclasen@redhat.com> - 0.5.1-1
8ab9fc
- Update to 0.5.1
8ab9fc
8ab9fc
* Mon Mar 10 2008 Matthias Clasen <mclasen@redhat.com> - 0.5.0-1
8ab9fc
- Update to 0.5.0
8ab9fc
8ab9fc
* Mon Feb 25 2008 Matthias Clasen <mclasen@redhat.com> - 0.4.92-1
8ab9fc
- Update to 0.4.92
8ab9fc
8ab9fc
* Mon Feb 18 2008 Matthias Clasen <mclasen@redhat.com> - 0.4.91-2
8ab9fc
- Spec file fixes
8ab9fc
8ab9fc
* Tue Feb 12 2008 Matthias Clasen <mclasen@redhat.com> - 0.4.91-1
8ab9fc
- Update to 0.4.91
8ab9fc
8ab9fc
* Tue Jan 29 2008 Matthias Clasen <mclasen@redhat.com> - 0.4.90-1
8ab9fc
- Update to 0.4.90
8ab9fc
8ab9fc
* Thu Dec 13 2007 - Bastien Nocera <bnocera@redhat.com> - 0.4-1
8ab9fc
- Update to 0.4 and drop obsolete patches
8ab9fc
8ab9fc
* Fri Nov 23 2007 - Bastien Nocera <bnocera@redhat.com> - 0.3-3
8ab9fc
- Fix crasher when passing broken options on the command-line (#394671)
8ab9fc
8ab9fc
* Thu Oct 25 2007 - Bastien Nocera <bnocera@redhat.com> - 0.3-2
8ab9fc
- Fix crasher when setting a favourite with no password (#352371)
8ab9fc
8ab9fc
* Mon Sep 24 2007 - Bastien Nocera <bnocera@redhat.com> - 0.3-1
8ab9fc
- Update to 0.3
8ab9fc
8ab9fc
* Wed Aug 22 2007 - Bastien Nocera <bnocera@redhat.com> - 0.2-1
8ab9fc
- First version
8ab9fc
- Fix plenty of comments from Ray Strode as per review
8ab9fc
- Have work-around for BZ #253734
8ab9fc