[xiph-commits] r12647 - websites/icecast.org
moritz at svn.xiph.org
moritz at svn.xiph.org
Mon Mar 5 05:46:44 PST 2007
Author: moritz
Date: 2007-03-05 05:46:43 -0800 (Mon, 05 Mar 2007)
New Revision: 12647
Modified:
websites/icecast.org/ezstream.php
Log:
More content, and since it has become relatively large now, add anchor-based
navigation inside the document.
Modified: websites/icecast.org/ezstream.php
===================================================================
--- websites/icecast.org/ezstream.php 2007-03-05 13:39:52 UTC (rev 12646)
+++ websites/icecast.org/ezstream.php 2007-03-05 13:46:43 UTC (rev 12647)
@@ -1,14 +1,31 @@
<? include "common/header.php"; ?>
+
+<style type="text/css">
+ <!--
+ code {
+ font-size: 120%;
+ }
+ .ez_nav {
+ margin: 10px 0px;
+ font-family: Verdana, sans-serif;
+ text-decoration: none;
+ text-align: right;
+ font-weight: bold;
+ font-size: 100%;
+ color: #F8EF64;
+ border-top: 3px dashed #000000;
+ }
+ -->
+</style>
+
<h2>Ezstream</h2>
<div class="roundcont">
-
<div class="roundtop">
<img src="/images/corner_topleft.jpg" class="corner" style="display: none" />
</div>
+<div class="newscontent" id="ez_about" name="ez_about">
-<div class="newscontent">
-
<h3>About Ezstream</h3>
<p>
@@ -34,6 +51,13 @@
Ezstream is free software and licensed under the GNU General Public License.
</p>
+<p class="ez_nav">
+ <a href="#ez_about">About</a> |
+ <a href="#ez_download">Download</a> |
+ <a href="#ez_more">More ...</a> |
+ <a href="#ez_relnotes">Release Notes</a>
+</p>
+
</div>
<div class="roundbottom">
<img src="/images/corner_bottomleft.jpg" class="corner" style="display: none" />
@@ -46,12 +70,13 @@
<div class="roundtop">
<img src="/images/corner_topleft.jpg" class="corner" style="display: none" />
</div>
-<div class="newscontent">
+<div class="newscontent" id="ez_download" name="ez_download">
<h3>Download</h3>
<p style="font-size: larger;">
Latest version: <b>0.3.0</b>
+ [ <a href="#ez_relnotes_chgs">Changes</a> ]
<p>
<center>
@@ -85,6 +110,13 @@
<a href="http://downloads.xiph.org/releases/ezstream/">http://downloads.xiph.org/releases/ezstream/</a>.
</p>
+<p class="ez_nav">
+ <a href="#ez_about">About</a> |
+ <a href="#ez_download">Download</a> |
+ <a href="#ez_more">More ...</a> |
+ <a href="#ez_relnotes">Release Notes</a>
+</p>
+
</div>
<div class="roundbottom">
<img src="/images/corner_bottomleft.jpg" class="corner" style="display: none" />
@@ -97,7 +129,7 @@
<div class="roundtop">
<img src="/images/corner_topleft.jpg" class="corner" style="display: none" />
</div>
-<div class="newscontent">
+<div class="newscontent" id="ez_more" name="ez_more">
<h3>Further Information</h3>
@@ -138,9 +170,8 @@
As of version 0.3.0, the Win32 version of ezstream no longer requires any .DLL
files and is entirely self-contained.
Because of this simplicity, an installer is no longer provided.
- Those who wish to be able to run ezstream anywhere on their system, can add
- the directory that contains ezstream.exe to their user's PATH environment
- variable.
+ Users, who wish to be able to run ezstream anywhere on their system, can add
+ the directory that contains ezstream.exe to their PATH environment variable.
</p>
<h4>Even more ...</h4>
@@ -158,12 +189,166 @@
It is kept up-to-date with important changes in ezstream as they happen.
</p>
+<p class="ez_nav">
+ <a href="#ez_about">About</a> |
+ <a href="#ez_download">Download</a> |
+ <a href="#ez_more">More ...</a> |
+ <a href="#ez_relnotes">Release Notes</a>
+</p>
+
</div>
<div class="roundbottom">
<img src="/images/corner_bottomleft.jpg" class="corner" style="display: none" />
</div>
</div>
+<div class="roundcont">
+<div class="roundtop">
+<img src="/images/corner_topleft.jpg" class="corner" style="display: none" />
+</div>
+<div class="newscontent" id="ez_relnotes" name="ez_relnotes">
+
+<h3>Release Notes</h3>
+
+<p>
+ Ezstream 0.3.0 has been released on February 5th 2007.
+</p>
+
+<p>
+ In this version, ezstream received a complete overhaul, with many new
+ features, bug fixes, complete documentation, various other cleanups and
+ improvements.
+ The result is a better, more stable, more portable and more user-friendly
+ ezstream that fits in a smaller distribution tarball.
+ The binary distribution for Windows also no longer requires any .DLL files to
+ function and comes as a stand-alone .EXE file.
+</p>
+
+<h4 id="ez_relnotes_chgs" name="ez_relnotes_chgs">Changes</h4>
+
+<ul style="font-size: smaller; margin: 1em 3em">
+ <li>
+ The original author, Ed Zaleski, hands over ezstream maintainership to Moritz
+ Grimm.
+ </li>
+ <li>
+ New Features:
+ <ul>
+ <li>
+ Playlist shuffling support, enabled via the new
+ <code><shuffle></code> configuration option.
+ </li>
+ <li>
+ Playlist scripting support: Indicate that the executable in
+ <code><filename></code> should be run each time to get a new media
+ filename to stream, by setting the new <code><playlist_program></code>
+ configuration option to 1.
+ </li>
+ <li>
+ New <code><stream_once></code> configuration option, which makes
+ ezstream play a media file or playlist once and then exit.
+ </li>
+ <li>
+ New <code><reconnect_tries></code> option to restrict the number of
+ reconnection attempts to a server in case the connection goes down.
+ </li>
+ <li>
+ Add feature to skip the currently streaming track, done by sending the
+ SIGUSR1 signal to the ezstream process.
+ </li>
+ <li>
+ New command line option <code>-q</code>: Suppress standard error output
+ from external de-/encoders.
+ </li>
+ <li>
+ New command line option <code>-v</code>: Produce more verbose output.
+ </li>
+ <li>
+ New "real-time" status display of the stream when both -q and -v are given
+ on the command line.
+ </li>
+ <li>
+ Thorough configuration file checks with helpful error messages.
+ </li>
+ <li>
+ The <code>@M@</code> metadata placeholder is now supported in
+ <code><decode></code>.
+ </li>
+ <li>
+ Playlists may now have the '.txt' filename extension in addition to '.m3u'.
+ </li>
+ </ul>
+ </li>
+ <li>
+ Fixes:
+ <ul>
+ <li>
+ At least one stack and one heap overflow have been fixed.
+ </li>
+ <li>
+ Several memory leaks have been fixed.
+ </li>
+ <li>
+ Strict checking of the configuration file prevents unexpected behavior and
+ adds another safeguard to prevent crashes.
+ </li>
+ <li>
+ Fixed and more portable signal handling.
+ </li>
+ </ul>
+ </li>
+ <li>
+ Miscellaneous, user-visible changes:
+ <ul>
+ <li>
+ </li>
+ <li>
+ Improved documentation. Ezstream now has a comprehensive man page and the
+ README file has been rewritten.
+ </li>
+ <li>
+ Consistency improvements in the configuration examples. The examples are
+ now also installed.
+ </li>
+ <li>
+ The <code><format></code> and <code><match></code>
+ configuration elements, as well as filename extension matching to detect
+ playlists in the <code><filename></code> element, are now case
+ insensitive.
+ </li>
+ <li>
+ Various improvements in the build system and portability fixes.
+ </li>
+ <li>
+ Consistent and more helpful messages from ezstream. By default, ezstream
+ no longer clutters the screen with lots of output (some information that
+ used to be available needs to be enabled with the new <code>-v</code>
+ command line parameter.)
+ </li>
+ <li>
+ Tweaked metadata string generation: no more lone " - " dashes at the
+ beginning or end of the string.
+ </li>
+ <li>
+ New command line option <code>-V</code>: Print the version number and exit.
+ </li>
+ </ul>
+ </li>
+</ul>
+
+<p class="ez_nav">
+ <a href="#ez_about">About</a> |
+ <a href="#ez_download">Download</a> |
+ <a href="#ez_more">More ...</a> |
+ <a href="#ez_relnotes">Release Notes</a>
+</p>
+
+</div>
+<div class="roundbottom">
+<img src="/images/corner_bottomleft.jpg" class="corner" style="display: none" />
+</div>
+</div>
+
<br/>
<? include "common/footer.php"; ?>
More information about the commits
mailing list