Project

General

Profile

Activity

From October 18, 2015 to November 16, 2015

November 14, 2015

14:34 Feature #401: import per-song equalizer settings from Winamp
Audacious 3.7 Anonymous
05:56 Bug #587 (Closed): since 3.7, double size has become extremely large
I've changed the logic to the following (as explained by the comment in the code):
// The current scaling implementa...
John Lindgren
05:06 Bug #586 (Closed): LyricWiki, strange edit link
Fixed. The character encoding bug is entirely on the server side, not in Audacious, but we can work around it. John Lindgren

November 13, 2015

23:33 Bug #587: since 3.7, double size has become extremely large
Maybe a preference toggle to select whether it goes to double or triple original size if double isn't big enough for ... il lumilore
04:11 Bug #587: since 3.7, double size has become extremely large
It's intended to adjust based on the screen resolution. But maybe this will be undesired for most people. I'm open ... John Lindgren
00:57 Bug #587: since 3.7, double size has become extremely large
kde 5.4 on opensuse il lumilore

November 12, 2015

19:22 Feature #589 (Rejected): Add support for .iso.wv containers
.iso.wv is the new audio container format becoming popular on the net. It consists of a wavpack image, cue sheet and ... Artem Koval
18:12 Bug #587: since 3.7, double size has become extremely large
I cannot reproduce this. For me the main window size becomes 550x232 from the original 275x116. Which window manager ... Thomas Lange
00:47 Bug #587 (Closed): since 3.7, double size has become extremely large
since 3.7, when clicking double size in winamp skin, the size of the player becomes more than double size and takes u... il lumilore
00:52 Feature #588 (Rejected): filtered playlist
I request that on the jump to song window that comes up when you hit "j" on a playlist, there be a toggle that says "... il lumilore

November 10, 2015

07:58 Bug #586: LyricWiki, strange edit link
3.7-1~webupd8~trusty0
Of course 3.7 :) Sorry
Dmitry Artemov

November 09, 2015

23:36 Bug #586: LyricWiki, strange edit link
Not sure where you came up with "3.7.1". The newest version is 3.7. John Lindgren
16:31 Bug #586 (Closed): LyricWiki, strange edit link
LyricWiki generates strange edit link if song has no lyrics on lyrics.wikia.com.
Example:
http://lyrics.wikia.com...
Dmitry Artemov
23:33 Bug #585: "Remove Unavailable Files" temporarily freezes UI
Yes, "Remove Unavailable Files" is one operation that is still done in the UI thread. John Lindgren
15:04 Bug #585 (New): "Remove Unavailable Files" temporarily freezes UI
Steps to reproduce:
1) Prepare playlist with more than 20000 songs.
2) Select Playlist -> Remove Unavailable Files
...
Vitalii Cherniak

November 02, 2015

14:38 Bug #584: The program 'audacious' received an X Window System error
We no longer support Audacious 3.5.2. Please install Audacious 3.7-beta1 and see if the problem still exists. If so... John Lindgren
03:50 Bug #584 (Rejected): The program 'audacious' received an X Window System error
Xubuntu 15.10
Xorg version: 1.17.2 (30 September 2015 09:08:47AM)
Kernal: 4.2.0-16-generic (#19-Ubuntu SMP Thu O...
Mark Bartlett

October 31, 2015

05:21 Feature #583 (Rejected): ffaudio patch that adds Video-playing option for mp4, flv, etc. files and streams
I don't think so. Even if this code looked more robust and less like a quick hack, we're not prepared to handle the ... John Lindgren

October 29, 2015

06:59 Feature #583 (Rejected): ffaudio patch that adds Video-playing option for mp4, flv, etc. files and streams
Please consider adding this patch for ffaudio-core which adds a config option to pop up a window to play the video pa... Jim Turner

October 23, 2015

22:01 Bug #582: Title is not displayed
Ok the test I done, is like this, I have in gpodder a podcast subscribed, I save the file from one of the podcasts fr... Nuno Dias
21:50 Bug #582: Title is not displayed
How you add the file has no effect on how the tag is read. Sounds like you are opening two different files. John Lindgren
16:07 Bug #582: Title is not displayed
So, I made some more tests, the problems is this, if I import the file using the file open option, the comment is use... Nuno Dias
15:56 Bug #582: Title is not displayed
Ok, you are right about the title, but my confusion comes from the fact that in another computer with audacious 3.6.2... Nuno Dias
02:07 Bug #582 (Rejected): Title is not displayed
John Lindgren
02:07 Bug #582: Title is not displayed
There is no title in the ID3 tag of that file. Not a bug.
!http://redmine.audacious-media-player.org/attachments/do...
John Lindgren

October 22, 2015

14:27 Bug #582: Title is not displayed
File attached as requested. Nuno Dias
14:16 Bug #582: Title is not displayed
It looks like there is some difficulty reading the ID3 tag. Can you attach an example file? John Lindgren
12:38 Bug #582 (Rejected): Title is not displayed
In the tab title, instead of the title the name of the file is displayed.
I have this problem in Fedora 22 (x86_64),...
Nuno Dias

October 21, 2015

06:11 Bug #581 (Closed): oss4: fix high CPU usage (infinite loop) on pause.
Actually this can be fixed more cleanly in core. John Lindgren
04:52 Bug #581: oss4: fix high CPU usage (infinite loop) on pause.
Look at libaudcore/plugin.h for starters. John Lindgren

October 20, 2015

20:11 Bug #581: oss4: fix high CPU usage (infinite loop) on pause.
John Lindgren wrote:
> The new patch still breaks drain() because you removed poll_wake(). Read the documentation a...
Dmitry Vagin
19:52 Bug #581: oss4: fix high CPU usage (infinite loop) on pause.
Dmitry Vagin wrote:
> In what situations write_audio() needs to return immediately?
Always.
John Lindgren
19:52 Bug #581: oss4: fix high CPU usage (infinite loop) on pause.
The new patch still breaks drain() because you removed poll_wake(). Read the documentation and stop making changes w... John Lindgren
14:52 Bug #581: oss4: fix high CPU usage (infinite loop) on pause.
updated patch with poll(). Dmitry Vagin
07:10 Bug #581: oss4: fix high CPU usage (infinite loop) on pause.
fd in nonblock mode
poll(fd);
write(fd);
==
fd in block mode
write(fd)
Dmitry Vagin
07:07 Bug #581: oss4: fix high CPU usage (infinite loop) on pause.
John Lindgren wrote:
> Blocking mode is not an option since write_audio() needs to return immediately. So your patc...
Dmitry Vagin

October 19, 2015

22:37 Bug #581: oss4: fix high CPU usage (infinite loop) on pause.
Blocking mode is not an option since write_audio() needs to return immediately. So your patch will not be accepted a... John Lindgren
21:51 Bug #581: oss4: fix high CPU usage (infinite loop) on pause.
Little update for oss.h Dmitry Vagin
21:46 Bug #581: oss4: fix high CPU usage (infinite loop) on pause.
for playing music do loop { write_audio(); period_wait(); }
old code:
period_wait = poll 2 descriptors #1 pipe d...
Dmitry Vagin
21:08 Bug #581: oss4: fix high CPU usage (infinite loop) on pause.
It would be more helpful if you posted steps to reproduce the problem instead of a huge patch with no explanation of ... John Lindgren
08:26 Bug #581 (Closed): oss4: fix high CPU usage (infinite loop) on pause.
Infinite loop in oss4 when music on pause. Dmitry Vagin
 

Also available in: Atom