changelog
- Thu, 29 Jun 2017 11:30:53 -0500
- by Mike Ruprecht <cmaiku@gmail.com> [Thu, 29 Jun 2017 11:30:53 -0500] rev 38432
- configure.ac: Drop unused enable_startup_notification option
Support for libstartup-notification was dropped in 2.7.11. The
enable_startup_notification option has somehow snuck through.
This patch removes it.
- Thu, 29 Jun 2017 23:14:26 -0500
- by Mike Ruprecht <cmaiku@gmail.com> [Thu, 29 Jun 2017 23:14:26 -0500] rev 38431
- docs: Remove missed gtksession reference
- Fri, 30 Jun 2017 03:55:21 +0000
- by Gary Kramlich <grim@reaperworld.com> [Fri, 30 Jun 2017 03:55:21 +0000] rev 38430
- Merged in CMaiku/pidgin (pull request #226)
Use GtkApplication session manager
Approved-by: Gary Kramlich <grim@reaperworld.com>
Approved-by: Elliott Sales de Andrade <quantum.analyst@gmail.com>
Approved-by: Eion Robb <eionrobb@gmail.com>
- Thu, 29 Jun 2017 15:04:39 -0500
- by Mike Ruprecht <cmaiku@gmail.com> [Thu, 29 Jun 2017 15:04:39 -0500] rev 38429
- Remove gtksession now that we're using GtkApplication's register-session
Now that we're using GtkApplication's session handling support via
the register-session property, the gtksession code is, in many cases,
redundant. This patch therefore removes it.
GtkApplication currently supports the Gnome and Xfce session managers.
It also looks like it supports something on OSX. That doesn't cover
all the systems which the X11 session manager does, but does potentially
cover ones it doesn't. Any session management systems that are found
to be lacking can be added again via plugins or similar if desired.
- Sun, 25 Jun 2017 15:29:29 -0500
- by Mike Ruprecht <cmaiku@gmail.com> [Sun, 25 Jun 2017 15:29:29 -0500] rev 38428
- libpidgin: Use GtkApplication session manager
GtkApplication has a register-session property which can register the
application with the desktop's session manager. As of this patch,
it can register itself with the GNOME or Xfce session managers. This
patch sets the property to TRUE to enable this feature.
- Thu, 29 Jun 2017 22:14:07 -0500
- by Mike Ruprecht <cmaiku@gmail.com> [Thu, 29 Jun 2017 22:14:07 -0500] rev 38427
- Remove the last traces of cipher files
This patch removes a couple missed cipher file references from a
couple places, which fixes distcheck.
- Thu, 29 Jun 2017 21:46:05 -0500
- by Mike Ruprecht <cmaiku@gmail.com> [Thu, 29 Jun 2017 21:46:05 -0500] rev 38426
- tests: Add missing string.h includes
cipher.h included string.h which means places that included the
former didn't need to include the latter. Now that cipher.h is gone
these places need to include string.h. This patch adds them to
a couple places I missed in my port to nettle branch.
- Thu, 29 Jun 2017 21:43:44 -0500
- by Mike Ruprecht <cmaiku@gmail.com> [Thu, 29 Jun 2017 21:43:44 -0500] rev 38425
- tests: Add back image test which was accidentally removed
I accidentally removed the image test in my port to nettle branch.
This patch adds it back.
- Fri, 30 Jun 2017 02:03:09 +0000
- by Gary Kramlich <grim@reaperworld.com> [Fri, 30 Jun 2017 02:03:09 +0000] rev 38424
- Merged in CMaiku/pidgin (pull request #216)
Remove PurpleEventLoopUiOps
Approved-by: Eion Robb <eionrobb@gmail.com>
Approved-by: Gary Kramlich <grim@reaperworld.com>
- Thu, 15 Jun 2017 12:19:37 -0500
- by Mike Ruprecht <cmaiku@gmail.com> [Thu, 15 Jun 2017 12:19:37 -0500] rev 38423
- eventloop: Remove PurpleEventLoopUiOps struct and functions
Now that libpurple uses Gio, configuring the event loop to use
something other than the GLib event loop causes things to break.
This is because Gio adds sources to the GLib event loop in a way
which can't practically be overridden.
Fortunately, other event loops can still be used by driving the
GLib event loop manually. See the GLib Main Event Loop docs for
information on doing this.
This patch removes the PurpleEventLoopUiOps and its supporting
functions for setting and getting them. The remaining event loop
functions should be replaced with their GLib equivalents once
it's practical.