You are not logged in.

#1 2011-09-28 21:31:44

proxima_centauri
Member
From: Nova Scotia, Canada
Registered: 2008-07-17
Posts: 117
Website

Banshee Notification Bubble (GNOME3.2) <SOLVED>

Hi,

After latest update to gnome 3.2 I have noticed that when Banshee changes songs, the little pop-up notification at the bottom is malformed.
What it shows me regardless of song is:

Song Title
<span color="#767675" size="small">by</span> Artist
<span color="#767675" size="small">by</span> Album

Just a generic example, 'song title', 'artist', and 'album' fields are all correctly populated.

Perhaps another unrelated fact is on the notification area icon for banshee is titled "notify-sharp" instead of "Banshee".

Is anyone else affected by this behaviour?

Last edited by proxima_centauri (2011-11-05 16:03:36)


Thinkpad T61p - 15.4' WSXGA TFT - 2.5Ghz Intel Core2 Duo T9300 - 2X2GB Kingston RAM - 160GB 7200RPM - NVIDIA Quadro FX 570m - Intel 4965AGN

Offline

#2 2011-09-29 04:19:07

superchango
Member
From: Tenochtitlan
Registered: 2009-01-22
Posts: 133

Re: Banshee Notification Bubble (GNOME3.2) <SOLVED>

Yep, i have exactly this problem too. Gnome 3.2 in an x86 Archlinux with Banshee 2.2.


"Yo creo que los muertos son tiernos. ¿Nos besamos?"

Offline

#3 2011-09-29 23:01:55

proxima_centauri
Member
From: Nova Scotia, Canada
Registered: 2008-07-17
Posts: 117
Website

Re: Banshee Notification Bubble (GNOME3.2) <SOLVED>

I was originally running GNOME3.2 from [gnome-unstable], and have since fully upgraded to [testing].
Problem still present.


Thinkpad T61p - 15.4' WSXGA TFT - 2.5Ghz Intel Core2 Duo T9300 - 2X2GB Kingston RAM - 160GB 7200RPM - NVIDIA Quadro FX 570m - Intel 4965AGN

Offline

#4 2011-09-30 02:06:06

wonder
Developer
From: Bucharest, Romania
Registered: 2006-07-05
Posts: 5,941
Website

Re: Banshee Notification Bubble (GNOME3.2) <SOLVED>

i found your statement logically. nothing changed because nobody reported.


Give what you have. To someone, it may be better than you dare to think.

Offline

#5 2011-09-30 03:01:31

proxima_centauri
Member
From: Nova Scotia, Canada
Registered: 2008-07-17
Posts: 117
Website

Re: Banshee Notification Bubble (GNOME3.2) <SOLVED>

I thought it was possible a package that had yet to be upgraded was responsible.
Is it appropriate to file this bug upstream at https://bugzilla.gnome.org under notification-daemon?

Last edited by proxima_centauri (2011-09-30 03:01:50)


Thinkpad T61p - 15.4' WSXGA TFT - 2.5Ghz Intel Core2 Duo T9300 - 2X2GB Kingston RAM - 160GB 7200RPM - NVIDIA Quadro FX 570m - Intel 4965AGN

Offline

#6 2011-09-30 06:09:19

wonder
Developer
From: Bucharest, Romania
Registered: 2006-07-05
Posts: 5,941
Website

Re: Banshee Notification Bubble (GNOME3.2) <SOLVED>

i think is a bug in either banshee or gnome-shell


Give what you have. To someone, it may be better than you dare to think.

Offline

#7 2011-10-02 20:45:50

proxima_centauri
Member
From: Nova Scotia, Canada
Registered: 2008-07-17
Posts: 117
Website

Re: Banshee Notification Bubble (GNOME3.2) <SOLVED>

I filled a bug for anyone interested.
https://bugzilla.gnome.org/show_bug.cgi?id=660718

Should a mod see this, the thread can be moved to "Applications & Desktop Environments", since Gnome 3.2.0 has hit Extra.


Thinkpad T61p - 15.4' WSXGA TFT - 2.5Ghz Intel Core2 Duo T9300 - 2X2GB Kingston RAM - 160GB 7200RPM - NVIDIA Quadro FX 570m - Intel 4965AGN

Offline

#8 2011-10-02 20:47:25

bernarcher
Forum Fellow
From: Germany
Registered: 2009-02-17
Posts: 2,281

Re: Banshee Notification Bubble (GNOME3.2) <SOLVED>

proxima_centauri wrote:

Should a mod see this, the thread can be moved to "Applications & Desktop Environments", since Gnome 3.2.0 has hit Extra.

Done as requested.

BTW: You can use the "Report" button for requests like this. This guarantees it is seen by the mods.


To know or not to know ...
... the questions remain forever.

Offline

#9 2011-10-02 23:34:19

American_Jesus
Member
From: Lisbon/Portugal
Registered: 2011-07-20
Posts: 37

Re: Banshee Notification Bubble (GNOME3.2) <SOLVED>

The problem isn't in notification-daemon but in Banshee, Banshee doesn't use notifications standard tags.
That was already reported in xfce4-notify and banshee
https://bugzilla.xfce.org/show_bug.cgi?id=7773
https://bugzilla.gnome.org/show_bug.cgi?id=649277


Archlinux X86_64

Offline

#10 2011-10-09 16:01:58

berz_
Member
Registered: 2011-06-12
Posts: 26

Re: Banshee Notification Bubble (GNOME3.2) <SOLVED>

I followed the PKGBUILD of banshee-git in AUR to fetch the code from git and grepped -r it to find that the code outputting those spans was in  src/Extensions/Banshee.NotificationArea/Banshee.NotificationArea/NotificationAreaService.cs, lines 500 and 502:

            new_args[0] = String.Format ("<span color=\"{0}\" size=\"small\">",
                CairoExtensions.ColorGetHex (TextLightColor, false));
            new_args[1] = "</span>";

Since only <i>, <b> and <u> are allowed (http://www.galago-project.org/specs/not … /x161.html) this should probably be changed to

            new_args[0] = String.Format ("<i>",
                CairoExtensions.ColorGetHex (TextLightColor, false));
            new_args[1] = "</i>";

However I could not test if this works, as the code failed to compile due to an unrelated error (happens when compiling the original code too).
This was reported to the maintainer of banshee-git in AUR: https://aur.archlinux.org/packages.php? … mments=all

Offline

#11 2011-10-16 15:43:03

berz_
Member
Registered: 2011-06-12
Posts: 26

Re: Banshee Notification Bubble (GNOME3.2) <SOLVED>

The issue was still bothering me, so I fixed it on my machine.
As banshee-git still fails to build, I used the stable 2.2 branch and applied the changes mentioned above (patch here).

Last edited by berz_ (2011-10-16 15:43:21)

Offline

Board footer

Powered by FluxBB