This is deprecated in newer automake versions, and this causes warnings
with automake 1.14:
panels/printers/Makefile.am:3: warning: 'INCLUDES' is the old name for
AM_CPPFLAGS' (or '*_CPPFLAGS')
https://bugzilla.gnome.org/show_bug.cgi?id=732189
Parsing Xorg.log is of dubious usefulness, and the code is likely
not working anymore anyway, because the logs may well go to the
systemd journal nowadays. Just drop this.
https://bugzilla.gnome.org/show_bug.cgi?id=728672
We were just assuming that there is an X server around. This may
not be the case anymore, so check, and deal with running under
Wayland. For now, we just say 'Wayland'. We should do better here,
eventually.
https://bugzilla.gnome.org/show_bug.cgi?id=728672
We had 2 items labelled "Software", one in the main panel, one
in the drop-down menu inside the dialogue. The one in the
drop-down menu actually changed x-content/software, whereas the
panel changed x-content/unix-software.
As x-content/software is the parent class of x-content/unix-software,
and isn't actually detected, remove it.
https://bugzilla.gnome.org/show_bug.cgi?id=709816
the g_unix_mount_points_get() function checks for entry mount
points. if there are none, it returns NULL and we end up showing
no information about disks.
if that's the case, this patch calls g_unix_mounts_get() which
checks for mounted filesystems in /etc/mtab.
also we need to update the list of ignored filesystems to
include rootfs, which is always present and is a duplicate of
an actual filesystem mount point.
https://bugzilla.gnome.org/show_bug.cgi?id=704702
Use XCreateWindow to ensure we are using the same X VisualInfo on
both the config and window. This avoids a BadMatch error on nvidia
glx implementation.
https://bugzilla.gnome.org/show_bug.cgi?id=697881
Very few of the panel comments provide information that is very
useful. Update them to supplement the panel descriptions - this
will make the search results more helpful.
https://bugzilla.gnome.org/show_bug.cgi?id=694110
glxinfo is part of mesa-demos, and installing it pulls a lot of unnecessary
programs. We can get the same informations by querying the driver directly.
https://bugzilla.gnome.org/show_bug.cgi?id=691613
Make it possible for panels to go all the way to the edge of the
shell. This is particularly important for panels that scroll, such
as the new power panel. All other panels are changed to compensate
for the loss of external padding.
https://bugzilla.gnome.org/show_bug.cgi?id=691229
This makes loading faster, with less I/O, avoids unnecessary
code duplication (around 1k lines shaved), and ensures that
all the panels link and work appropriately.
By the same token, it will stop external panels from being
created, and loaded.
https://bugzilla.gnome.org/show_bug.cgi?id=690036