From c9912e105e53e26e3995d8ecdc62f6f2e69e8b8c Mon Sep 17 00:00:00 2001 From: Didier Roche Date: Fri, 16 Nov 2012 13:21:47 +0100 Subject: report accidently revert fixes when inline packaging was merged in --- NEWS | 11 +++++++++++ configure.ac | 2 +- src/device.c | 4 ++++ 3 files changed, 16 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index ff89f0e..255db6f 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,14 @@ +12.10.5 + - Fix a device display bug introduced in 12.10.3 (LP: #1075192) + +12.10.4 + - Fix primary device selection bug introduced in 12.10.3 (LP: #1071757) + +12.10.3 + - Show the proper icon for mice and ups devices. (LP: #1066208) + - Follow the spec when choosing the primary device (LP: #1071645) + - Fix minor memory leaks + 12.10.2 - Show a more accurate view of discharging batteries (LP: #1054146) - Fix a GIcon memory leak diff --git a/configure.ac b/configure.ac index 384e007..f4ada8a 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_INIT([indicator-power], - [12.10.2], + [12.10.6], [http://bugs.launchpad.net/indicator-power], [indicator-power], [http://launchpad.net/indicator-power]) diff --git a/src/device.c b/src/device.c index d028ab7..6f2a809 100644 --- a/src/device.c +++ b/src/device.c @@ -532,6 +532,10 @@ device_kind_to_localised_string (UpDeviceKind kind) /* TRANSLATORS: unknown device */ text = _("Unknown"); break; + case UP_DEVICE_KIND_UNKNOWN: + /* TRANSLATORS: unknown device */ + text = _("Unknown"); + break; default: g_warning ("enum unrecognised: %i", kind); text = up_device_kind_to_string (kind); -- cgit v1.2.3