[Bug 588858] Re: Add optional support of indicator applet

2012-08-06 Thread Mathias Brodala
*** This bug is a duplicate of bug 618483 *** https://bugs.launchpad.net/bugs/618483 Marked as duplicate since bug #618483 has more progress. ** This bug has been marked a duplicate of bug 618483 MPRIS 2 support -- You received this bug notification because you are a member of Ubuntu

[Bug 588858] Re: Add optional support of indicator applet

2011-04-30 Thread Mohegan
In order to hide exaile, you can use the options Show tray icon and Minimize to tray (appearance options). Natty doesn't show the systray. So, when you minimize or close exaile, it hide the window and you can control exaile with the sound indicator ! -- You received this bug notification because

[Bug 588858] Re: Add optional support of indicator applet

2011-04-19 Thread Ciaran Liedeman
You will get a lot more feedback for your plugin if you post a patch or atleast create a bzr branch instead of using a third party vcs site as this makes it impossible for any of the developers to take a quick look . -- You received this bug notification because you are a member of Ubuntu Bugs,

[Bug 588858] Re: Add optional support of indicator applet

2011-04-18 Thread Sun Ning
I am the author of the exaile sound menu support plugin, I just updated it to make it compatible with Natty. You can download the head version and test it. https://github.com/sunng87/Exaile-Soundmenu-Indicator -- You received this bug notification because you are a member of Ubuntu Bugs, which

[Bug 588858] Re: Add optional support of indicator applet

2011-04-18 Thread Sun Ning
Currently I still have a problem on trayicon. According to Ubuntu SoundMenu wiki, trayicon should be disabled when soundmenu item registered. And when soundmenu activate, window_close should behavior as hide. However, this cannot be archived by a plugin. I tried to modified the

[Bug 588858] Re: Add optional support of indicator applet

