]> git.sesse.net Git - vlc/commitdiff
Document that we now require :// between access and url
authorChristophe Mutricy <xtophe@videolan.org>
Tue, 4 Mar 2008 21:38:26 +0000 (21:38 +0000)
committerChristophe Mutricy <xtophe@videolan.org>
Tue, 4 Mar 2008 21:51:09 +0000 (21:51 +0000)
Signed-off-by: Christophe Mutricy <xtophe@videolan.org>
NEWS
src/libvlc-module.c

diff --git a/NEWS b/NEWS
index eebd36bf370873f031290652993ae31372bc4891..ab62259c99a11b1e91ead0ba539763ae81d6d465 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -35,6 +35,9 @@ Important notes:
  * You now need to append --m3u-extvlcopt to your command line to enable
    EXTVLCOPT options parsing in m3u playlists. Note that only a limited set
    of options is available to m3u playlists (CVE-2007-6683).
+ * The old access:url syntax is no longer supported. Use access://url instead.
+       E.g.:  vlc:quit -> vlc://quit ; 
+              udp:@239.255.12.12 -> udp://@239.255.12.12
 
 Changes:
 --------
index 410796c00af11a49296ef52b4c3c3b4c2771f4d9..68f6cca4196f966fcc27eda7aab824b628b888ab 100644 (file)
@@ -1384,10 +1384,10 @@ const char vlc_usage[] = N_(
     "\n  [dvd://][device][@raw_device]  DVD device"
     "\n  [vcd://][device]               VCD device"
     "\n  [cdda://][device]              Audio CD device"
-    "\n  udp:[[<source address>]@[<bind address>][:<bind port>]]"
+    "\n  udp://[[<source address>]@[<bind address>][:<bind port>]]"
     "\n                                 UDP stream sent by a streaming server"
-    "\n  vlc:pause:<seconds>            Special item to pause the playlist for a certain time"
-    "\n  vlc:quit                       Special item to quit VLC"
+    "\n  vlc://pause:<seconds>          Special item to pause the playlist for a certain time"
+    "\n  vlc://quit                     Special item to quit VLC"
     "\n");
 
 /*