tag rc-1 release REL_3-0-RC-1
authorchriskl <chriskl>
Mon, 2 Jun 2003 08:40:57 +0000 (08:40 +0000)
committerchriskl <chriskl>
Mon, 2 Jun 2003 08:40:57 +0000 (08:40 +0000)
HISTORY
libraries/lib.inc.php

diff --git a/HISTORY b/HISTORY
index b6df9cb5d89dfd544a74c1bedabf52037af1eb47..c8848c766594e0b9acb3b0fee30c10cdbff3feab 100644 (file)
--- a/HISTORY
+++ b/HISTORY
@@ -1,13 +1,16 @@
 phpPgAdmin History
 ------------------
 
-Version 3.0
------------
+Version 3.0-rc-1
+----------------
 
 * Japanese update from Tadashi Jokagi
 * Fix drop database reload browser bug
 * Look & Feel upgrade from Davey
 * Value & expression on edit row
+* Chinese update from Chih-Hsin Lee 
+* Fixed support for functions and sequences
+  containing bizarre characters
 
 Version 3.0-beta-1
 -------------------
index 907fe0f36c86b8be9a913468cd830e16a22a3eca..190c39fe12ba3c60a3ecf15f5225c0c6d8236fa2 100644 (file)
@@ -3,7 +3,7 @@
        /**
         * Function library read in upon startup
         *
-        * $Id: lib.inc.php,v 1.51 2003/05/23 06:11:07 chriskl Exp $
+        * $Id: lib.inc.php,v 1.52 2003/06/02 08:40:58 chriskl Exp $
         */
        
        // Set error reporting level to max
@@ -13,7 +13,7 @@
        $appName = 'phpPgAdmin';
 
        // Application version
-       $appVersion = '3.0';
+       $appVersion = '3.0-rc-1';
 
 
        // Check to see if the configuration file exists, if not, explain
@@ -22,7 +22,7 @@
                include('conf/config.inc.php');
        }
        else {
-               echo "Configuration Error: You must rename/copy config.inc.php-dist to config.inc.php and set your appropriate settings";
+               echo "Configuration error: Copy conf/config.inc.php-dist to conf/config.inc.php and edit appropriately.";
                exit;
        }