Le 13/05/2010 12:32, Dave Page a écrit : > On Thu, May 13, 2010 at 11:29 AM, Guillaume Lelarge > <guilla...@lelarge.info> wrote: >> Le 13/05/2010 12:03, Dave Page a écrit : >>> I've tagged, built and uploaded 1.10.3 in source, Windows and Mac >>> formats to http://developer.pgadmin.org/ftp/release/v1.10.3/. It'll >>> make it's way to the PostgreSQL FTP site over the next 24 hours or so. >>> >>> Please take a minute to check for any show-stopper issues! >>> >>> Guillaume - will you have time to update the website tomorrow? >>> >> >> Sure. Just need to remember what I did on 1.10.2. Will check that today >> to get ready for tomorrow. > > Thanks. >
Website's patch attached. I'll commit it tomorrow. I was wondering if I could add a link to the trac website. I was thinking of this URL: http://code.pgadmin.org/trac/query?status=closed&group=resolution&milestone=1.10.3 May I add this link? with a sentence like this one: you can find all the fixed bugs in this <a href="URL">1.10.3 bugfix list</a>. -- Guillaume. http://www.postgresqlfr.org http://dalibo.com
Index: index.php =================================================================== --- index.php (révision 8353) +++ index.php (copie de travail) @@ -7,14 +7,16 @@ <h1>' . _("Latest news") . '</h1> +<h2>' . sprintf(_("%s - pgAdmin v%s released"), "2010-05-14", "1.10.3") . '</h2> + +<p>' . sprintf(_("pgAdmin %s has now been released. Please see the <a href=\"/development/changelog.php\">CHANGELOG</a> for details of the bug fixes in this release or visit the <a href=\"download\">download area</a> to get your copy now.", "1.10.3") . '</p> + +<p>' . _("Note that this release is primarily a bug fix release.") . '</p> + <h2>' . sprintf(_("%s - pgAdmin demo video"), "2010-04-09") . '</h2> <p>' . _("Gary at <a href=\"http://www.enterprisedb.com/\">EnterpriseDB</a> has produced a <a href=\"http://www.enterprisedb.com/learning/videos/Create_Postgres_Database_pgAdmin.do\">video walkthrough</a> showing off some of the features in pgAdmin.") . '</p> -<h2>' . sprintf(_("%s - pgAdmin v%s released"), "2010-03-10", "1.10.2") . '</h2> - -<p>' . _("pgAdmin 1.10.2 has now been released. Please see the <a href=\"/development/changelog.php\">CHANGELOG</a> for details of the bug fixes in this release or visit the <a href=\"download\">download area</a> to get your copy now.") . '</p> - <h1>' . _("Introduction") . '</h1> <p>' . sprintf(_("pgAdmin is the most popular and feature rich Open Source administration and development platform for <a href=\"%s\">PostgreSQL</a>, the most advanced Open Source database in the world. The application may be used on Linux, FreeBSD, Solaris, Mac OSX and Windows platforms to manage PostgreSQL 7.3 and above running on any platform, as well as commercial and derived versions of PostgreSQL such as <a href=\"%s\">Postgres Plus Advanced Server</a> and <a href=\"%s\">Greenplum database</a>."), "http://www.postgresql.org/", "http://www.enterprisedb.com", "http://www.greenplum.com/") . '</p> Index: news.php =================================================================== --- news.php (révision 8353) +++ news.php (copie de travail) @@ -7,6 +7,10 @@ <h1>' . _("Latest news") . '</h1> +<h2>' . sprintf(_("%s - pgAdmin v%s released"), "2010-03-10", "1.10.2") . '</h2> + +<p>' . sprintf(_("pgAdmin %s has now been released. Please see the <a href=\"/development/changelog.php\">CHANGELOG</a> for details of the bug fixes in this release or visit the <a href=\"download\">download area</a> to get your copy now.", "1.10.2") . '</p> + <h2>' . sprintf(_("%s - pgAdmin v%s released"), "2009-12-04", "1.10.1") . '</h2> <p>' . _("pgAdmin 1.10.1 has now been released. Please see the <a href=\"/development/changelog.php\">CHANGELOG</a> for details of the bug fixes in this release or visit the <a href=\"download\">download area</a> to get your copy now.") . '</p> Index: download/windows.php =================================================================== --- download/windows.php (révision 8353) +++ download/windows.php (copie de travail) @@ -14,6 +14,7 @@ <p>' . sprintf(_("Note that the <a href=\"%s\">pgInstaller</a> distribution of PostgreSQL for Windows includes a bundled copy of pgAdmin."), "http://www.postgresql.org/ftp/win32") . '</p> <ul> + <li>' . sprintf(_("<a href=\"%s\">pgAdmin v%s</a>"), "http://www.postgresql.org/ftp/pgadmin3/release/v1.10.3/win32/", "1.10.3") . '<br /> </li> <li>' . sprintf(_("<a href=\"%s\">pgAdmin v%s</a>"), "http://www.postgresql.org/ftp/pgadmin3/release/v1.10.2/win32/", "1.10.2") . '<br /> </li> <li>' . sprintf(_("<a href=\"%s\">pgAdmin v%s</a>"), "http://www.postgresql.org/ftp/pgadmin3/release/v1.10.1/win32/", "1.10.1") . '<br /> </li> <li>' . sprintf(_("<a href=\"%s\">pgAdmin v%s</a>"), "http://www.postgresql.org/ftp/pgadmin3/release/v1.10.0/win32/", "1.10.0") . '<br /> </li> Index: download/macosx.php =================================================================== --- download/macosx.php (révision 8353) +++ download/macosx.php (copie de travail) @@ -11,6 +11,7 @@ <p>' . _("Mac OSX packages built on Panther are available up to pgAdmin v1.4.1. Newer versions are being built on Tiger. v1.6 and above are built as Mac Universal binaries for Intel and PPC architectures.") . '</p> <ul> + <li>' . sprintf(_("<a href=\"%s\">pgAdmin v%s</a>"), "http://www.postgresql.org/ftp/pgadmin3/release/v1.10.3/osx/", "1.10.3") . '<br /> </li> <li>' . sprintf(_("<a href=\"%s\">pgAdmin v%s</a>"), "http://www.postgresql.org/ftp/pgadmin3/release/v1.10.2/osx/", "1.10.2") . '<br /> </li> <li>' . sprintf(_("<a href=\"%s\">pgAdmin v%s</a>"), "http://www.postgresql.org/ftp/pgadmin3/release/v1.10.1/osx/", "1.10.1") . '<br /> </li> <li>' . sprintf(_("<a href=\"%s\">pgAdmin v%s</a>"), "http://www.postgresql.org/ftp/pgadmin3/release/v1.10.0/osx/", "1.10.0") . '<br /> </li> Index: download/source.php =================================================================== --- download/source.php (révision 8353) +++ download/source.php (copie de travail) @@ -12,6 +12,7 @@ <p>' . _("Source tarballs are available for users wishing to compile their own copy of pgAdmin, or those using platforms for which we do not supply prebuilt packages.") . '</p> <ul> + <li>' . sprintf(_("<a href=\"%s\">pgAdmin v%s</a>"), "http://www.postgresql.org/ftp/pgadmin3/release/v1.10.3/src/", "1.10.3") . '<br /> </li> <li>' . sprintf(_("<a href=\"%s\">pgAdmin v%s</a>"), "http://www.postgresql.org/ftp/pgadmin3/release/v1.10.2/src/", "1.10.2") . '<br /> </li> <li>' . sprintf(_("<a href=\"%s\">pgAdmin v%s</a>"), "http://www.postgresql.org/ftp/pgadmin3/release/v1.10.1/src/", "1.10.1") . '<br /> </li> <li>' . sprintf(_("<a href=\"%s\">pgAdmin v%s</a>"), "http://www.postgresql.org/ftp/pgadmin3/release/v1.10.0/src/", "1.10.0") . '<br /> </li>
-- Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgadmin-hackers