Changeset 849


Ignore:
Timestamp:
1/3/2009 12:43:34 AM (3 years ago)
Author:
lowjoel
Message:

-Released 5.8.7 beta4 and 6 rc3

Location:
branches/website
Files:
1 added
7 edited

Legend:

Unmodified
Added
Removed
  • branches/website/Templates/Eraser.dwt

    r821 r849  
    4949                <h3>Latest News</h3> 
    5050                <div class="right_news_bg"> 
    51                     <h2>Eraser 6-rc2 released!</h2> 
    52                     <div class="posted">Posted by: Joel, 13 December 2008, 10.30am, +800 GMT</div> 
    53                     <p>Eraser 6 Release Candidate 2 is released, bringing with it about a dozen fixes (a few of them major!) <a href="../announcements/20081213.html">See the full announcement.</a></p> 
     51                    <h2>Eraser 6-rc3 released!</h2> 
     52                    <div class="posted">Posted by: Joel, 3 January 2008, 9.00am, +800 GMT</div> 
     53                    <p>Eraser 6 Release Candidate 3 is released, bringing with it about a dozen fixes (including a few show stopping regressions.) <a href="../announcements/20090103.html">See the full announcement.</a></p> 
     54                    <h2>Eraser 5.8.7-beta4 released!</h2> 
     55                    <div class="posted">Posted by: Joel, 3 January 2008, 9.00am, +800 GMT</div> 
     56                    <p>Eraser 5.8.7 isn't abandoned! The new beta release addresses feature bugs and would be a welcome addition to everyone still using v5. <a href="../announcements/20090103.html#eraser5">See the full announcement.</a></p> 
    5457                </div> 
    5558            </div> 
  • branches/website/announcements/20081201.html

    r821 r849  
    7272                <h3>Latest News</h3> 
    7373                <div class="right_news_bg"> 
    74                     <h2>Eraser 6-rc2 released!</h2> 
    75                     <div class="posted">Posted by: Joel, 13 December 2008, 10.30am, +800 GMT</div> 
    76                     <p>Eraser 6 Release Candidate 2 is released, bringing with it about a dozen fixes (a few of them major!) <a href="20081213.html">See the full announcement.</a></p> 
     74                    <h2>Eraser 6-rc3 released!</h2> 
     75                    <div class="posted">Posted by: Joel, 3 January 2008, 9.00am, +800 GMT</div> 
     76                    <p>Eraser 6 Release Candidate 3 is released, bringing with it about a dozen fixes (including a few show stopping regressions.) <a href="20090103.html">See the full announcement.</a></p> 
     77                    <h2>Eraser 5.8.7-beta4 released!</h2> 
     78                    <div class="posted">Posted by: Joel, 3 January 2008, 9.00am, +800 GMT</div> 
     79                    <p>Eraser 5.8.7 isn't abandoned! The new beta release addresses feature bugs and would be a welcome addition to everyone still using v5. <a href="20090103.html#eraser5">See the full announcement.</a></p> 
    7780                </div> 
    7881            </div> 
  • branches/website/announcements/20081213.html

    r821 r849  
    145145                <h3>Latest News</h3> 
    146146                <div class="right_news_bg"> 
    147                     <h2>Eraser 6-rc2 released!</h2> 
    148                     <div class="posted">Posted by: Joel, 13 December 2008, 10.30am, +800 GMT</div> 
    149                     <p>Eraser 6 Release Candidate 2 is released, bringing with it about a dozen fixes (a few of them major!) <a href="20081213.html">See the full announcement.</a></p> 
     147                    <h2>Eraser 6-rc3 released!</h2> 
     148                    <div class="posted">Posted by: Joel, 3 January 2008, 9.00am, +800 GMT</div> 
     149                    <p>Eraser 6 Release Candidate 3 is released, bringing with it about a dozen fixes (including a few show stopping regressions.) <a href="20090103.html">See the full announcement.</a></p> 
     150                    <h2>Eraser 5.8.7-beta4 released!</h2> 
     151                    <div class="posted">Posted by: Joel, 3 January 2008, 9.00am, +800 GMT</div> 
     152                    <p>Eraser 5.8.7 isn't abandoned! The new beta release addresses feature bugs and would be a welcome addition to everyone still using v5. <a href="20090103.html#eraser5">See the full announcement.</a></p> 
    150153                </div> 
    151154            </div> 
  • branches/website/contributing.html

    r821 r849  
    5151                <h3>Latest News</h3> 
    5252                <div class="right_news_bg"> 
    53                     <h2>Eraser 6-rc2 released!</h2> 
    54                     <div class="posted">Posted by: Joel, 13 December 2008, 10.30am, +800 GMT</div> 
    55                     <p>Eraser 6 Release Candidate 2 is released, bringing with it about a dozen fixes (a few of them major!) <a href="announcements/20081213.html">See the full announcement.</a></p> 
     53                    <h2>Eraser 6-rc3 released!</h2> 
     54                    <div class="posted">Posted by: Joel, 3 January 2008, 9.00am, +800 GMT</div> 
     55                    <p>Eraser 6 Release Candidate 3 is released, bringing with it about a dozen fixes (including a few show stopping regressions.) <a href="announcements/20090103.html">See the full announcement.</a></p> 
     56                    <h2>Eraser 5.8.7-beta4 released!</h2> 
     57                    <div class="posted">Posted by: Joel, 3 January 2008, 9.00am, +800 GMT</div> 
     58                    <p>Eraser 5.8.7 isn't abandoned! The new beta release addresses feature bugs and would be a welcome addition to everyone still using v5. <a href="announcements/20090103.html#eraser5">See the full announcement.</a></p> 
    5659                </div> 
    5760            </div> 
  • branches/website/index.php

    r821 r849  
    11<?php 
    22require('./scripts/database.php'); 
     3function GetDownloads($downloadID) 
     4{ 
     5    $query = mysql_query('SELECT COUNT(DownloadID) FROM download_statistics WHERE DownloadID=' . $downloadID); 
     6    $row = mysql_fetch_row($query); 
     7    echo $row ? $row[0] : 'unknown'; 
     8} 
    39?> 
    410<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
     
    1319<script type="text/javascript" src="scripts.js"></script> 
    1420<!-- InstanceBeginEditable name="head" --> 
    15 <link href="style.css" rel="stylesheet" type="text/css" /> 
     21<style type="text/css"> 
     22.downloads { 
     23    margin-left: 1.0em; 
     24} 
     25</style> 
    1626<!-- InstanceEndEditable --> 
    1727<!-- InstanceParam name="ArticlePoster" type="boolean" value="false" --> 
     
    90100                <h3>Latest News</h3> 
    91101                <div class="right_news_bg"> 
    92                     <h2>Eraser 6-rc2 released!</h2> 
    93                     <div class="posted">Posted by: Joel, 13 December 2008, 10.30am, +800 GMT</div> 
    94                     <p>Eraser 6 Release Candidate 2 is released, bringing with it about a dozen fixes (a few of them major!) <a href="announcements/20081213.html">See the full announcement.</a></p> 
     102                    <h2>Eraser 6-rc3 released!</h2> 
     103                    <div class="posted">Posted by: Joel, 3 January 2008, 9.00am, +800 GMT</div> 
     104                    <p>Eraser 6 Release Candidate 3 is released, bringing with it about a dozen fixes (including a few show stopping regressions.) <a href="announcements/20090103.html">See the full announcement.</a></p> 
     105                    <h2>Eraser 5.8.7-beta4 released!</h2> 
     106                    <div class="posted">Posted by: Joel, 3 January 2008, 9.00am, +800 GMT</div> 
     107                    <p>Eraser 5.8.7 isn't abandoned! The new beta release addresses feature bugs and would be a welcome addition to everyone still using v5. <a href="announcements/20090103.html#eraser5">See the full announcement.</a></p> 
    95108                </div> 
    96109            </div> 
     
    109122            <div class="right_l"> 
    110123                <h3><a name="download" href="javascript: ;"></a><img src="images/ico_download.gif" alt="" />Download Eraser</h3> 
    111                 <ul> 
    112                     <li><a href="announcements/20081213.html">Eraser 6.0.2</a> (rc-2, build 813)<br /> 
    113                         &nbsp; &nbsp; &raquo; downloaded <?php 
    114                         $query = mysql_query('SELECT COUNT(DownloadID) FROM download_statistics WHERE DownloadID=5'); 
    115                         $row = mysql_fetch_row($query); 
    116                         echo $row ? $row[0] : 'unknown'; ?> times</li> 
     124                <h4>Stable versions</h4> 
     125                <ul> 
    117126                    <li><a href="http://downloads.sourceforge.net/eraser/EraserSetup32.exe">Eraser 5.8.6a</a> (x86)</li> 
    118127                    <li><a href="http://downloads.sourceforge.net/eraser/EraserSetup64.exe">Eraser 5.8.6a</a> (x64)</li> 
     128                </ul> 
     129                <h4>Beta versions</h4> 
     130                <ul> 
     131                    <li><a href="announcements/20090103.html">Eraser 6.0.3</a> (rc-3, build 847)<br /> 
     132                        <span class="downloads">&raquo; downloaded <?php GetDownloads(6); ?> times</span></li> 
     133                    <li><a href="announcements/20090103.html#eraser5">Eraser 5.8.7-beta4</a><br /> 
     134                        <span class="downloads">&raquo; downloaded <?php GetDownloads(7); ?> times</span></li> 
     135                    <li><a href="announcements/20090103.html#eraser5">Eraser 5.8.7-beta4</a> (standalone) 
     136                        <span class="downloads">&raquo; downloaded <?php GetDownloads(8); ?> times</span></li> 
    119137                </ul> 
    120138                <h3>Reviews &amp; Testimonials</h3> 
  • branches/website/reviews.html

    r821 r849  
    111111                <h3>Latest News</h3> 
    112112                <div class="right_news_bg"> 
    113                     <h2>Eraser 6-rc2 released!</h2> 
    114                     <div class="posted">Posted by: Joel, 13 December 2008, 10.30am, +800 GMT</div> 
    115                     <p>Eraser 6 Release Candidate 2 is released, bringing with it about a dozen fixes (a few of them major!) <a href="announcements/20081213.html">See the full announcement.</a></p> 
     113                    <h2>Eraser 6-rc3 released!</h2> 
     114                    <div class="posted">Posted by: Joel, 3 January 2008, 9.00am, +800 GMT</div> 
     115                    <p>Eraser 6 Release Candidate 3 is released, bringing with it about a dozen fixes (including a few show stopping regressions.) <a href="announcements/20090103.html">See the full announcement.</a></p> 
     116                    <h2>Eraser 5.8.7-beta4 released!</h2> 
     117                    <div class="posted">Posted by: Joel, 3 January 2008, 9.00am, +800 GMT</div> 
     118                    <p>Eraser 5.8.7 isn't abandoned! The new beta release addresses feature bugs and would be a welcome addition to everyone still using v5. <a href="announcements/20090103.html#eraser5">See the full announcement.</a></p> 
    116119                </div> 
    117120            </div> 
  • branches/website/style.css

    r669 r849  
    5555} 
    5656 
     57h4 { 
     58    font-size: 1.0em; 
     59    font-weight: bold; 
     60    color: #808080; 
     61     
     62    margin-top: 0.25em; 
     63    margin-bottom: 0; 
     64    padding-bottom: 0; 
     65} 
    5766 
    5867#top { margin: 0; padding: 0; height: 0px; } 
Note: See TracChangeset for help on using the changeset viewer.