From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1NuvZW-0002Iv-LA for garchives@archives.gentoo.org; Thu, 25 Mar 2010 22:30:39 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5178DE0797; Thu, 25 Mar 2010 22:30:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 3300BE0797 for ; Thu, 25 Mar 2010 22:30:35 +0000 (UTC) Received: from stork.gentoo.org (stork.gentoo.org [64.127.104.133]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id CC9E81B402E for ; Thu, 25 Mar 2010 22:30:34 +0000 (UTC) Received: from ford_prefect by stork.gentoo.org with local (Exim 4.69) (envelope-from ) id 1NuvZS-0003Pt-9P for gentoo-commits@lists.gentoo.org; Thu, 25 Mar 2010 22:30:34 +0000 From: "Arun Raghavan (ford_prefect)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, ford_prefect@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in media-plugins/banshee-community-extensions/files: banshee-community-extensions-1.5.5-magnatune-build-fix.patch X-VCS-Repository: gentoo-x86 X-VCS-Files: banshee-community-extensions-1.5.5-magnatune-build-fix.patch X-VCS-Directories: media-plugins/banshee-community-extensions/files X-VCS-Committer: ford_prefect X-VCS-Committer-Name: Arun Raghavan Content-Type: text/plain; charset=utf8 Message-Id: Sender: Arun Raghavan Date: Thu, 25 Mar 2010 22:30:34 +0000 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: e6e895ee-ac82-4329-a564-b43db49c8258 X-Archives-Hash: a5e66b6d21fff533a863876a05275720 ford_prefect 10/03/25 22:30:34 Added: =20 banshee-community-extensions-1.5.5-magnatune-buil= d-fix.patch Log: Bump to 1.5.5. Adds CoverWallpaper, LiveRadio, Magnatune, and Telepathy= plugins, and some bug fixes. (Portage version: 2.2_rc67/cvs/Linux x86_64) Revision Changes Path 1.1 media-plugins/banshee-community-extensions/files/ban= shee-community-extensions-1.5.5-magnatune-build-fix.patch file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/bans= hee-community-extensions/files/banshee-community-extensions-1.5.5-magnatu= ne-build-fix.patch?rev=3D1.1&view=3Dmarkup plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/bans= hee-community-extensions/files/banshee-community-extensions-1.5.5-magnatu= ne-build-fix.patch?rev=3D1.1&content-type=3Dtext/plain Index: banshee-community-extensions-1.5.5-magnatune-build-fix.patch =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D >From 039ca32b6787bf06a52e12d51952c4453e1c6bbe Mon Sep 17 00:00:00 2001 From: Gabriel Burt Date: Thu, 11 Mar 2010 09:07:24 -0800 Subject: [PATCH] [Magnatune] Replace unicode char with \u expansion --- .../gtk-gui/Magnatune.Configuration.cs | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Magnatune/Banshee.Magnatune/gtk-gui/Magnatune.Configurat= ion.cs b/src/Magnatune/Banshee.Magnatune/gtk-gui/Magnatune.Configuration.= cs index ecb54b2..a5bf178 100644 --- a/src/Magnatune/Banshee.Magnatune/gtk-gui/Magnatune.Configuration.cs +++ b/src/Magnatune/Banshee.Magnatune/gtk-gui/Magnatune.Configuration.cs @@ -66,7 +66,7 @@ namespace Banshee.Magnatune { this.username.CanFocus =3D true; this.username.Name =3D "username"; this.username.IsEditable =3D true; - this.username.InvisibleChar =3D '=E2=97=8F'; + this.username.InvisibleChar =3D '\u25cf'; this.hbox2.Add(this.username); Gtk.Box.BoxChild w3 =3D ((Gtk.Box.BoxChild)(this.hbox2[this.= username])); w3.Position =3D 1; @@ -94,7 +94,7 @@ namespace Banshee.Magnatune { this.password.Name =3D "password"; this.password.IsEditable =3D true; this.password.Visibility =3D false; - this.password.InvisibleChar =3D '=E2=97=8F'; + this.password.InvisibleChar =3D '\u25cf'; this.hbox1.Add(this.password); Gtk.Box.BoxChild w6 =3D ((Gtk.Box.BoxChild)(this.hbox1[this.= password])); w6.Position =3D 1; --=20 1.7.0.3