aboutsummaryrefslogtreecommitdiff
path: root/include
Commit message (Collapse)AuthorAgeFilesLines
* gsettings: Drop the 'show-clock' setting. Always show the clock.Robert Tari2020-09-053-3/+0
| | | | | | | The 'show-clock' gsetting option made it possible to "hide" the time from the indicator. Fixes AyatanaIndicator/ayatana-indicator-datetime#16.
* Partially revert fab51b4. Only rename those x-canonical attributes to ↵Mike Gabriel2020-08-111-4/+4
| | | | x-ayatana if they are solely used by Ayatana Indicators.
* Replace x-canonical attributesRobert Tari2020-08-111-4/+4
|
* Fix calendar going into update loopRobert Tari2020-07-261-1/+1
|
* -Made GCC 10.1.0 friendlyRobert Tari2020-07-173-1/+69
| | | | | | -Fixed to work with ECal 2.0 -Added libaccounts-glib dependency -Added mate-time-admin handler
* URL dispatcher on non-Ubuntu: Fake it as best as possible, so that the unit ↵Mike Gabriel2018-03-281-2/+0
| | | | tests are happy and succeed.
* honor gsettings for calendar eventsCharles Kerr2018-03-263-0/+3
|
* URL dispatcher support: Build phone code, even if URL dispatcher is unavailable.Mike Gabriel2018-03-263-6/+0
|
* include/datetime/snap.h: Don't guard snap.h by ↵Mike Gabriel2017-12-081-4/+0
| | | | HAS_UT_ACCTSERVICE_SYSTEMSOUND_SETTINGS macro. It is only used by tests/test-snap.cpp and that one is only compiled and executed if HAS_UT_ACCTSERVICE_SYSTEMSOUND_SETTINGS is defined.
* include/datetime/snap.h: Fix macro name ↵Mike Gabriel2017-12-081-2/+2
| | | | (HAVE_UT_ACCTSERVICE_SYSTEMSOUND_SETTINGS -> HAS_UT_ACCTSERVICE_SYSTEMSOUND_SETTINGS).
* include/datetime/settings-shared.h: Namespace fix for SETTINGS_INTERFACE macro.Mike Gabriel2017-12-081-1/+1
|
* README.md: Add some manual line breaks.Mike Gabriel2017-12-0812-16/+16
|
* include/datetime/dbus-shared.h: Fix namespace of BUS_DATETIME_*.Mike Gabriel2017-12-081-2/+2
|
* rebase C++ namespaceMike Gabriel2017-12-081-1/+1
|
* Indicator namespace adaptations.Mike Gabriel2017-12-081-1/+1
|
* Make the datetime indicator build on non-Ubuntu systems (which mostly lack ↵Mike Gabriel2017-12-084-1/+15
| | | | url-dispatcher and Ubuntu Touch sound schema files.
* Fork ayatana-indicator-datetime from Ubuntu's indicator-datetime.Mike Gabriel2017-05-1739-90/+90
|
* Avoid nested GMainLoops by reading from the file on startupIain Lane2015-09-031-1/+3
| | | | | Restore some tests for this functionality.
* Rename FileTimezone to TimedatedTimezoneIain Lane2015-09-012-11/+11
|
* Use timedated's Timezone property instead of watching /etc/timezoneIain Lane2015-08-312-2/+2
| | | | | Still need to rename everything to not use "timezone-file"
* in DateTime class, make it harder to accidentally mix local and nonlocal ↵Charles Kerr2015-04-061-1/+2
| | | | timezones by replacing DateTime::DateTime(time_t) with two methods, DateTime::Local(time_t) and DateTime(GTimeZone*, time_t)
* remove some new bits that turned out to be unneeded after allCharles Kerr2015-04-051-2/+0
|
* fix misuse of ECalComponentAlarmInstance's fields.Charles Kerr2015-04-051-1/+0
|
* add the new Alarm class as an argument to the alarm queue classCharles Kerr2015-04-034-15/+11
|
* add override keyword to Clock classCharles Kerr2015-04-032-2/+2
|
* add override keyword to WakeupTimerCharles Kerr2015-04-033-5/+5
|
* add an Alarm class to represent ical valarm components; change the ↵Charles Kerr2015-03-312-5/+24
| | | | Appointment class to hold an arbitrary number of Alarms.
* add DateTime::end_of_month(), DateTime::end_of_day(). Add unit tests for them.Charles Kerr2015-03-161-2/+6
|
* in DateTime::is_set(), include timezone testCharles Kerr2015-03-161-1/+1
|
* Add DateTime::start_of_day() to use instead of the add_hours(-hours()) ↵Charles Kerr2015-03-141-3/+7
| | | | | | | trick, which doesn't work on days when DST changes. Implementing this requires DateTime objects to keep their own GTimeZone pointer, since the one inside GDateTime is private and can't be used for DateTime::start_of_day()'s call to g_date_time_new(). As a result the public API of DateTime changes, since we'll need a GTimeZone when constructing or assigning from a GDateTime pointer.
* require an explicit role for the sound so that we can differentiate between ↵Charles Kerr2015-01-211-1/+1
| | | | eg 'alarm' and 'alert'
* disable one-time alarms after their notifications are shown.Charles Kerr2014-12-073-4/+9
|
* ensure that disabled alarms aren't shown in indicator-datetime and that ↵Charles Kerr2014-12-071-1/+4
| | | | notifications aren't shown for them.
* Make alarm notifications icons and button color match Design's specs. Fixes: ↵Charles Kerr2014-09-191-2/+3
|\ | | | | | | | | | | 1370594 Approved by: Ted Gould, PS Jenkins bot, Nekhelesh Ramananthan
| * use the new x-canonical-private-affirmative-tint key.Charles Kerr2014-09-171-2/+3
| |
* | Fix flint++ warnings Charles Kerr2014-09-1915-35/+35
|\ \ | | | | | | | | | Approved by: Ted Gould, PS Jenkins bot
| * | fix flint++ warningsCharles Kerr2014-09-1715-35/+35
| |/
* | Move timezone code behind a private Impl class Charles Kerr2014-09-193-34/+7
|\ \ | | | | | | | | | Approved by: Ted Gould, PS Jenkins bot
| * | hide the implementation detials of FileTimezone and GeoclueTimezone behind ↵Charles Kerr2014-09-133-34/+7
| | | | | | | | | | | | Impl classes
* | | sync with trunkCharles Kerr2014-09-163-8/+18
|\ \ \ | | |/ | |/|
| * | add unit tests for the powerd monitorCharles Kerr2014-09-151-2/+10
| |/
| * update the time string when a powerd.Wakeup signal is seen.Charles Kerr2014-09-131-0/+5
| |
| * hide Clock's implementation details into an Impl class.Charles Kerr2014-09-131-6/+3
| |
* | LiveClock only needs one Timezone, so give it that instead of a Timezones objectCharles Kerr2014-09-161-2/+2
|/
* remove the new code that we're not using yetCharles Kerr2014-09-021-1/+0
|
* use the 'override' keyword in the new planner class declarationsCharles Kerr2014-09-022-2/+2
|
* update Snap Decisions to include snoozeCharles Kerr2014-09-021-2/+2
|
* add planner.cpp to the buildCharles Kerr2014-09-021-3/+2
|
* add snooze properties to our schema; export it on the bus; add testsCharles Kerr2014-09-023-0/+3
|
* add SnoozePlanner, AggregatePlannerCharles Kerr2014-09-023-0/+111
|