commit d303d9f36064c5dcf523c5a545a6542e635bbf3d
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Nov 14 12:52:56 2012 +0100

    3.6.3

 NEWS         | 20 +++++++++++++++++---
 configure.ac |  2 +-
 2 files changed, 18 insertions(+), 4 deletions(-)

commit 05f19e36a4b0c7516858126250a8d1a5af46b9a0
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Nov 14 13:07:23 2012 +0100

    build: Fix distcheck
    
    Left-over files from update-icon-cache shouldn't be created
    in the first place when running distcheck.

 Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 001156637a858969eee45e868a03a294c559093b
Author: Debarshi Ray <debarshir@gnome.org>
Date:   Sat Nov 10 18:48:25 2012 +0100

    bluetooth: Align the device list with the all settings button
    
    Fixes: https://bugzilla.gnome.org/688055

 panels/bluetooth/bluetooth.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 7a22f0605c5099079828d0cffbdf6698fa1fe8f0
Author: Debarshi Ray <debarshir@gnome.org>
Date:   Sat Nov 10 18:42:01 2012 +0100

    online-accounts: Align the accounts list with the all settings button
    
    Fixes: https://bugzilla.gnome.org/668312

 panels/online-accounts/online-accounts.ui | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit b23aef0aef77c3844c6a665713c68f96b20fb628
Author: Debarshi Ray <debarshir@gnome.org>
Date:   Fri Nov 9 19:12:46 2012 +0100

    online-accounts: Don't preselect the first item when adding an account
    
    Fixes: https://bugzilla.gnome.org/687875

 panels/online-accounts/cc-online-accounts-add-account-dialog.c | 4 ++++
 1 file changed, 4 insertions(+)

commit 725aecc9e38c8a817aa62d676ced466aeeeeb8f1
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Nov 9 11:32:52 2012 +0100

    network: Avoid type clashes with the Bluetooth panel
    
    Done with:
    sed -i -e 's/RfkillGlib/CcRfkillGlib/g'         \
    	    -e 's/RFKILL_GLIB/CC_RFKILL_GLIB/g' \
    	    -e 's/rfkill_glib/cc_rfkill_glib/g' \
    	    -e 's/RFKILL_TYPE_GLIB/CC_RFKILL_TYPE_GLIB/g' \
    	    rfkill-glib.[ch] cc-network-panel.c
    
    This would need to be done when we reset the copy/paste from
    gnome-bluetooth.

 panels/network/cc-network-panel.c | 10 ++++----
 panels/network/rfkill-glib.c      | 48 +++++++++++++++++++--------------------
 panels/network/rfkill-glib.h      | 44 +++++++++++++++++------------------
 3 files changed, 51 insertions(+), 51 deletions(-)

commit 7aef2fb307a9ff9c32fbe9dc6bc36e1eef5e72ab
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Nov 9 11:16:07 2012 +0100

    network: Make sure Airplane mode switch everything off
    
    And not just wireless. We need to use /dev/rfkill directly
    to make sure that all the devices (3G, GPS, Bluetooth, etc.) get
    switched off correctly when airplane mode is on.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=675778

 panels/network/Makefile.am        |   5 +-
 panels/network/cc-network-panel.c |  94 ++++++++++--
 panels/network/rfkill-glib.c      | 299 ++++++++++++++++++++++++++++++++++++++
 panels/network/rfkill-glib.h      |  65 +++++++++
 panels/network/rfkill.h           | 107 ++++++++++++++
 5 files changed, 560 insertions(+), 10 deletions(-)

commit 627238003890e18069b90e8e2935f9548bf96f98
Author: Bastien Nocera <hadess@hadess.net>
Date:   Fri Nov 9 10:20:29 2012 +0100

    network: Make sure flight mode is always visible
    
    Because it's not just about disabling the network, it needs
    to disable a host of other wireless devices, and those need to
    be blocked even if you end up plugging them into your computer.

 panels/network/cc-network-panel.c | 54 +--------------------------------------
 1 file changed, 1 insertion(+), 53 deletions(-)

commit c8837d2650c8558492e8f3aeb2362c7a7118c517
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Nov 8 18:52:28 2012 +0100

    bluetooth: Use spinner when connecting
    
    Rather than having an unusable switch (which wouldn't represent
    the real state of the connection), show a spinner until the
    connection is finished doing.

 panels/bluetooth/bluetooth.ui         |  2 +-
 panels/bluetooth/cc-bluetooth-panel.c | 30 ++++++++++++++++++++++++++----
 2 files changed, 27 insertions(+), 5 deletions(-)

