summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--www/daily.t4
-rwxr-xr-xwww/dailymod.pl5
2 files changed, 8 insertions, 1 deletions
diff --git a/www/daily.t b/www/daily.t
index 614ca4a4b9..00d5579717 100644
--- a/www/daily.t
+++ b/www/daily.t
@@ -45,6 +45,10 @@ The batch timestamp is GMT.
45<a href="auto/build-recorderdebug/ajbrec.ajz">Recorder debug</a><br> 45<a href="auto/build-recorderdebug/ajbrec.ajz">Recorder debug</a><br>
46<a href="auto/build-recordersim/rockboxui">Recorder simulator (linux)</a><br> 46<a href="auto/build-recordersim/rockboxui">Recorder simulator (linux)</a><br>
47</td> 47</td>
48<td>
49<a href="auto/build-fmrecorder/ajbrec.ajz">FM Recorder</a><br>
50<a href="auto/build-recorder8mb/ajbrec.ajz">8MB Recorder</a><br>
51</td>
48</tr></table> 52</tr></table>
49 53
50#include "foot.t" 54#include "foot.t"
diff --git a/www/dailymod.pl b/www/dailymod.pl
index 62fea28469..92a98bc7e4 100755
--- a/www/dailymod.pl
+++ b/www/dailymod.pl
@@ -17,7 +17,7 @@ sub list {
17 print "</ul>\n"; 17 print "</ul>\n";
18} 18}
19 19
20print "<table class=rockbox><tr><th>player</th><th>recorder</th><th>fmrecorder</th></tr>\n"; 20print "<table class=rockbox><tr><th>player</th><th>recorder</th><th>fm recorder</th><th>8MB recorder</th></tr>\n";
21print "<tr><td>\n"; 21print "<tr><td>\n";
22&list("player"); 22&list("player");
23 23
@@ -27,4 +27,7 @@ print "</td><td>\n";
27print "</td><td>\n"; 27print "</td><td>\n";
28&list("fmrecorder"); 28&list("fmrecorder");
29 29
30print "</td><td>\n";
31&list("recorder8mb");
32
30print "</td></tr></table>\n"; 33print "</td></tr></table>\n";