gnome-calendar:abderrahim/flatpak-nightly

Last commit made on 2019-09-18
Get this branch:
git clone -b abderrahim/flatpak-nightly https://git.launchpad.net/gnome-calendar

Branch merges

Branch information

Name:
abderrahim/flatpak-nightly
Repository:
lp:gnome-calendar

Recent commits

37257d2... by Abderrahim Kitouni <email address hidden>

.gitlab-ci.yml: update to the current version of the Flatpak CI initiative

5e4bbe4... by Georges Basile Stavracas Neto

utils: Pass GcalCalendar to ask_recurrence_modification_type()

The method ask_recurrence_modification_type() currently
receives an ESource, and tried to fetch the ECalClient
from the ESource by using g_object_get_data().

However, since we moved to GcalCalendar, we do not set
this data field in ESource.

Receive a GcalCalendar instead, and use the appropriate
function gcal_calendar_get_client() instead.

18ae67c... by Michael Catanzaro

Use more g_signal_connect_object()

Most of these are probably paranoid, not bugs. I haven't done an
exhaustive review to see what really needs it: that would be
time-consuming and require significant familiarity with the Calendar
codebase. This was just a quick check. Anyway, I vote for paranoid
when it comes to using g_signal_connect() regardless. It's dangerous,
and there's no reason to ever leave a signal connected after the user
data object has been destroyed.

Fixes #423

9644c30... by Georges Basile Stavracas Neto

date-time-utils: Fix weekday calculation

GNOME Calendar needs to deal with two different
weekday ranges:

 1. Sunday → 0 ... Saturday → 6
 2. Monday → 1 ... Sunday → 7 (used by GDateTime)

When converting (2) into (1), the correct calculation
is `weekday % 7`.

However, gcal_date_time_get_start_of_week() was doing
`weekday - 1` instead.

Fix it and do the correct calculation instead.

https://gitlab.gnome.org/GNOME/gnome-calendar/issues/451

450aa5e... by Georges Basile Stavracas Neto

log: Remove g_get_current_time

e39bd95... by Georges Basile Stavracas Neto

log: Use g_autofree

43f5de8... by Georges Basile Stavracas Neto

main: Trivial style cleanup

22596db... by Georges Basile Stavracas Neto

window: Readd <Ctrl>n shortcut

https://gitlab.gnome.org/GNOME/gnome-calendar/issues/383

88ce540... by Code.

Update README.md

a8882b4... by Code.

Add info to README