2011-04-12 Thread Mathieu Leplatre
In natty, Exaile is not even listed in the sound indicator. AFAIU it is not related to MPRIS protocol implementation, but to the .desktop file (my source: http://theravingrick.blogspot.com/2011/02/easily-support-sound-menu-in-python.html) However I could not figure out what difference there is

[Bug 588858] Re: Add optional support of indicator applet

2011-03-28 Thread Ciaran Liedeman
Johannes: Its not really important as its only there for future use anyway, there are no functions that can be called on a track object anyway currently. I realized while trying to code the plugin how far reaching the entire interface is and how some of the exaile api's don't allow for the

[Bug 588858] Re: Add optional support of indicator applet

2011-03-28 Thread Johannes Sasongko
It would be nice if you can move the AppIndicator part to a plugin. At this point it doesn't matter where you put the MPRIS2 part, it can be moved around easily later. By the way, how complete is the code in your branch? Once it's done, you can submit a merge proposal and then we can do a proper

[Bug 588858] Re: Add optional support of indicator applet

2011-03-28 Thread Ciaran Liedeman
I implemented the minimum requirements to be MPRIS compliant, just the org.mpris.MediaPlayer2 and org.mpris.MediaPlayer2.Player interfaces. I might have skipped one or two functions like rate and playback rate. The basic functions work quite well, I've been using it for the past month or so but

[Bug 588858] Re: Add optional support of indicator applet

2011-03-28 Thread Aren Olson
Regarding the track ID, actually it should not be the URI at all. I actually suggest using '/org/exaile/trackid/' + str(hash(track)). Actually, since Track objects in Exaile are unique per-uri, that's effectively the same as just using the uri outright. The proper way to do this would be to

[Bug 588858] Re: Add optional support of indicator applet

2011-03-27 Thread Johannes Sasongko
See also bug 618483 about MPRIS2 inclusion. In short, don't worry about the .TrackList and .Playlists interfaces, they're too much code (complicates codebase and slows down startup) for too little gain (people actually use those?). I imagined having an MPRIS2 plugin first and then gradually

[Bug 588858] Re: Add optional support of indicator applet

2011-03-18 Thread Carlos Eduardo Melo
This could be added to the mainstream package: http://github.com/sunng87 /Exaile-Soundmenu-Indicator Provides perfect integration with indicator-sound. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu.

Re: [Bug 588858] Re: Add optional support of indicator applet

2011-01-26 Thread Bennett Kanuka
I'm using Ubuntu 10.10 - is that the problem? I noticed I had to change python2 to python in /usr/local/bin/exaile I installed exaile from the repos copied the exaile.desktop to another location and removed the repo-exaile. Then I did a make make install, and restored exaile.desktop to

[Bug 588858] Re: Add optional support of indicator applet

2011-01-26 Thread Ciaran Liedeman
I managed to reproduce the bug, I'm using Ubuntu 10.10 aswell btw. It seems that nocover.png is not in any of the expected folders that exaile checks - ['~/.local/share/exaile', '/usr/local/share/exaile', '/usr/share/gnome/exaile', '/usr/local/share/exaile', '/usr/share/exaile'] but when run

[Bug 588858] Re: Add optional support of indicator applet

2011-01-26 Thread Ciaran Liedeman
Looked a bit closer at the code, the file is on Ubuntu installed to /usr/local/share/exaile/data/images/noimage.png and the current trunk expects it to be /usr/local/share/exaile/images/noimage.png -- You received this bug notification because you are a member of Ubuntu Bugs, which is

[Bug 588858] Re: Add optional support of indicator applet

2011-01-25 Thread Ciaran Liedeman
** Branch linked: lp:~ciaran-liedeman/exaile/soundmenu -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/588858 Title: Add optional support of indicator applet -- ubuntu-bugs mailing list

[Bug 588858] Re: Add optional support of indicator applet

2011-01-25 Thread Ciaran Liedeman
I've implemented displaying cover art and almost all of the other functions. The sound menu works fine as it only uses a subset of the mpris2 interface, currently. I've had a few problems mapping some of the interface properties to exaile though, volume is a property in the Player interface but

[Bug 588858] Re: Add optional support of indicator applet

2011-01-25 Thread Ciaran Liedeman
** Attachment added: Code to Test dbus set shuffle and repeat properties https://bugs.launchpad.net/exaile/+bug/588858/+attachment/1807208/+files/dbus_test.py -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu.

[Bug 588858] Re: Add optional support of indicator applet

2011-01-25 Thread Bennett Kanuka
Could you give me some help on how to use/test your branch? I've copied your branch, but when I run it (through the exaile script or python exaile.py) I get no sound menu integration. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu.

[Bug 588858] Re: Add optional support of indicator applet

2011-01-25 Thread Ciaran Liedeman
For sound menu registration to work you need to have a '/usr/share/applications/exaile.desktop' file, that's the only thing I can think of that you might be missing. If you install exaile form the repos you should have it. Also which version of Ubuntu are you using? -- You received this bug

[Bug 588858] Re: Add optional support of indicator applet

2011-01-18 Thread Ciaran Liedeman
I tried to implement the Application Indicator for exaile and after quite a lot of struggling have abandoned that branch, while I was working on it I really started to see how the sound menu indicator seemed like much more of a good idea. I started implementing the mpris 2 interface for exaile

[Bug 588858] Re: Add optional support of indicator applet

2011-01-18 Thread Ciaran Liedeman
** Attachment added: Screenshot of Sound menu https://bugs.launchpad.net/exaile/+bug/588858/+attachment/1798714/+files/Screenshot.png -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/588858 Title:

[Bug 588858] Re: Add optional support of indicator applet

2011-01-18 Thread Aren Olson
I don't think exaile exposes the location in its api so I set the cover to the nocover image in the mean time. That's because it is not guaranteed that the cover will HAVE a location in the filesystem. For example, when the cover is embedded in the file's tags, it is just loaded directly from

[Bug 588858] Re: Add optional support of indicator applet

2010-08-12 Thread Andrew Starr-Bochicchio
** Also affects: exaile (Ubuntu) Importance: Undecided Status: New ** Changed in: exaile (Ubuntu) Status: New = Triaged ** Changed in: exaile (Ubuntu) Importance: Undecided = Wishlist -- Add optional support of indicator applet https://bugs.launchpad.net/bugs/588858 You