# HG changeset patch # User nenolod # Date 1171139361 28800 # Node ID b7f48f00a342ad52e66f0ab451981bb563cfc42e # Parent ea80fe9c3ba44a536fc302039b6848aba8ab87f7 [svn] - patch from Mark Glines to ad https:// URI support to playlists. diff -r ea80fe9c3ba4 -r b7f48f00a342 ChangeLog --- a/ChangeLog Fri Feb 09 22:30:10 2007 -0800 +++ b/ChangeLog Sat Feb 10 12:29:21 2007 -0800 @@ -1,3 +1,11 @@ +2007-02-10 06:30:10 +0000 William Pitcock + revision [3994] + - use ConfigureNotify to set playlist location, a proper use of ICCCM. + + trunk/src/audacious/ui_playlist.c | 32 +++++++++++++++++--------------- + 1 file changed, 17 insertions(+), 15 deletions(-) + + 2007-02-10 06:05:03 +0000 William Pitcock revision [3992] - using ConfigureNotify for resizing is wrong per ICCCM guideline, diff -r ea80fe9c3ba4 -r b7f48f00a342 src/audacious/build_stamp.c --- a/src/audacious/build_stamp.c Fri Feb 09 22:30:10 2007 -0800 +++ b/src/audacious/build_stamp.c Sat Feb 10 12:29:21 2007 -0800 @@ -1,2 +1,2 @@ #include -const gchar *svn_stamp = "20070210-3992"; +const gchar *svn_stamp = "20070210-3994"; diff -r ea80fe9c3ba4 -r b7f48f00a342 src/audacious/playlist.c --- a/src/audacious/playlist.c Fri Feb 09 22:30:10 2007 -0800 +++ b/src/audacious/playlist.c Sat Feb 10 12:29:21 2007 -0800 @@ -712,6 +712,11 @@ return TRUE; } + if (r > 6 && str_has_prefix_nocase(p, "https:")) { + playlist_load_ins(playlist, filename, pos); + return TRUE; + } + return FALSE; } diff -r ea80fe9c3ba4 -r b7f48f00a342 src/audacious/ui_credits.c --- a/src/audacious/ui_credits.c Fri Feb 09 22:30:10 2007 -0800 +++ b/src/audacious/ui_credits.c Sat Feb 10 12:29:21 2007 -0800 @@ -89,6 +89,7 @@ "Laszlo Dvornik", "Ralf Ertzinger", "Mike Frysinger", + "Mark Glines", "Chris Kehler", "Michael Hanselmann", "Joseph Jezak",