- Update to 3.10.1
- Remove the dependency on libytnef, which apparently isn't needed for the PST importer and disable the experimental TNEF attachments plugin - Avoid help launch with F1 when evolution-help is not installed
This commit is contained in:
parent
565fe492f8
commit
d599a29ba4
1
.gitignore
vendored
1
.gitignore
vendored
@ -63,3 +63,4 @@ evolution-2.31.5.tar.bz2
|
|||||||
/evolution-3.9.91.tar.xz
|
/evolution-3.9.91.tar.xz
|
||||||
/evolution-3.9.92.tar.xz
|
/evolution-3.9.92.tar.xz
|
||||||
/evolution-3.10.0.tar.xz
|
/evolution-3.10.0.tar.xz
|
||||||
|
/evolution-3.10.1.tar.xz
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
diff -up evolution-3.9.1/shell/e-shell-window-actions.c.help-contents evolution-3.9.1/shell/e-shell-window-actions.c
|
diff -up evolution-3.10.0/shell/e-shell-window-actions.c.help-contents evolution-3.10.0/shell/e-shell-window-actions.c
|
||||||
--- evolution-3.9.1/shell/e-shell-window-actions.c.help-contents 2013-04-29 11:23:28.943063568 +0200
|
--- evolution-3.10.0/shell/e-shell-window-actions.c.help-contents 2013-09-07 18:34:59.000000000 +0200
|
||||||
+++ evolution-3.9.1/shell/e-shell-window-actions.c 2013-04-29 11:24:16.701599684 +0200
|
+++ evolution-3.10.0/shell/e-shell-window-actions.c 2013-10-10 08:51:03.863987108 +0200
|
||||||
@@ -1396,6 +1396,15 @@ e_shell_window_actions_init (EShellWindo
|
@@ -1414,6 +1414,17 @@ e_shell_window_actions_init (EShellWindo
|
||||||
if (path == NULL)
|
if (path == NULL)
|
||||||
gtk_action_set_visible (ACTION (SUBMIT_BUG), FALSE);
|
gtk_action_set_visible (ACTION (SUBMIT_BUG), FALSE);
|
||||||
g_free (path);
|
g_free (path);
|
||||||
@ -11,8 +11,10 @@ diff -up evolution-3.9.1/shell/e-shell-window-actions.c.help-contents evolution-
|
|||||||
+ path = g_build_filename (
|
+ path = g_build_filename (
|
||||||
+ EVOLUTION_DATADIR, "help", "C",
|
+ EVOLUTION_DATADIR, "help", "C",
|
||||||
+ PACKAGE, "index.page", NULL);
|
+ PACKAGE, "index.page", NULL);
|
||||||
+ if (!g_file_test (path, G_FILE_TEST_IS_REGULAR))
|
+ if (!g_file_test (path, G_FILE_TEST_IS_REGULAR)) {
|
||||||
+ gtk_action_set_visible (ACTION (CONTENTS), FALSE);
|
+ gtk_action_set_visible (ACTION (CONTENTS), FALSE);
|
||||||
|
+ gtk_action_set_sensitive (ACTION (CONTENTS), FALSE);
|
||||||
|
+ }
|
||||||
+ g_free (path);
|
+ g_free (path);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -30,7 +30,7 @@
|
|||||||
### Abstract ###
|
### Abstract ###
|
||||||
|
|
||||||
Name: evolution
|
Name: evolution
|
||||||
Version: 3.10.0
|
Version: 3.10.1
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Group: Applications/Productivity
|
Group: Applications/Productivity
|
||||||
Summary: Mail and calendar client for GNOME
|
Summary: Mail and calendar client for GNOME
|
||||||
@ -114,7 +114,6 @@ BuildRequires: libnotify-devel
|
|||||||
|
|
||||||
%if %{libpst_support}
|
%if %{libpst_support}
|
||||||
BuildRequires: libpst-devel
|
BuildRequires: libpst-devel
|
||||||
BuildRequires: libytnef-devel
|
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -407,7 +406,6 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{_libdir}/evolution/%{evo_base_version}/modules/module-settings.so
|
%{_libdir}/evolution/%{evo_base_version}/modules/module-settings.so
|
||||||
%{_libdir}/evolution/%{evo_base_version}/modules/module-startup-wizard.so
|
%{_libdir}/evolution/%{evo_base_version}/modules/module-startup-wizard.so
|
||||||
%{_libdir}/evolution/%{evo_base_version}/modules/module-text-highlight.so
|
%{_libdir}/evolution/%{evo_base_version}/modules/module-text-highlight.so
|
||||||
%{_libdir}/evolution/%{evo_base_version}/modules/module-tnef-attachment.so
|
|
||||||
%{_libdir}/evolution/%{evo_base_version}/modules/module-vcard-inline.so
|
%{_libdir}/evolution/%{evo_base_version}/modules/module-vcard-inline.so
|
||||||
%{_libdir}/evolution/%{evo_base_version}/modules/module-web-inspector.so
|
%{_libdir}/evolution/%{evo_base_version}/modules/module-web-inspector.so
|
||||||
|
|
||||||
@ -532,6 +530,12 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Oct 14 2013 Milan Crha <mcrha@redhat.com> - 3.10.1-1
|
||||||
|
- Update to 3.10.1
|
||||||
|
- Remove the dependency on libytnef, which apparently isn't needed for
|
||||||
|
the PST importer and disable the experimental TNEF attachments plugin
|
||||||
|
- Avoid help launch with F1 when evolution-help is not installed
|
||||||
|
|
||||||
* Mon Sep 23 2013 Milan Crha <mcrha@redhat.com> - 3.10.0-1
|
* Mon Sep 23 2013 Milan Crha <mcrha@redhat.com> - 3.10.0-1
|
||||||
- Update to 3.10.0
|
- Update to 3.10.0
|
||||||
- Remove explicit Requires on libpst in pst subpackage
|
- Remove explicit Requires on libpst in pst subpackage
|
||||||
|
Loading…
Reference in New Issue
Block a user