diff options
author | Björn Stenberg <bjorn@haxx.se> | 2003-02-03 12:28:28 +0000 |
---|---|---|
committer | Björn Stenberg <bjorn@haxx.se> | 2003-02-03 12:28:28 +0000 |
commit | 26c4a5f5de5c689492e0e5282fad31eb5f35a775 (patch) | |
tree | 7359f12e9e6a94ec292977e12ba5c529fcad71bb | |
parent | b894dbe0aa02dec8c3fadb45fa02e1fb17de4605 (diff) |
Added fmrecorder
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3206 a1c6a512-1295-4272-9138-f99709370657
-rwxr-xr-x | www/dailymod.pl | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/www/dailymod.pl b/www/dailymod.pl index 7eca82a788..e823af1028 100755 --- a/www/dailymod.pl +++ b/www/dailymod.pl @@ -17,11 +17,14 @@ sub list { print "</ul>\n"; } -print "<table class=rockbox><tr><th>player</th><th>recorder</th></tr>\n"; +print "<table class=rockbox><tr><th>player</th><th>recorder</th><th>fmrecorder</th></tr>\n"; print "<tr><td>\n"; &list("player"); print "</td><td>\n"; &list("recorder"); +print "</td><td><p><b>Note:</b> The FM Recorder version is still very early and buggy. It is available here for testing purposes only.\n"; +&list("fmrecorder"); + print "</td></tr></table>\n"; |