Hello community, here is the log from the commit of package gnome-calendar for openSUSE:Factory checked in at 2019-05-16 22:08:15 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gnome-calendar (Old) and /work/SRC/openSUSE:Factory/.gnome-calendar.new.5148 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gnome-calendar" Thu May 16 22:08:15 2019 rev:28 rq:703152 version:3.32.2 Changes: -------- --- /work/SRC/openSUSE:Factory/gnome-calendar/gnome-calendar.changes 2019-05-03 22:46:37.939797556 +0200 +++ /work/SRC/openSUSE:Factory/.gnome-calendar.new.5148/gnome-calendar.changes 2019-05-16 22:08:22.562373357 +0200 @@ -1,0 +2,6 @@ +Fri May 10 15:35:33 UTC 2019 - Bjørn Lie <[email protected]> + +- Update to version 3.32.2: + + Fix timezone handling of all day events. + +------------------------------------------------------------------- Old: ---- gnome-calendar-3.32.1.tar.xz New: ---- gnome-calendar-3.32.2.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gnome-calendar.spec ++++++ --- /var/tmp/diff_new_pack.Zw6hZV/_old 2019-05-16 22:08:23.778372252 +0200 +++ /var/tmp/diff_new_pack.Zw6hZV/_new 2019-05-16 22:08:23.778372252 +0200 @@ -17,7 +17,7 @@ Name: gnome-calendar -Version: 3.32.1 +Version: 3.32.2 Release: 0 Summary: A calendar application for GNOME License: GPL-3.0-or-later ++++++ gnome-calendar-3.32.1.tar.xz -> gnome-calendar-3.32.2.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-calendar-3.32.1/NEWS new/gnome-calendar-3.32.2/NEWS --- old/gnome-calendar-3.32.1/NEWS 2019-04-24 00:24:46.000000000 +0200 +++ new/gnome-calendar-3.32.2/NEWS 2019-05-10 17:07:55.000000000 +0200 @@ -1,3 +1,6 @@ +Major changes in 3.32.2: +* Fix timezone handling of all day events (Florian Latifi) + Major changes in 3.32.1: * Fix release date field in AppData * Updated translations diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-calendar-3.32.1/meson.build new/gnome-calendar-3.32.2/meson.build --- old/gnome-calendar-3.32.1/meson.build 2019-04-24 00:24:46.000000000 +0200 +++ new/gnome-calendar-3.32.2/meson.build 2019-05-10 17:07:55.000000000 +0200 @@ -1,7 +1,7 @@ project( 'gnome-calendar', 'c', - version: '3.32.1', + version: '3.32.2', license: 'GPL3+', meson_version: '>= 0.42.0' ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-calendar-3.32.1/src/gcal-edit-dialog.c new/gnome-calendar-3.32.2/src/gcal-edit-dialog.c --- old/gnome-calendar-3.32.1/src/gcal-edit-dialog.c 2019-04-24 00:24:46.000000000 +0200 +++ new/gnome-calendar-3.32.2/src/gcal-edit-dialog.c 2019-05-10 17:07:55.000000000 +0200 @@ -316,7 +316,10 @@ all_day ? 0 : g_date_time_get_minute (time), 0); - date_in_best_tz = g_date_time_to_timezone (date_in_local_tz, timezone); + if (all_day) + date_in_best_tz = g_date_time_ref (date_in_local_tz); + else + date_in_best_tz = g_date_time_to_timezone (date_in_local_tz, timezone); retval = g_date_time_new (timezone, g_date_time_get_year (date_in_best_tz),