commit f299846ba76a8c2d712414b9380dc4adfc1a545a
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Nov 8 18:36:33 2012 +0100

    bluetooth: Simplify ->finalize

 panels/bluetooth/cc-bluetooth-panel.c | 15 +++------------
 1 file changed, 3 insertions(+), 12 deletions(-)

commit d309183dd352cef5e075070caaac8ac050b4d11d
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Nov 8 18:31:07 2012 +0100

    bluetooth: Fix main switch acting bizarrely
    
    The only time we were looking at the powered state of the adapter
    is when the killswitch state was changing. Except that we're fast enough
    that bluetoothd didn't have time to power up the adapter, so its
    state was unpowered, which we would set the switch to.
    
    The switch was off, the adapter was on.
    
    We fix that problem by tracking the powered state of the adapter
    separately.
    
    https://bugzilla.redhat.com/show_bug.cgi?id=841881

 panels/bluetooth/cc-bluetooth-panel.c | 32 +++++++++++++++++++++++++-------
 1 file changed, 25 insertions(+), 7 deletions(-)

commit 68917676a077ad36ae3c7570afe3789bdd6fea65
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Nov 8 18:11:47 2012 +0100

    bluetooth: Add UI code for a spinner during the connection

 panels/bluetooth/bluetooth.ui | 45 ++++++++++++++++++++++++++++++++++++++-----
 1 file changed, 40 insertions(+), 5 deletions(-)

commit 2dc30a08d5a4844c1f9028356c44440d2be62eaf
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Nov 8 18:00:03 2012 +0100

    bluetooth: Remove unused variable

 panels/bluetooth/cc-bluetooth-panel.c | 2 --
 1 file changed, 2 deletions(-)

commit f9f6e7525e55059361ca15dbda7826105eb3fdbc
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Nov 8 17:56:26 2012 +0100

    bluetooth: Avoid possible loops when Connection fails
    
    If we switch "Connection" on via the switch, the disabling on failure
    will create a loop where it always tries to connect again. Break that
    loop.

 panels/bluetooth/cc-bluetooth-panel.c | 46 ++++++++++++++++++++++++++++++++---
 1 file changed, 42 insertions(+), 4 deletions(-)

