summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2024-01-05Fix positioning on Wayland when output is not at position 0, 0Sophie Winter1-4/+4
2023-11-25fix building with libxml 2.12.0raveit654-0/+8
2023-10-05applet: Do not override the process' text domainColomban Wendling1-7/+1
When loaded as in-process applet, we must not call `textdomain()` or we will override mate-panel's text domain. Instead, properly use gi18n-lib.h header that provides the same API but uses the compile-time `GETTEXT_PACKAGE` value for each call. Actually drop the whole i18n setup logic that is provided already by mate-panel's factory macros. Fixes #219.
2023-10-05applet: Actually use translationsColomban Wendling1-4/+4
2023-08-22wayland: do not attempt to connect to x11 screensaverlukefromdc1-0/+3
2023-08-18Wayland: Allow building do not disturb applet in processlukefromdc2-8/+40
2023-08-10Only exit on idle when explicitly requestedColomban Wendling3-4/+29
This allows to run as a regular session service that does not exit, but also as a well-behaved D-Bus-activated service. Make the default behavior not to exit, but when activated through D-Bus.
2023-08-10Fix potential crash if org.mate.ScreenSaver doesn't respondColomban Wendling1-0/+1
2022-12-13Fix build warnings about missing field initializerrbuj2-5/+7
2022-12-13mnd-daemon: fix memory leakrbuj1-0/+3
2022-12-13daemon: fix memory leakrbuj1-4/+4
2022-08-06themes: fix typorbuj4-8/+8
2021-12-11Use a blank line at mostrbuj5-19/+0
2021-12-11theme: remove whitespaces before #define, #ifdef, and #endifrbuj1-39/+37
2021-06-22Update copyright to 2021raveit6518-0/+18
2021-04-03daemon: g_memdup is dreprecated from glib 2.68rbuj1-1/+8
2021-03-29engines.c: fix memory leakmbkma1-3/+3
2021-03-29mate-notification-properties.c: fix memory leaksmbkma1-3/+7
2021-03-15Remove shadow warnings [-Wshadow]rbuj2-15/+20
2021-02-24build: allow users to disable gettext support (--disable-nls)rbuj2-0/+6
2021-02-10Use notify_stack_destroy() instead of g_clear_object() for stacks (which are ↵William Wold1-1/+1
not GObjects)]
2021-01-16Update copyright to 2021rbuj1-1/+1
2020-11-28applet: Resize icon size with panelVictor Kareh1-9/+50
Also render as scaled cairo surface to support HiDPI displays.
2020-11-27mate-notification-applet: avoid segfault after removing the appletrbuj1-2/+3
2020-11-26Group common constants in a single filerbuj7-19/+43
2020-11-26Add Do Not Disturb Appletrbuj5-32/+292
2020-11-18build: Fix make distcheckrbuj1-0/+1
2020-10-24FormattingWilliam Wold2-5/+5
2020-10-24Use C-style commentsWilliam Wold4-23/+23
2020-10-24Remove NOTIFICATION_DAEMON_* from src/themes/standard/Makefile.amWilliam Wold1-2/+2
2020-10-24Set layer and notificaitonWilliam Wold1-0/+2
2020-10-24Implement placement on WaylandWilliam Wold4-13/+60
2020-10-24Add initial Wayland backendWilliam Wold4-0/+91
2020-10-24Hide X11-specific code behind ifdefs and checksWilliam Wold2-23/+92
2020-10-24Remove X11 calls from nodoka-theme.cWilliam Wold1-10/+20
2020-10-24Use gdk_set_allowed_backends ()William Wold1-0/+8
2020-10-24Include directory in warning message when failed to open themesWilliam Wold1-1/+1
2020-06-26add git.mk to generate .gitignoretamplan2-0/+4
2020-06-17daemon: Use monotonic time instead of real timerbuj1-36/+11
2020-06-12Remove conversion warningsrbuj7-44/+53
2020-04-16Filter-out img elements from notification bodyrbuj5-25/+222
2020-04-16The body of a notification may also contain hyperlinksrbuj4-37/+21
2020-04-08Rewrite mate-notification-properties.ui from scratchrbuj2-352/+163
2020-04-08daemon: Remove warning about GTimeVal deprecationrbuj1-38/+34
2019-11-07migrate from intltools to gettextWu Xiaotian2-4/+6
2019-10-20Use gresource for mate-notification-properties.uirbuj3-22/+33
2019-10-11Use WARN_CFLAGS which are only set with --enable-compiler-warningsrbuj6-6/+9
It removes --enable-more-warnings, since it is recommended to use --enable-compile-warnings=maximum It updates configure summary. It removes c++ checks as there is no c++ code.
2019-09-17Fix decoding the hints dictionary.Kyle Brenneman5-69/+50
g_variant_lookup works like g_variant_get, so using a format string of "v" only works if the type is actually a GVariant. Since none of the hints have GVariant values, that means every g_variant_get with a "v" format will fail. Fix all of the g_variant_lookup calls so that they either unpack a value directly, or use a "@" prefix when it's more convenient to fetch the value as a GVariant pointer. In addition, in cases where we do fetch a GVariant, make sure that we unreference it afterward.
2019-09-02mate-notification-properties: initialize do-not-disturb checkboxJason Conti1-0/+2
2019-09-02mate-notification-properties: Add do-not-disturb checkboxJason Conti3-2/+57