mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-05 06:33:50 +02:00
evolution: update to 3.52.2.
This commit is contained in:
parent
f6242b8169
commit
5ea3cbbefc
3 changed files with 2 additions and 83 deletions
|
@ -1,54 +0,0 @@
|
||||||
From a7fe0ab7cdf74ac73e4e3448e4fb29d4e7731f74 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Milan Crha <mcrha@redhat.com>
|
|
||||||
Date: Thu, 4 Apr 2024 08:52:40 +0200
|
|
||||||
Subject: [PATCH] I#2712 - Crash when hiding completed tasks
|
|
||||||
|
|
||||||
Closes https://gitlab.gnome.org/GNOME/evolution/-/issues/2712
|
|
||||||
---
|
|
||||||
src/calendar/gui/e-task-table.c | 10 ++++++----
|
|
||||||
1 file changed, 6 insertions(+), 4 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/src/calendar/gui/e-task-table.c b/src/calendar/gui/e-task-table.c
|
|
||||||
index a8e906e3e4..d92b279cb2 100644
|
|
||||||
--- a/src/calendar/gui/e-task-table.c
|
|
||||||
+++ b/src/calendar/gui/e-task-table.c
|
|
||||||
@@ -1376,7 +1376,7 @@ hide_completed_rows_ready (GObject *source_object,
|
|
||||||
{
|
|
||||||
ECalModel *model = user_data;
|
|
||||||
ECalClient *cal_client;
|
|
||||||
- GSList *m, *objects;
|
|
||||||
+ GSList *m, *objects = NULL;
|
|
||||||
gboolean changed = FALSE;
|
|
||||||
gint pos;
|
|
||||||
GPtrArray *comp_objects;
|
|
||||||
@@ -1384,7 +1384,8 @@ hide_completed_rows_ready (GObject *source_object,
|
|
||||||
|
|
||||||
cal_client = E_CAL_CLIENT (source_object);
|
|
||||||
|
|
||||||
- e_cal_client_get_object_list_finish (cal_client, result, &objects, &error);
|
|
||||||
+ if (!e_cal_client_get_object_list_finish (cal_client, result, &objects, &error))
|
|
||||||
+ objects = NULL;
|
|
||||||
|
|
||||||
if (g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED)) {
|
|
||||||
g_error_free (error);
|
|
||||||
@@ -1448,14 +1449,15 @@ show_completed_rows_ready (GObject *source_object,
|
|
||||||
{
|
|
||||||
ECalClient *cal_client;
|
|
||||||
ECalModel *model = user_data;
|
|
||||||
- GSList *m, *objects;
|
|
||||||
+ GSList *m, *objects = NULL;
|
|
||||||
GPtrArray *comp_objects;
|
|
||||||
GError *error = NULL;
|
|
||||||
|
|
||||||
cal_client = E_CAL_CLIENT (source_object);
|
|
||||||
g_return_if_fail (cal_client != NULL);
|
|
||||||
|
|
||||||
- e_cal_client_get_object_list_finish (cal_client, result, &objects, &error);
|
|
||||||
+ if (!e_cal_client_get_object_list_finish (cal_client, result, &objects, &error))
|
|
||||||
+ objects = NULL;
|
|
||||||
|
|
||||||
if (g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED)) {
|
|
||||||
g_error_free (error);
|
|
||||||
--
|
|
||||||
GitLab
|
|
||||||
|
|
|
@ -1,27 +0,0 @@
|
||||||
From e290cf27cd8a903acdf9c6ed7b746903bbda9e6d Mon Sep 17 00:00:00 2001
|
|
||||||
From: Milan Crha <mcrha@redhat.com>
|
|
||||||
Date: Thu, 11 Apr 2024 10:47:28 +0200
|
|
||||||
Subject: [PATCH] I#2617 - Wrong weeks in Month view when returning from
|
|
||||||
different page of dates
|
|
||||||
|
|
||||||
Closes https://gitlab.gnome.org/GNOME/evolution/-/issues/2617
|
|
||||||
---
|
|
||||||
src/modules/calendar/e-cal-shell-content.c | 2 +-
|
|
||||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
||||||
|
|
||||||
diff --git a/src/modules/calendar/e-cal-shell-content.c b/src/modules/calendar/e-cal-shell-content.c
|
|
||||||
index 0eb4b41c5f..9c2a0f9c8c 100644
|
|
||||||
--- a/src/modules/calendar/e-cal-shell-content.c
|
|
||||||
+++ b/src/modules/calendar/e-cal-shell-content.c
|
|
||||||
@@ -504,7 +504,7 @@ cal_shell_content_datepicker_selection_changed_cb (ECalendarItem *calitem,
|
|
||||||
cal_shell_content->priv->current_view == E_CAL_VIEW_KIND_LIST) {
|
|
||||||
sel_end = sel_start;
|
|
||||||
if (cal_shell_content->priv->current_view == E_CAL_VIEW_KIND_MONTH) {
|
|
||||||
- g_date_add_days (&sel_end, 7 * e_week_view_get_weeks_shown (E_WEEK_VIEW (cal_shell_content->priv->views[E_CAL_VIEW_KIND_WEEK])));
|
|
||||||
+ g_date_add_days (&sel_end, 7 * e_week_view_get_weeks_shown (E_WEEK_VIEW (cal_shell_content->priv->views[E_CAL_VIEW_KIND_MONTH])));
|
|
||||||
} else {
|
|
||||||
/* whole month */
|
|
||||||
g_date_set_day (&sel_start, 1);
|
|
||||||
--
|
|
||||||
GitLab
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# Template file for 'evolution'
|
# Template file for 'evolution'
|
||||||
pkgname=evolution
|
pkgname=evolution
|
||||||
version=3.52.0
|
version=3.52.2
|
||||||
revision=1
|
revision=1
|
||||||
build_style=cmake
|
build_style=cmake
|
||||||
build_helper="qemu"
|
build_helper="qemu"
|
||||||
|
@ -20,7 +20,7 @@ license="LGPL-2.1-or-later, LGPL-3.0-or-later, GPL-2.0-or-later"
|
||||||
homepage="https://wiki.gnome.org/Apps/Evolution"
|
homepage="https://wiki.gnome.org/Apps/Evolution"
|
||||||
changelog="https://gitlab.gnome.org/GNOME/evolution/-/raw/gnome-46/NEWS"
|
changelog="https://gitlab.gnome.org/GNOME/evolution/-/raw/gnome-46/NEWS"
|
||||||
distfiles="${GNOME_SITE}/evolution/${version%.*}/evolution-${version}.tar.xz"
|
distfiles="${GNOME_SITE}/evolution/${version%.*}/evolution-${version}.tar.xz"
|
||||||
checksum=5ef708d7c0e40582e271b30e2a07625b648c32c6340cb5488df44177c7c946a9
|
checksum=a48b7412d13edac74f6c09acfa676656e6a12edf0030cddc26029ac04da3e551
|
||||||
shlib_provides="libevolution-calendar.so libevolution-util.so libemail-engine.so
|
shlib_provides="libevolution-calendar.so libevolution-util.so libemail-engine.so
|
||||||
libevolution-mail.so libevolution-shell.so libevolution-mail-formatter.so
|
libevolution-mail.so libevolution-shell.so libevolution-mail-formatter.so
|
||||||
libevolution-mail-composer.so"
|
libevolution-mail-composer.so"
|
||||||
|
|
Loading…
Add table
Reference in a new issue