gnome-shell:gnome-3-10

Last commit made on 2015-10-07
Get this branch:
git clone -b gnome-3-10 https://git.launchpad.net/gnome-shell

Branch merges

Branch information

Name:
gnome-3-10
Repository:
lp:gnome-shell

Recent commits

6f0114a... by Pedro Albuquerque

Updated Portuguese translation

d967ff1... by Pedro Albuquerque

Updated Portuguese translation

8d3f41c... by Cédric VALMARY (Tot en òc)

Added Occitan translation

97315be... by mahfiaz

[l10n] Updated Estonian translation

56194ae... by Allison Karlitskaya

network: properly remove connections from list

Due to a typo we were always removing the first (index 0) connection
from the global list of connections instead of the correct one.

This resulted in some connections remaining in the shell's connection
list long after they were removed. In particular, this resulted in
multiple copies of a bluetooth connection appearing after suspend/resume
(when the device was readded and the cached connection list was
rescanned).

https://bugzilla.gnome.org/show_bug.cgi?id=740227
(cherry picked from commit 3d4408dce810f3b6995ed2acf28b61bed48c1dac)

630ad8f... by Giovanni Campagna <email address hidden>

ScreenShield: remove obsolete comment and hack

We don't need to wait to until the stage window is mapped to take
the modal grab, because that code now runs in a startup-prepared
signal handler, which in turn runs some time after the mainloop
has started and well after the stage window is mapped.

https://bugzilla.gnome.org/show_bug.cgi?id=711682

2ed619f... by Adel Gadllah <email address hidden>

st-scroll-view-fade: Refuse to work without GLSL

Disable the effect when GLSL is not available otherwise we will
crash later.

https://bugzilla.gnome.org/show_bug.cgi?id=733623

17c9f88... by Bastien Nocera

system: Fix orientation lock never appearing

Typos meant that the orientation service was never detected as running
and that the orientation lock menu item didn't appear.

https://bugzilla.gnome.org/show_bug.cgi?id=733498

c95432f... by Simon McVittie

Specifically ask for Telepathy 0.x

Telepathy 1.0 will not be compatible, and will probably require
source changes. telepathy-glib 0.12 and telepathy-logger 0.2 are
the 0.x ABIs (they were the first stable-branches to have g-i).

Bug: https://bugzilla.gnome.org/show_bug.cgi?id=721704
Reviewed-by: Giovanni Campagna

a3d9946... by Jasper St. Pierre

shell-global: Only set the scale factor if get_setting succeeded

If gdk_screen_get_setting fails, like if it's running without XSettings,
then the GValue will have a value of 0. A lot of code tries to divide by
the scale factor. This produces NaN, and combined with the fact that NaN
is "leaky", we very quickly end up spinning out of control.