commit 80c1f5a79da01091f93eb48ed686192781852efe
Author: Marek Kasik <mkasik@redhat.com>
Date:   Thu Oct 18 11:35:14 2012 +0200

    printers: Resolve symlink when passing a PPD to CUPS
    
    root is not able to resolve symlinks in /tmp/ created by ordinary users
    because of a new policy and PPDs got from CUPS are symlinks to /etc/cups/ppd/*
    placed to /tmp/.
    Since we need to pass PPD file of original printer to CUPS when renaming
    a printer we resolve given symlink and pass original filename to the CUPS.

 panels/printers/pp-utils.c | 21 +++++++++++++++++----
 1 file changed, 17 insertions(+), 4 deletions(-)

commit 8f3733dfca5ceb1d9862dbe2aa6137a57277dee6
Author: Bastien Nocera <hadess@hadess.net>
Date:   Thu Nov 8 09:02:38 2012 +0100

    NEWS: Prepare for release
    
    Last updated item is:
    d2e70f2d45d5460296d027c44e0e3aa86078329c

 NEWS | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

commit d2e70f2d45d5460296d027c44e0e3aa86078329c
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Nov 5 09:35:13 2012 +0100

    region: Fix possible crasher on startup
    
    When the X11Variant localed property was empty, variants[i] was
    being checked even though only variants[0] was defined (an empty
    string).
    
    ==17035== Invalid read of size 8
    ==17035==    at 0x26B9529A: on_localed_properties_changed (gnome-region-panel-system.c:339)
    ==17035==    by 0x26B95546: localed_proxy_ready (gnome-region-panel-system.c:381)
    ==17035==    by 0x8CA2589: g_simple_async_result_complete (gsimpleasyncresult.c:775)
    ==17035==    by 0x8CA25BB: complete_in_idle_cb (gsimpleasyncresult.c:787)
    ==17035==    by 0x94B8ED4: g_idle_dispatch (gmain.c:4806)
    ==17035==    by 0x94B6890: g_main_dispatch (gmain.c:2715)
    ==17035==    by 0x94B7440: g_main_context_dispatch (gmain.c:3219)
    ==17035==    by 0x94B7623: g_main_context_iterate (gmain.c:3290)
    ==17035==    by 0x94B76E7: g_main_context_iteration (gmain.c:3351)
    ==17035==    by 0x8CDB1A1: g_application_run (gapplication.c:1620)
    ==17035==    by 0x4083C6: main (control-center.c:256)
    ==17035==  Address 0x13b92e18 is 0 bytes after a block of size 8 alloc'd
    ==17035==    at 0x4A0883C: malloc (vg_replace_malloc.c:270)
    ==17035==    by 0x94BE97B: standard_malloc (gmem.c:85)
    ==17035==    by 0x94BEA04: g_malloc (gmem.c:159)
    ==17035==    by 0x94BED2F: g_malloc_n (gmem.c:400)
    ==17035==    by 0x94DB26A: g_strsplit (gstrfuncs.c:2281)
    ==17035==    by 0x26B95169: on_localed_properties_changed (gnome-region-panel-system.c:319)
    ==17035==    by 0x26B95546: localed_proxy_ready (gnome-region-panel-system.c:381)
    ==17035==    by 0x8CA2589: g_simple_async_result_complete (gsimpleasyncresult.c:775)
    ==17035==    by 0x8CA25BB: complete_in_idle_cb (gsimpleasyncresult.c:787)
    ==17035==    by 0x94B8ED4: g_idle_dispatch (gmain.c:4806)
    ==17035==    by 0x94B6890: g_main_dispatch (gmain.c:2715)
    ==17035==    by 0x94B7440: g_main_context_dispatch (gmain.c:3219)

 panels/region/gnome-region-panel-system.c | 18 ++++++++++++------
 1 file changed, 12 insertions(+), 6 deletions(-)

commit 28bcf96598ed63a50235f4908d67a10d5c22be85
Author: Bastien Nocera <hadess@hadess.net>
Date:   Mon Nov 5 09:34:37 2012 +0100

    common: Quiet valgrind when checking lang codeset

 panels/common/gdm-languages.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit a9718601b62ef411e384a0eb332c10dd7accf97f
Author: Pavol Klačanský <pavol@klacansky.com>
Date:   Sun Nov 4 11:27:58 2012 +0100

    Updated slovak translation

 po/sk.po | 7268 ++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 4190 insertions(+), 3078 deletions(-)

commit 59cd59945102e783557e81d872cd95c17eba1b38
Author: Jeremy Bicha <jbicha@ubuntu.com>
Date:   Fri Nov 2 21:04:11 2012 -0400

    keyboard: Point help to more specific page
    
    https://bugzilla.gnome.org/show_bug.cgi?id=687486

 panels/keyboard/cc-keyboard-panel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit c251e5962b510ca3b2869f4835078271e0460144
Author: Jeremy Bicha <jbicha@ubuntu.com>
Date:   Fri Nov 2 20:50:42 2012 -0400

    shell: Add F1 accelerator to show help
    
    https://bugzilla.gnome.org/show_bug.cgi?id=687485

 shell/control-center.c | 3 +++
 1 file changed, 3 insertions(+)

commit 07b76034f8cb26acf5d172cf5e40975b975c1f9b
Author: Changwoo Ryu <cwryu@debian.org>
Date:   Sat Nov 3 01:34:33 2012 +0900

    Updated Korean translation

 po/ko.po | 151 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 74 insertions(+), 77 deletions(-)

commit ad25b22e16bf2dacf0a157d0bfcb3c8d591d9055
Author: Jeremy Bicha <jbicha@ubuntu.com>
Date:   Wed Oct 31 06:46:28 2012 -0400

    Show Printers & Region panels in Unity but hide Background
    
    Ubuntu plans to fork a separate Appearance panel this cycle so
    that Gnomebuntu can use the GNOME Background panel.
    
    I believe Ubuntu will try to use the Printers and Region & Language
    panels instead of system-config-printer & language-selector
    
    https://bugzilla.gnome.org/show_bug.cgi?id=687258

 panels/background/gnome-background-panel.desktop.in.in | 2 +-
 panels/printers/gnome-printers-panel.desktop.in.in     | 2 +-
 panels/region/gnome-region-panel.desktop.in.in         | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

commit bf820b005f3ca9af74e26b7ef615ce37734885b0
Author: Sweta Kothari <swkothar@redhat.com>
Date:   Mon Oct 29 12:07:21 2012 +0530

    Updated gujarati file

 po/gu.po | 43 +++++++++++++++++++++++++++----------------
 1 file changed, 27 insertions(+), 16 deletions(-)

commit 1302e9c43cbbdd6ccd4384b71653b222229ec200
Author: Seán de Búrca <leftmostcat@gmail.com>
Date:   Fri Oct 26 13:23:23 2012 -0600

    Updated Irish translation.

 po/ga.po | 6440 ++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 3770 insertions(+), 2670 deletions(-)