mirror of
https://github.com/psenough/pouet.net.git
synced 2025-01-17 13:18:24 +01:00
71 lines
3.1 KiB
PHP
71 lines
3.1 KiB
PHP
|
<?
|
|||
|
require("include/top.php");
|
|||
|
|
|||
|
$query="SELECT version,comment,quand FROM changelog ORDER BY quand DESC, id DESC";
|
|||
|
$result=mysql_query($query);
|
|||
|
while($tmp=mysql_fetch_array($result)) {
|
|||
|
$changes[]=$tmp;
|
|||
|
}
|
|||
|
|
|||
|
?>
|
|||
|
<br />
|
|||
|
<table bgcolor="#000000" cellspacing="1" cellpadding="0" width="75%">
|
|||
|
<tr>
|
|||
|
<td>
|
|||
|
<table bgcolor="#000000" cellspacing="1" cellpadding="2">
|
|||
|
<tr>
|
|||
|
<td bgcolor="#224488" nowrap>
|
|||
|
<b>pou<EFBFBD>t.net todo list</b><br />
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td bgcolor="#557799">
|
|||
|
- add zone's nationality flags on user.php according to sceneID's new "country" user info field<br />
|
|||
|
- allow support to change users nationality on sceneID from pouet.net account.php<br />
|
|||
|
- fix add.php and update.php to do the vote math ignoring fakeusers votes<br />
|
|||
|
- paginate parties.php + allow year sort to be also reversed<br />
|
|||
|
- add a possibility to subscribe to certain prods/groups/bbs and receive an update by mail<br />
|
|||
|
- facilitate personalized css<br />
|
|||
|
- remodel BBS into sections<br />
|
|||
|
- populate stats.php with stats<br />
|
|||
|
- add cookie/ajax power to groups.php?which= and prodlist.php to show/hide some columns<br />
|
|||
|
- do a searchprodlist.php with a textbox input, a multichoice list of all types and platforms, and a way to select sortby up to 3 levels<br />
|
|||
|
- add more info on rss prodlistings (groups, type, platform)<br />
|
|||
|
- add automatic .rss browser linkage lines as suggested by p01 on bbstopic 2104<br />
|
|||
|
- improve lists.php<br />
|
|||
|
- add more detail to listitems types (visited parties vs organized parties for demology lists)<br />
|
|||
|
- add more listitems types for better demology (visited/organized parties, ex-groups, active/innactive users)<br />
|
|||
|
- add related lists info to user.php, group.php, prod.php and submit.php<br />
|
|||
|
- add automation to prodid links similar to webtv (for zxdemo, csdb, c64cracktros, plus4emucamp, scene.org fileid)<br />
|
|||
|
- update othernfo functionality some more<br />
|
|||
|
- add database fields to connect groups to parties/compos they organized (display them on groups.php?which=..)<br />
|
|||
|
- integrate demozoo style user and group credits<br />
|
|||
|
- allow gfx and music entries?!<br />
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td bgcolor="#224488" nowrap>
|
|||
|
<b>pou<EFBFBD>t.net changelog</b><br />
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<? $c=0; ?>
|
|||
|
<? for($i=0;$i<count($changes);$i++): ?>
|
|||
|
<? if($changes[$i]["version"]!=$changes[$i-1]["version"]): ?>
|
|||
|
<tr>
|
|||
|
<? ($c%2)?print("<td bgcolor=\"#557799\">"):print("<td bgcolor=\"#446688\">"); ?>
|
|||
|
<b><? print($changes[$i]["version"]); ?></b>:<br />
|
|||
|
<? endif; ?>
|
|||
|
<? print(htmlentities("[".substr($changes[$i]["quand"],0,10)."] - ".$changes[$i]["comment"])); ?><br />
|
|||
|
<? if($changes[$i]["version"]!=$changes[$i+1]["version"]): ?>
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<? $c++; ?>
|
|||
|
<? endif; ?>
|
|||
|
<? endfor; ?>
|
|||
|
</table>
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
</table>
|
|||
|
<br />
|
|||
|
<? require("include/bottom.php"); ?>
|